From bf9950bbd82db60f53091be141a42501ba96ba06 Mon Sep 17 00:00:00 2001 From: Artem Kurchenko Date: Thu, 2 Oct 2025 17:50:29 +0400 Subject: [PATCH 01/10] jQuery: Restore select-all checkboxes functionality --- jQuery/package-lock.json | 10 ++ jQuery/package.json | 5 +- jQuery/src/GroupSelectionBehavior.js | 147 +++++++++++++++++++++++++++ jQuery/src/index.css | 10 ++ jQuery/src/index.html | 6 +- jQuery/src/index.js | 76 ++++++++++++-- 6 files changed, 244 insertions(+), 10 deletions(-) create mode 100644 jQuery/src/GroupSelectionBehavior.js diff --git a/jQuery/package-lock.json b/jQuery/package-lock.json index 0faaa05..ab4a148 100644 --- a/jQuery/package-lock.json +++ b/jQuery/package-lock.json @@ -10,6 +10,7 @@ "dependencies": { "browser-sync": "^3.0.2", "devextreme": "25.1.3", + "devextreme-aspnet-data": "^5.1.0", "devextreme-dist": "25.1.3", "jquery": "^3.7.1" }, @@ -2035,6 +2036,15 @@ "devextreme-bundler-init": "bin/bundler-init.js" } }, + "node_modules/devextreme-aspnet-data": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/devextreme-aspnet-data/-/devextreme-aspnet-data-5.1.0.tgz", + "integrity": "sha512-8jlAmBq+KcxMwVd5ukAhhia/JWx5fAdZ3qSaATdnCHlYxCCuIL50dBQw9Qd7khk8E0zj3UHwuA/lbhHCxZZxKg==", + "license": "MIT", + "peerDependencies": { + "devextreme": ">=18.1.0" + } + }, "node_modules/devextreme-dist": { "version": "25.1.3", "resolved": "https://registry.npmjs.org/devextreme-dist/-/devextreme-dist-25.1.3.tgz", diff --git a/jQuery/package.json b/jQuery/package.json index 1398842..e1ff0ac 100644 --- a/jQuery/package.json +++ b/jQuery/package.json @@ -25,8 +25,9 @@ }, "dependencies": { "browser-sync": "^3.0.2", - "devextreme": "25.1.3", - "devextreme-dist": "25.1.3", + "devextreme": "^25.1.3", + "devextreme-aspnet-data": "^5.1.0", + "devextreme-dist": "^25.1.3", "jquery": "^3.7.1" } } diff --git a/jQuery/src/GroupSelectionBehavior.js b/jQuery/src/GroupSelectionBehavior.js new file mode 100644 index 0000000..e558cd4 --- /dev/null +++ b/jQuery/src/GroupSelectionBehavior.js @@ -0,0 +1,147 @@ +class GroupSelectionBehavior { + skipCheckBoxValueHandling = false; + + rowKeysCache = {}; + + cacheGroupRequests = true; + + getSelectedKeysPromise; + + constructor(dataGrid) { + this.customizeColumns = this.customizeColumns.bind(this); + this.gridSelectionChanged = this.gridSelectionChanged.bind(this); + this.groupTemplate = this.groupTemplate.bind(this); + this.getGroupRowText = this.getGroupRowText.bind(this); + this.initCheckBox = this.initCheckBox.bind(this); + this.getSelectedKeys = this.getSelectedKeys.bind(this); + dataGrid.option('customizeColumns', this.customizeColumns); + dataGrid.on('selectionChanged', this.gridSelectionChanged); + } + + customizeColumns(columns) { + columns.forEach((col) => { + col.groupCellTemplate = this.groupTemplate; + }); + } + + groupTemplate(cellElement, cellData) { + const flex = $('
').addClass('group-row-flex').appendTo(cellElement); + const checkBoxId = this.calcCheckBoxId(cellData.component.element().attr('id'), cellData.row.key); + const that = this; + const checkBox = $('
').attr('id', checkBoxId).addClass('group-selection-check-box').appendTo(flex) + .dxCheckBox({ + visible: false, + onValueChanged(valueArgs) { + if (that.skipCheckBoxValueHandling) return; + const childRowKeys = valueArgs.component.option('childRowKeys'); + if (valueArgs.value) cellData.component.selectRows(childRowKeys, true); + else cellData.component.deselectRows(childRowKeys); + }, + }) + .dxCheckBox('instance'); + const loadIndicator = $('
').appendTo(flex).addClass('group-selection-check-box').dxLoadIndicator({ + height: 22, + width: 22, + }) + .dxLoadIndicator('instance'); + + this.getSelectedKeys(cellData.component).then((selectedKeys) => { + if (this.cacheGroupRequests && this.rowKeysCache[checkBoxId]) { + this.initCheckBox(checkBox, loadIndicator, checkBoxId, selectedKeys); + } else { + const groupedColumns = cellData.component.getVisibleColumns() + .filter((c) => c.groupIndex >= 0) + .sort((a, b) => (a.groupIndex > b.groupIndex ? 1 : -1)); + const filter = []; + cellData.key.forEach((key, i) => { + filter.push([groupedColumns[i].dataField, '=', key]); + }); + const loadOptions = { + filter, + }; + const store = cellData.component.getDataSource().store(); + store.load(loadOptions).then((data) => { + const keys = data.map((d) => cellData.component.keyOf(d)); + this.rowKeysCache[checkBoxId] = keys; + this.initCheckBox(checkBox, loadIndicator, checkBoxId, selectedKeys); + }); + } + }); + flex.append($('').text(this.getGroupRowText(cellData))); + } + + getGroupRowText(cellData) { + let text = `${cellData.column.caption}: ${cellData.displayValue}`; + if (cellData.groupContinuedMessage) text += ` (${cellData.groupContinuedMessage})`; + if (cellData.groupContinuesMessage) text += ` (${cellData.groupContinuesMessage})`; + return text; + } + + initCheckBox(checkBox, loadIndicator, checkBoxId, selectedKeys) { + this.skipCheckBoxValueHandling = true; + checkBox.option({ + visible: true, + value: this.areKeysSelected(this.rowKeysCache[checkBoxId], selectedKeys), + childRowKeys: this.rowKeysCache[checkBoxId], + }); + loadIndicator.option('visible', false); + this.skipCheckBoxValueHandling = false; + } + + getSelectedKeys(grid) { + if (grid.option('selection.deferred')) { + if (!this.getSelectedKeysPromise) { + this.getSelectedKeysPromise = new Promise((resolve) => { + grid.getSelectedRowKeys().then((selectedKeys) => { + resolve(selectedKeys); + }); + }); + } + return this.getSelectedKeysPromise; + } + // eslint-disable-next-line no-promise-executor-return + return new Promise((resolve) => resolve(grid.getSelectedRowKeys())); + } + + repaintGroupRowTree(grid, groupRows) { + const topGroupRow = groupRows + .filter((r) => r.isExpanded) + .reduce( + (acc, current) => ((!acc || acc.key.length > current.key.length) ? current : acc), + null, + ); + if (topGroupRow) { + const affectedGroupRows = groupRows.filter((g) => g.key[0] === topGroupRow.key[0]); + grid.repaintRows(affectedGroupRows.map((g) => g.rowIndex)); + } + } + + gridSelectionChanged(e) { + const groupRows = e.component.getVisibleRows().filter((r) => r.rowType === 'group'); + if (e.component.option('selection.deferred')) { + this.getSelectedKeysPromise = null; + if (e.component.option('selectionFilter').length === 0) { + e.component.repaintRows(groupRows.map((g) => g.rowIndex)); + } else { + this.repaintGroupRowTree(e.component, groupRows); + } + } else if (e.selectedRowKeys.length >= e.component.totalCount() + || e.currentDeselectedRowKeys.length >= e.component.totalCount()) { + e.component.repaintRows(groupRows.map((g) => g.rowIndex)); + } else { + this.repaintGroupRowTree(e.component, groupRows); + } + } + + calcCheckBoxId(gridId, groupRowKey) { + return `${gridId}groupCheckBox${groupRowKey.join('')}`; + } + + areKeysSelected(keysToCheck, selectedKeys) { + if (selectedKeys.length === 0) return false; + const intersectionCount = keysToCheck.filter((k) => selectedKeys.indexOf(k) >= 0).length; + if (intersectionCount === 0) return false; + if (intersectionCount === keysToCheck.length) return true; + return undefined; + } +} diff --git a/jQuery/src/index.css b/jQuery/src/index.css index 278b9f8..998811f 100644 --- a/jQuery/src/index.css +++ b/jQuery/src/index.css @@ -2,3 +2,13 @@ margin: 50px; width: 90vw; } + +.group-selection-check-box { + margin-right: 10px; +} + +.group-row-flex { + display: flex; + flex-direction: row; + align-items: center; +} diff --git a/jQuery/src/index.html b/jQuery/src/index.html index 423bb30..419b0e4 100644 --- a/jQuery/src/index.html +++ b/jQuery/src/index.html @@ -1,7 +1,7 @@ - DevExtreme jQuery app + DevExtreme jQuery DataGrid Select All Example @@ -10,12 +10,14 @@ + +
-
+
diff --git a/jQuery/src/index.js b/jQuery/src/index.js index 6d9c698..e284646 100644 --- a/jQuery/src/index.js +++ b/jQuery/src/index.js @@ -1,10 +1,74 @@ $(() => { - let count = 0; - $('#btn').dxButton({ - text: `Click count: ${count}`, - onClick(e) { - count += 1; - e.component.option('text', `Click count: ${count}`); + const url = 'https://js.devexpress.com/Demos/Mvc/api/DataGridWebApi'; + function getLookupDataSource(lookupUrl) { + return DevExpress.data.AspNet.createStore({ + key: 'Value', + loadUrl: lookupUrl, + onBeforeSend(method, ajaxOptions) { + ajaxOptions.xhrFields = { withCredentials: true }; + }, + }); + } + + $('#grid').dxDataGrid({ + onInitialized(e) { + // eslint-disable-next-line no-new + new GroupSelectionBehavior(e.component); + }, + remoteOperations: true, + selectedRowKeys: [10521], + selection: { + mode: 'multiple', + allowSelectAll: true, + showCheckBoxesMode: 'always', + }, + width: 1200, + height: 880, + dataSource: DevExpress.data.AspNet.createStore({ + key: 'OrderID', + loadUrl: `${url}/Orders`, + onBeforeSend(method, ajaxOptions) { + ajaxOptions.xhrFields = { withCredentials: true }; + }, + }), + columns: [{ + dataField: 'OrderID', + }, { + dataField: 'CustomerID', + caption: 'Customer', + lookup: { + dataSource: getLookupDataSource(`${url}/CustomersLookup`), + valueExpr: 'Value', + displayExpr: 'Text', + }, + }, { + dataField: 'OrderDate', + dataType: 'date', + }, { + dataField: 'Freight', + }, { + dataField: 'ShipCountry', + groupIndex: 0, + }, { + dataField: 'ShipCity', + groupIndex: 2, + }, { + dataField: 'ShipVia', + caption: 'Shipping Company', + groupIndex: 1, + dataType: 'number', + lookup: { + dataSource: getLookupDataSource(`${url}/ShippersLookup`), + valueExpr: 'Value', + displayExpr: 'Text', + }, + }], + groupPanel: { + visible: true, + }, + showBorders: true, + grouping: { + autoExpandAll: false, }, }); }); From b5e93eec35be3cb590052b0466cb60a268c39b50 Mon Sep 17 00:00:00 2001 From: Artem Kurchenko Date: Thu, 2 Oct 2025 20:39:16 +0400 Subject: [PATCH 02/10] Angular: Restore select-all checkboxes functionality with TypeScript --- Angular/package-lock.json | 10 + Angular/package.json | 1 + .../GroupRowSelectionHelper.ts | 136 + .../group-row.component.css | 13 + .../group-row.component.html | 16 + .../group-row.component.ts | 52 + .../app/GroupRowSelection/group-text-pipe.ts | 14 + Angular/src/app/app.component.html | 50 +- Angular/src/app/app.component.ts | 59 +- Angular/src/app/app.module.ts | 12 +- Angular/src/app/localdata.ts | 15772 ++++++++++++++++ 11 files changed, 16124 insertions(+), 11 deletions(-) create mode 100644 Angular/src/app/GroupRowSelection/GroupRowSelectionHelper.ts create mode 100644 Angular/src/app/GroupRowSelection/group-row-component/group-row.component.css create mode 100644 Angular/src/app/GroupRowSelection/group-row-component/group-row.component.html create mode 100644 Angular/src/app/GroupRowSelection/group-row-component/group-row.component.ts create mode 100644 Angular/src/app/GroupRowSelection/group-text-pipe.ts create mode 100644 Angular/src/app/localdata.ts diff --git a/Angular/package-lock.json b/Angular/package-lock.json index cca31f2..5ac34ca 100644 --- a/Angular/package-lock.json +++ b/Angular/package-lock.json @@ -18,6 +18,7 @@ "@angular/router": "^18.0.3", "devextreme": "25.1.3", "devextreme-angular": "25.1.3", + "devextreme-aspnet-data-nojquery": "^5.1.0", "rxjs": "~7.8.0", "tslib": "^2.3.0", "zone.js": "~0.14.7" @@ -6243,6 +6244,15 @@ "yarn": ">= 1.13.0" } }, + "node_modules/devextreme-aspnet-data-nojquery": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/devextreme-aspnet-data-nojquery/-/devextreme-aspnet-data-nojquery-5.1.0.tgz", + "integrity": "sha512-YJ7HxOLJTzz6bmpp1uOjXdhUL71THR6IidVONjJRF1R1loTyNVesa6s86gU+mUeNN044UnJKQhtCADc0+TmARQ==", + "license": "MIT", + "peerDependencies": { + "devextreme": ">=18.1.0" + } + }, "node_modules/devextreme-quill": { "version": "1.7.3", "resolved": "https://registry.npmjs.org/devextreme-quill/-/devextreme-quill-1.7.3.tgz", diff --git a/Angular/package.json b/Angular/package.json index 5549641..bbbfa64 100644 --- a/Angular/package.json +++ b/Angular/package.json @@ -24,6 +24,7 @@ "@angular/router": "^18.0.3", "devextreme": "25.1.3", "devextreme-angular": "25.1.3", + "devextreme-aspnet-data-nojquery": "^5.1.0", "rxjs": "~7.8.0", "tslib": "^2.3.0", "zone.js": "~0.14.7" diff --git a/Angular/src/app/GroupRowSelection/GroupRowSelectionHelper.ts b/Angular/src/app/GroupRowSelection/GroupRowSelectionHelper.ts new file mode 100644 index 0000000..96872be --- /dev/null +++ b/Angular/src/app/GroupRowSelection/GroupRowSelectionHelper.ts @@ -0,0 +1,136 @@ +import type dxDataGrid from 'devextreme/ui/data_grid'; +import type { DxDataGridTypes } from 'devextreme-angular/ui/data-grid'; +import type { LoadOptions } from 'devextreme-angular/common/data'; +import { isItemsArray } from 'devextreme-angular/common/data'; +import type { IGroupRowReadyParameter } from './group-row-component/group-row.component'; + +export default class GroupSelectionHelper { + groupedColumns: DxDataGridTypes.Column[]; + + grid: dxDataGrid; + + getSelectedKeysPromise: Promise | null; + + selectedKeys: any[] = []; + + groupChildKeys: Record = {}; + + constructor(grid: dxDataGrid) { + this.grid = grid; + this.groupedColumns = this.collectGroupedColumns(grid); + this.getSelectedKeysPromise = this.getSelectedKeys(grid); + this.getSelectedKeysPromise.then((keys: any[]) => { + this.selectedKeys = keys; + }).catch(() => {}); + const defaultCustomizeCallback: Function | undefined = grid.option('customizeColumns'); + grid.option('customizeColumns', (columns: DxDataGridTypes.Column[]) => { + columns.forEach((column: DxDataGridTypes.Column) => { + column.groupCellTemplate = 'groupCellTemplate'; + }); + if (defaultCustomizeCallback) { defaultCustomizeCallback(columns); } + }); + const defaultSelectionHandler: Function | undefined = grid.option('onSelectionChanged'); + grid.option('onSelectionChanged', (e: DxDataGridTypes.SelectionChangedEvent) => { + this.selectionChanged(e); + if (defaultSelectionHandler) { defaultSelectionHandler(e); } + }); + const defaultOptionChangedHandler: Function | undefined = grid.option('onOptionChanged'); + grid.option('onOptionChanged', (e: DxDataGridTypes.OptionChangedEvent) => { + if (e.fullName.includes('groupIndex')) { + this.groupedColumns = this.collectGroupedColumns(grid); + } + if (defaultOptionChangedHandler) { defaultOptionChangedHandler(e); } + }); + } + + groupRowInit(arg: IGroupRowReadyParameter): void { + const checkBoxId = this.calcCheckBoxId(this.grid, arg.key); + if (!this.groupChildKeys[checkBoxId]) { + const filter: any[] = []; + arg.key.forEach((key, i) => { + filter.push([this.groupedColumns[i].dataField, '=', key]); + }); + const loadOptions: LoadOptions = { + filter, + }; + const store = this.grid.getDataSource().store(); + store.load(loadOptions).then((data) => { + if (isItemsArray(data)) { + // eslint-disable-next-line @typescript-eslint/no-unsafe-return + this.groupChildKeys[checkBoxId] = data.map((d) => this.grid.keyOf(d)); + this.getSelectedKeys(this.grid).then((selectedKeys) => { + const checkedState: boolean | undefined = this.areKeysSelected(this.groupChildKeys[checkBoxId], selectedKeys); + arg.component.setCheckedState(checkedState); + }).catch(() => {}); + } + }).catch(() => {}); + } else { + this.getSelectedKeys(this.grid).then((selectedKeys) => { + const checkedState: boolean | undefined = this.areKeysSelected(this.groupChildKeys[checkBoxId], selectedKeys); + arg.component.setCheckedState(checkedState); + }).catch(() => {}); + } + } + + selectionChanged(e: DxDataGridTypes.SelectionChangedEvent): void { + const groupRows: DxDataGridTypes.Row[] = e.component.getVisibleRows().filter((r) => r.rowType === 'group'); + this.getSelectedKeysPromise = null; + if (e.component.option('selection.deferred')) { + const selectionFilter = e.component.option('selectionFilter'); + if (selectionFilter && selectionFilter.length >= 0) { + this.repaintGroupRowTree(e.component, groupRows); + } else { + e.component.repaintRows(groupRows.map((g) => g.rowIndex)); + } + } else if (e.selectedRowKeys.length >= e.component.totalCount() || e.currentDeselectedRowKeys.length >= e.component.totalCount()) { + e.component.repaintRows(groupRows.map((g) => g.rowIndex)); + } else { + this.repaintGroupRowTree(e.component, groupRows); + } + } + + getSelectedKeys(grid: dxDataGrid): Promise { + if (grid.option('selection.deferred')) { + if (!this.getSelectedKeysPromise) { + this.getSelectedKeysPromise = grid.getSelectedRowKeys(); + } + return this.getSelectedKeysPromise; + } + return Promise.resolve(grid.getSelectedRowKeys()); + } + + repaintGroupRowTree(grid: dxDataGrid, groupRows: DxDataGridTypes.Row[]): void { + const topGroupRow: DxDataGridTypes.Row | null = groupRows.filter((r) => r.isExpanded).reduce((acc: DxDataGridTypes.Row | null, curr) => (!acc || acc.key.length > curr.key.length ? curr : acc), null); + if (topGroupRow) { + const affectedGroupRows = groupRows.filter((g) => g.key[0] == topGroupRow.key[0]); + grid.repaintRows(affectedGroupRows.map((g) => g.rowIndex)); + } + } + + areKeysSelected(keysToCheck: any[], selectedKeys: any[]): boolean | undefined { + if (selectedKeys.length == 0) { return false; } + const intersectionCount = keysToCheck.filter((k) => selectedKeys.includes(k)).length; + if (intersectionCount === 0) { return false; } + if (intersectionCount === keysToCheck.length) { return true; } + return undefined; + } + + getChildRowKeys(grid: dxDataGrid, groupRowKey: string[]): any[] { + // eslint-disable-next-line @typescript-eslint/no-unsafe-return + return this.groupChildKeys[this.calcCheckBoxId(grid, groupRowKey) as any]; + } + + calcCheckBoxId(grid: dxDataGrid, groupRowKey: string[]): string { + const gridId: string = grid.element().id; + return `${gridId}groupCheckBox${groupRowKey.join('')}`; + } + + collectGroupedColumns(grid: dxDataGrid): DxDataGridTypes.Column[] { + const allColumns: DxDataGridTypes.Column[] = grid.getVisibleColumns(); + return allColumns.filter((c: DxDataGridTypes.Column) => c.groupIndex != undefined && c.groupIndex >= 0) + .sort((a, b) => { + if (!a.groupIndex || !b.groupIndex) return 0; + return a.groupIndex > b.groupIndex ? 1 : -1; + }); + } +} diff --git a/Angular/src/app/GroupRowSelection/group-row-component/group-row.component.css b/Angular/src/app/GroupRowSelection/group-row-component/group-row.component.css new file mode 100644 index 0000000..2bd73f4 --- /dev/null +++ b/Angular/src/app/GroupRowSelection/group-row-component/group-row.component.css @@ -0,0 +1,13 @@ +.group-selection-front { + margin-right: 10px; +} + +.group-selection-front .dx-loadindicator { + display: block; +} + +.group-row-flex { + display: flex; + flex-direction: row; + align-items: center; +} diff --git a/Angular/src/app/GroupRowSelection/group-row-component/group-row.component.html b/Angular/src/app/GroupRowSelection/group-row-component/group-row.component.html new file mode 100644 index 0000000..6fdbac6 --- /dev/null +++ b/Angular/src/app/GroupRowSelection/group-row-component/group-row.component.html @@ -0,0 +1,16 @@ +
+
+ + +
+ {{ groupCellData | groupText }} +
diff --git a/Angular/src/app/GroupRowSelection/group-row-component/group-row.component.ts b/Angular/src/app/GroupRowSelection/group-row-component/group-row.component.ts new file mode 100644 index 0000000..f05cd4d --- /dev/null +++ b/Angular/src/app/GroupRowSelection/group-row-component/group-row.component.ts @@ -0,0 +1,52 @@ +import { + Component, Input, Output, EventEmitter, AfterViewInit, +} from '@angular/core'; +import type { DxCheckBoxTypes } from 'devextreme-angular/ui/check-box'; +import type { DxDataGridTypes } from 'devextreme-angular/ui/data-grid'; + +@Component({ + selector: 'group-row-selectable', + templateUrl: './group-row.component.html', + styleUrls: ['./group-row.component.css'], +}) +export class GroupRowComponent implements AfterViewInit { + @Input() groupCellData!: DxDataGridTypes.ColumnGroupCellTemplateData; + + @Input() childRowKeys: any[] | undefined = []; + + @Output() onInitialized = new EventEmitter(); + + isLoading = true; + + checked: boolean | undefined = false; + + childKeys!: any[]; + + iconSize = 18; + + constructor() { + this.checkBoxValueChanged = this.checkBoxValueChanged.bind(this); + } + + ngAfterViewInit(): void { + this.onInitialized.emit({ key: this.groupCellData.row.key, component: this }); + } + + checkBoxValueChanged(e: DxCheckBoxTypes.ValueChangedEvent): void { + this.checked = e.value; + if (e.value) { + this.groupCellData.component.selectRows(this.childRowKeys ?? [], true).catch(() => {}); + } else { + this.groupCellData.component.deselectRows(this.childRowKeys ?? []).catch(() => {}); + } + } + + public setCheckedState(value: boolean | undefined): void { + this.checked = value; + this.isLoading = false; + } +} +export interface IGroupRowReadyParameter { + key: string[]; + component: GroupRowComponent; +} diff --git a/Angular/src/app/GroupRowSelection/group-text-pipe.ts b/Angular/src/app/GroupRowSelection/group-text-pipe.ts new file mode 100644 index 0000000..2f81743 --- /dev/null +++ b/Angular/src/app/GroupRowSelection/group-text-pipe.ts @@ -0,0 +1,14 @@ +import { Pipe, PipeTransform } from '@angular/core'; +import type { DxDataGridTypes } from 'devextreme-angular/ui/data-grid'; + +@Pipe({ + name: 'groupText', +}) +export class GroupTextPipe implements PipeTransform { + transform(value: DxDataGridTypes.ColumnGroupCellTemplateData): string { + let text = `${value.column.caption}: ${value.displayValue}`; + if (value.groupContinuedMessage) text += ` (${value.groupContinuedMessage})`; + if (value.groupContinuesMessage) text += ` (${value.groupContinuesMessage})`; + return text; + } +} diff --git a/Angular/src/app/app.component.html b/Angular/src/app/app.component.html index 0f59cbc..4835e1f 100644 --- a/Angular/src/app/app.component.html +++ b/Angular/src/app/app.component.html @@ -1,3 +1,51 @@
- + +
+ + +
+ + + + + + + + + + + + + + +
diff --git a/Angular/src/app/app.component.ts b/Angular/src/app/app.component.ts index 9e09ad6..8359ca0 100644 --- a/Angular/src/app/app.component.ts +++ b/Angular/src/app/app.component.ts @@ -1,5 +1,9 @@ -import { Component } from '@angular/core'; -import { ClickEvent } from 'devextreme/ui/button'; +import { Component, ViewChild } from '@angular/core'; +import * as AspNetData from 'devextreme-aspnet-data-nojquery'; +import { DxDataGridComponent } from 'devextreme-angular/ui/data-grid'; +import type { IGroupRowReadyParameter } from './GroupRowSelection/group-row-component/group-row.component'; +import GroupSelectionHelper from './GroupRowSelection/GroupRowSelectionHelper'; +import { localData } from './localdata'; @Component({ selector: 'app-root', @@ -7,14 +11,53 @@ import { ClickEvent } from 'devextreme/ui/button'; styleUrls: ['./app.component.scss'], }) export class AppComponent { - title = 'Angular'; + dataSource: AspNetData.CustomStore; - counter = 0; + customersData: AspNetData.CustomStore; - buttonText = 'Click count: 0'; + shippersData: AspNetData.CustomStore; - onClick(e: ClickEvent): void { - this.counter++; - this.buttonText = `Click count: ${this.counter}`; + @ViewChild(DxDataGridComponent) grid!: DxDataGridComponent; + + selectedRowKeys: any[] = [10521]; + + selectionFilter: any[] = ['OrderID', '=', 10521]; + + helper: GroupSelectionHelper | undefined; + + localData: any[]; + + constructor() { + const url = 'https://js.devexpress.com/Demos/Mvc/api/DataGridWebApi'; + this.localData = localData; + this.dataSource = AspNetData.createStore({ + key: 'OrderID', + loadUrl: `${url}/Orders`, + onBeforeSend(_method: string, ajaxOptions: { xhrFields?: { withCredentials?: boolean } }) { + ajaxOptions.xhrFields = { withCredentials: true }; + }, + }); + this.customersData = AspNetData.createStore({ + key: 'Value', + loadUrl: `${url}/CustomersLookup`, + onBeforeSend(_method: string, ajaxOptions: { xhrFields?: { withCredentials?: boolean } }) { + ajaxOptions.xhrFields = { withCredentials: true }; + }, + }); + this.shippersData = AspNetData.createStore({ + key: 'Value', + loadUrl: `${url}/ShippersLookup`, + onBeforeSend(_method: string, ajaxOptions: { xhrFields?: { withCredentials?: boolean } }) { + ajaxOptions.xhrFields = { withCredentials: true }; + }, + }); + } + + ngAfterViewInit(): void { + this.helper = new GroupSelectionHelper(this.grid.instance); + } + + groupRowInit(arg: IGroupRowReadyParameter): void { + this.helper?.groupRowInit(arg); } } diff --git a/Angular/src/app/app.module.ts b/Angular/src/app/app.module.ts index b9e30aa..e74be29 100644 --- a/Angular/src/app/app.module.ts +++ b/Angular/src/app/app.module.ts @@ -1,17 +1,25 @@ import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; -import { DxButtonModule } from 'devextreme-angular/ui/button'; +import { DxDataGridModule } from 'devextreme-angular/ui/data-grid'; +import { DxLoadIndicatorModule } from 'devextreme-angular/ui/load-indicator'; +import { DxCheckBoxModule } from 'devextreme-angular/ui/check-box'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; +import { GroupTextPipe } from './GroupRowSelection/group-text-pipe'; +import { GroupRowComponent } from './GroupRowSelection/group-row-component/group-row.component'; @NgModule({ declarations: [ AppComponent, + GroupTextPipe, + GroupRowComponent, ], imports: [ BrowserModule, AppRoutingModule, - DxButtonModule, + DxDataGridModule, + DxLoadIndicatorModule, + DxCheckBoxModule, ], providers: [], bootstrap: [AppComponent], diff --git a/Angular/src/app/localdata.ts b/Angular/src/app/localdata.ts new file mode 100644 index 0000000..865edda --- /dev/null +++ b/Angular/src/app/localdata.ts @@ -0,0 +1,15772 @@ +export const localData: any[] = [ + { + OrderID: 10248, + CustomerID: 'VINET', + EmployeeID: 5, + OrderDate: '2018-07-04T00:00:00', + RequiredDate: '2018-08-01T00:00:00', + ShippedDate: '2018-07-16T00:00:00', + ShipVia: 3, + Freight: 32.3800, + ShipName: 'Vins et alcools Chevalier', + ShipAddress: '59 rue de l\'Abbaye', + ShipCity: 'Reims', + ShipRegion: null, + ShipPostalCode: '51100', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10249, + CustomerID: 'TOMSP', + EmployeeID: 6, + OrderDate: '2018-07-05T00:00:00', + RequiredDate: '2018-08-16T00:00:00', + ShippedDate: '2018-07-10T00:00:00', + ShipVia: 1, + Freight: 11.6100, + ShipName: 'Toms Spezialitäten', + ShipAddress: 'Luisenstr. 48', + ShipCity: 'Münster', + ShipRegion: null, + ShipPostalCode: '44087', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10250, + CustomerID: 'HANAR', + EmployeeID: 4, + OrderDate: '2018-07-08T00:00:00', + RequiredDate: '2018-08-05T00:00:00', + ShippedDate: '2018-07-12T00:00:00', + ShipVia: 2, + Freight: 65.8300, + ShipName: 'Hanari Carnes', + ShipAddress: 'Rua do Paço, 67', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '05454-876', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10251, + CustomerID: 'VICTE', + EmployeeID: 3, + OrderDate: '2018-07-08T00:00:00', + RequiredDate: '2018-08-05T00:00:00', + ShippedDate: '2018-07-15T00:00:00', + ShipVia: 1, + Freight: 41.3400, + ShipName: 'Victuailles en stock', + ShipAddress: '2, rue du Commerce', + ShipCity: 'Lyon', + ShipRegion: null, + ShipPostalCode: '69004', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10252, + CustomerID: 'SUPRD', + EmployeeID: 4, + OrderDate: '2018-07-09T00:00:00', + RequiredDate: '2018-08-06T00:00:00', + ShippedDate: '2018-07-11T00:00:00', + ShipVia: 2, + Freight: 51.3000, + ShipName: 'Suprêmes délices', + ShipAddress: 'Boulevard Tirou, 255', + ShipCity: 'Charleroi', + ShipRegion: null, + ShipPostalCode: 'B-6000', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10253, + CustomerID: 'HANAR', + EmployeeID: 3, + OrderDate: '2018-07-10T00:00:00', + RequiredDate: '2018-07-24T00:00:00', + ShippedDate: '2018-07-16T00:00:00', + ShipVia: 2, + Freight: 58.1700, + ShipName: 'Hanari Carnes', + ShipAddress: 'Rua do Paço, 67', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '05454-876', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10254, + CustomerID: 'CHOPS', + EmployeeID: 5, + OrderDate: '2018-07-11T00:00:00', + RequiredDate: '2018-08-08T00:00:00', + ShippedDate: '2018-07-23T00:00:00', + ShipVia: 2, + Freight: 22.9800, + ShipName: 'Chop-suey Chinese', + ShipAddress: 'Hauptstr. 31', + ShipCity: 'Bern', + ShipRegion: null, + ShipPostalCode: '3012', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10255, + CustomerID: 'RICSU', + EmployeeID: 9, + OrderDate: '2018-07-12T00:00:00', + RequiredDate: '2018-08-09T00:00:00', + ShippedDate: '2018-07-15T00:00:00', + ShipVia: 3, + Freight: 148.3300, + ShipName: 'Richter Supermarkt', + ShipAddress: 'Starenweg 5', + ShipCity: 'Genève', + ShipRegion: null, + ShipPostalCode: '1204', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10256, + CustomerID: 'WELLI', + EmployeeID: 3, + OrderDate: '2018-07-15T00:00:00', + RequiredDate: '2018-08-12T00:00:00', + ShippedDate: '2018-07-17T00:00:00', + ShipVia: 2, + Freight: 13.9700, + ShipName: 'Wellington Importadora', + ShipAddress: 'Rua do Mercado, 12', + ShipCity: 'Resende', + ShipRegion: 'SP', + ShipPostalCode: '08737-363', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10257, + CustomerID: 'HILAA', + EmployeeID: 4, + OrderDate: '2018-07-16T00:00:00', + RequiredDate: '2018-08-13T00:00:00', + ShippedDate: '2018-07-22T00:00:00', + ShipVia: 3, + Freight: 81.9100, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10258, + CustomerID: 'ERNSH', + EmployeeID: 1, + OrderDate: '2018-07-17T00:00:00', + RequiredDate: '2018-08-14T00:00:00', + ShippedDate: '2018-07-23T00:00:00', + ShipVia: 1, + Freight: 140.5100, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10259, + CustomerID: 'CENTC', + EmployeeID: 4, + OrderDate: '2018-07-18T00:00:00', + RequiredDate: '2018-08-15T00:00:00', + ShippedDate: '2018-07-25T00:00:00', + ShipVia: 3, + Freight: 3.2500, + ShipName: 'Centro comercial Moctezuma', + ShipAddress: 'Sierras de Granada 9993', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05022', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10260, + CustomerID: 'OTTIK', + EmployeeID: 4, + OrderDate: '2018-07-19T00:00:00', + RequiredDate: '2018-08-16T00:00:00', + ShippedDate: '2018-07-29T00:00:00', + ShipVia: 1, + Freight: 55.0900, + ShipName: 'Ottilies Käseladen', + ShipAddress: 'Mehrheimerstr. 369', + ShipCity: 'Köln', + ShipRegion: null, + ShipPostalCode: '50739', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10261, + CustomerID: 'QUEDE', + EmployeeID: 4, + OrderDate: '2018-07-19T00:00:00', + RequiredDate: '2018-08-16T00:00:00', + ShippedDate: '2018-07-30T00:00:00', + ShipVia: 2, + Freight: 3.0500, + ShipName: 'Que Delícia', + ShipAddress: 'Rua da Panificadora, 12', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-673', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10262, + CustomerID: 'RATTC', + EmployeeID: 8, + OrderDate: '2018-07-22T00:00:00', + RequiredDate: '2018-08-19T00:00:00', + ShippedDate: '2018-07-25T00:00:00', + ShipVia: 3, + Freight: 48.2900, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10263, + CustomerID: 'ERNSH', + EmployeeID: 9, + OrderDate: '2018-07-23T00:00:00', + RequiredDate: '2018-08-20T00:00:00', + ShippedDate: '2018-07-31T00:00:00', + ShipVia: 3, + Freight: 146.0600, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10264, + CustomerID: 'FOLKO', + EmployeeID: 6, + OrderDate: '2018-07-24T00:00:00', + RequiredDate: '2018-08-21T00:00:00', + ShippedDate: '2018-08-23T00:00:00', + ShipVia: 3, + Freight: 3.6700, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10265, + CustomerID: 'BLONP', + EmployeeID: 2, + OrderDate: '2018-07-25T00:00:00', + RequiredDate: '2018-08-22T00:00:00', + ShippedDate: '2018-08-12T00:00:00', + ShipVia: 1, + Freight: 55.2800, + ShipName: 'Blondel père et fils', + ShipAddress: '24, place Kléber', + ShipCity: 'Strasbourg', + ShipRegion: null, + ShipPostalCode: '67000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10266, + CustomerID: 'WARTH', + EmployeeID: 3, + OrderDate: '2018-07-26T00:00:00', + RequiredDate: '2018-09-06T00:00:00', + ShippedDate: '2018-07-31T00:00:00', + ShipVia: 3, + Freight: 25.7300, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10267, + CustomerID: 'FRANK', + EmployeeID: 4, + OrderDate: '2018-07-29T00:00:00', + RequiredDate: '2018-08-26T00:00:00', + ShippedDate: '2018-08-06T00:00:00', + ShipVia: 1, + Freight: 208.5800, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10268, + CustomerID: 'GROSR', + EmployeeID: 8, + OrderDate: '2018-07-30T00:00:00', + RequiredDate: '2018-08-27T00:00:00', + ShippedDate: '2018-08-02T00:00:00', + ShipVia: 3, + Freight: 66.2900, + ShipName: 'GROSELLA-Restaurante', + ShipAddress: '5ª Ave. Los Palos Grandes', + ShipCity: 'Caracas', + ShipRegion: 'DF', + ShipPostalCode: '1081', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10269, + CustomerID: 'WHITC', + EmployeeID: 5, + OrderDate: '2018-07-31T00:00:00', + RequiredDate: '2018-08-14T00:00:00', + ShippedDate: '2018-08-09T00:00:00', + ShipVia: 1, + Freight: 4.5600, + ShipName: 'White Clover Markets', + ShipAddress: '1029 - 12th Ave. S.', + ShipCity: 'Seattle', + ShipRegion: 'WA', + ShipPostalCode: '98124', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10270, + CustomerID: 'WARTH', + EmployeeID: 1, + OrderDate: '2018-08-01T00:00:00', + RequiredDate: '2018-08-29T00:00:00', + ShippedDate: '2018-08-02T00:00:00', + ShipVia: 1, + Freight: 136.5400, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10271, + CustomerID: 'SPLIR', + EmployeeID: 6, + OrderDate: '2018-08-01T00:00:00', + RequiredDate: '2018-08-29T00:00:00', + ShippedDate: '2018-08-30T00:00:00', + ShipVia: 2, + Freight: 4.5400, + ShipName: 'Split Rail Beer & Ale', + ShipAddress: 'P.O. Box 555', + ShipCity: 'Lander', + ShipRegion: 'WY', + ShipPostalCode: '82520', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10272, + CustomerID: 'RATTC', + EmployeeID: 6, + OrderDate: '2018-08-02T00:00:00', + RequiredDate: '2018-08-30T00:00:00', + ShippedDate: '2018-08-06T00:00:00', + ShipVia: 2, + Freight: 98.0300, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10273, + CustomerID: 'QUICK', + EmployeeID: 3, + OrderDate: '2018-08-05T00:00:00', + RequiredDate: '2018-09-02T00:00:00', + ShippedDate: '2018-08-12T00:00:00', + ShipVia: 3, + Freight: 76.0700, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10274, + CustomerID: 'VINET', + EmployeeID: 6, + OrderDate: '2018-08-06T00:00:00', + RequiredDate: '2018-09-03T00:00:00', + ShippedDate: '2018-08-16T00:00:00', + ShipVia: 1, + Freight: 6.0100, + ShipName: 'Vins et alcools Chevalier', + ShipAddress: '59 rue de l\'Abbaye', + ShipCity: 'Reims', + ShipRegion: null, + ShipPostalCode: '51100', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10275, + CustomerID: 'MAGAA', + EmployeeID: 1, + OrderDate: '2018-08-07T00:00:00', + RequiredDate: '2018-09-04T00:00:00', + ShippedDate: '2018-08-09T00:00:00', + ShipVia: 1, + Freight: 26.9300, + ShipName: 'Magazzini Alimentari Riuniti', + ShipAddress: 'Via Ludovico il Moro 22', + ShipCity: 'Bergamo', + ShipRegion: null, + ShipPostalCode: '24100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10276, + CustomerID: 'TORTU', + EmployeeID: 8, + OrderDate: '2018-08-08T00:00:00', + RequiredDate: '2018-08-22T00:00:00', + ShippedDate: '2018-08-14T00:00:00', + ShipVia: 3, + Freight: 13.8400, + ShipName: 'Tortuga Restaurante', + ShipAddress: 'Avda. Azteca 123', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10277, + CustomerID: 'MORGK', + EmployeeID: 2, + OrderDate: '2018-08-09T00:00:00', + RequiredDate: '2018-09-06T00:00:00', + ShippedDate: '2018-08-13T00:00:00', + ShipVia: 3, + Freight: 125.7700, + ShipName: 'Morgenstern Gesundkost', + ShipAddress: 'Heerstr. 22', + ShipCity: 'Leipzig', + ShipRegion: null, + ShipPostalCode: '04179', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10278, + CustomerID: 'BERGS', + EmployeeID: 8, + OrderDate: '2018-08-12T00:00:00', + RequiredDate: '2018-09-09T00:00:00', + ShippedDate: '2018-08-16T00:00:00', + ShipVia: 2, + Freight: 92.6900, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10279, + CustomerID: 'LEHMS', + EmployeeID: 8, + OrderDate: '2018-08-13T00:00:00', + RequiredDate: '2018-09-10T00:00:00', + ShippedDate: '2018-08-16T00:00:00', + ShipVia: 2, + Freight: 25.8300, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10280, + CustomerID: 'BERGS', + EmployeeID: 2, + OrderDate: '2018-08-14T00:00:00', + RequiredDate: '2018-09-11T00:00:00', + ShippedDate: '2018-09-12T00:00:00', + ShipVia: 1, + Freight: 8.9800, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10281, + CustomerID: 'ROMEY', + EmployeeID: 4, + OrderDate: '2018-08-14T00:00:00', + RequiredDate: '2018-08-28T00:00:00', + ShippedDate: '2018-08-21T00:00:00', + ShipVia: 1, + Freight: 2.9400, + ShipName: 'Romero y tomillo', + ShipAddress: 'Gran Vía, 1', + ShipCity: 'Madrid', + ShipRegion: null, + ShipPostalCode: '28001', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10282, + CustomerID: 'ROMEY', + EmployeeID: 4, + OrderDate: '2018-08-15T00:00:00', + RequiredDate: '2018-09-12T00:00:00', + ShippedDate: '2018-08-21T00:00:00', + ShipVia: 1, + Freight: 12.6900, + ShipName: 'Romero y tomillo', + ShipAddress: 'Gran Vía, 1', + ShipCity: 'Madrid', + ShipRegion: null, + ShipPostalCode: '28001', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10283, + CustomerID: 'LILAS', + EmployeeID: 3, + OrderDate: '2018-08-16T00:00:00', + RequiredDate: '2018-09-13T00:00:00', + ShippedDate: '2018-08-23T00:00:00', + ShipVia: 3, + Freight: 84.8100, + ShipName: 'LILA-Supermercado', + ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', + ShipCity: 'Barquisimeto', + ShipRegion: 'Lara', + ShipPostalCode: '3508', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10284, + CustomerID: 'LEHMS', + EmployeeID: 4, + OrderDate: '2018-08-19T00:00:00', + RequiredDate: '2018-09-16T00:00:00', + ShippedDate: '2018-08-27T00:00:00', + ShipVia: 1, + Freight: 76.5600, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10285, + CustomerID: 'QUICK', + EmployeeID: 1, + OrderDate: '2018-08-20T00:00:00', + RequiredDate: '2018-09-17T00:00:00', + ShippedDate: '2018-08-26T00:00:00', + ShipVia: 2, + Freight: 76.8300, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10286, + CustomerID: 'QUICK', + EmployeeID: 8, + OrderDate: '2018-08-21T00:00:00', + RequiredDate: '2018-09-18T00:00:00', + ShippedDate: '2018-08-30T00:00:00', + ShipVia: 3, + Freight: 229.2400, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10287, + CustomerID: 'RICAR', + EmployeeID: 8, + OrderDate: '2018-08-22T00:00:00', + RequiredDate: '2018-09-19T00:00:00', + ShippedDate: '2018-08-28T00:00:00', + ShipVia: 3, + Freight: 12.7600, + ShipName: 'Ricardo Adocicados', + ShipAddress: 'Av. Copacabana, 267', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-890', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10288, + CustomerID: 'REGGC', + EmployeeID: 4, + OrderDate: '2018-08-23T00:00:00', + RequiredDate: '2018-09-20T00:00:00', + ShippedDate: '2018-09-03T00:00:00', + ShipVia: 1, + Freight: 7.4500, + ShipName: 'Reggiani Caseifici', + ShipAddress: 'Strada Provinciale 124', + ShipCity: 'Reggio Emilia', + ShipRegion: null, + ShipPostalCode: '42100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10289, + CustomerID: 'BSBEV', + EmployeeID: 7, + OrderDate: '2018-08-26T00:00:00', + RequiredDate: '2018-09-23T00:00:00', + ShippedDate: '2018-08-28T00:00:00', + ShipVia: 3, + Freight: 22.7700, + ShipName: 'B\'s Beverages', + ShipAddress: 'Fauntleroy Circus', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'EC2 5NT', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10290, + CustomerID: 'COMMI', + EmployeeID: 8, + OrderDate: '2018-08-27T00:00:00', + RequiredDate: '2018-09-24T00:00:00', + ShippedDate: '2018-09-03T00:00:00', + ShipVia: 1, + Freight: 79.7000, + ShipName: 'Comércio Mineiro', + ShipAddress: 'Av. dos Lusíadas, 23', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05432-043', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10291, + CustomerID: 'QUEDE', + EmployeeID: 6, + OrderDate: '2018-08-27T00:00:00', + RequiredDate: '2018-09-24T00:00:00', + ShippedDate: '2018-09-04T00:00:00', + ShipVia: 2, + Freight: 6.4000, + ShipName: 'Que Delícia', + ShipAddress: 'Rua da Panificadora, 12', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-673', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10292, + CustomerID: 'TRADH', + EmployeeID: 1, + OrderDate: '2018-08-28T00:00:00', + RequiredDate: '2018-09-25T00:00:00', + ShippedDate: '2018-09-02T00:00:00', + ShipVia: 2, + Freight: 1.3500, + ShipName: 'Tradiçao Hipermercados', + ShipAddress: 'Av. Inês de Castro, 414', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05634-030', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10293, + CustomerID: 'TORTU', + EmployeeID: 1, + OrderDate: '2018-08-29T00:00:00', + RequiredDate: '2018-09-26T00:00:00', + ShippedDate: '2018-09-11T00:00:00', + ShipVia: 3, + Freight: 21.1800, + ShipName: 'Tortuga Restaurante', + ShipAddress: 'Avda. Azteca 123', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10294, + CustomerID: 'RATTC', + EmployeeID: 4, + OrderDate: '2018-08-30T00:00:00', + RequiredDate: '2018-09-27T00:00:00', + ShippedDate: '2018-09-05T00:00:00', + ShipVia: 2, + Freight: 147.2600, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10295, + CustomerID: 'VINET', + EmployeeID: 2, + OrderDate: '2018-09-02T00:00:00', + RequiredDate: '2018-09-30T00:00:00', + ShippedDate: '2018-09-10T00:00:00', + ShipVia: 2, + Freight: 1.1500, + ShipName: 'Vins et alcools Chevalier', + ShipAddress: '59 rue de l\'Abbaye', + ShipCity: 'Reims', + ShipRegion: null, + ShipPostalCode: '51100', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10296, + CustomerID: 'LILAS', + EmployeeID: 6, + OrderDate: '2018-09-03T00:00:00', + RequiredDate: '2018-10-01T00:00:00', + ShippedDate: '2018-09-11T00:00:00', + ShipVia: 1, + Freight: 0.1200, + ShipName: 'LILA-Supermercado', + ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', + ShipCity: 'Barquisimeto', + ShipRegion: 'Lara', + ShipPostalCode: '3508', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10297, + CustomerID: 'BLONP', + EmployeeID: 5, + OrderDate: '2018-09-04T00:00:00', + RequiredDate: '2018-10-16T00:00:00', + ShippedDate: '2018-09-10T00:00:00', + ShipVia: 2, + Freight: 5.7400, + ShipName: 'Blondel père et fils', + ShipAddress: '24, place Kléber', + ShipCity: 'Strasbourg', + ShipRegion: null, + ShipPostalCode: '67000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10298, + CustomerID: 'HUNGO', + EmployeeID: 6, + OrderDate: '2018-09-05T00:00:00', + RequiredDate: '2018-10-03T00:00:00', + ShippedDate: '2018-09-11T00:00:00', + ShipVia: 2, + Freight: 168.2200, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10299, + CustomerID: 'RICAR', + EmployeeID: 4, + OrderDate: '2018-09-06T00:00:00', + RequiredDate: '2018-10-04T00:00:00', + ShippedDate: '2018-09-13T00:00:00', + ShipVia: 2, + Freight: 29.7600, + ShipName: 'Ricardo Adocicados', + ShipAddress: 'Av. Copacabana, 267', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-890', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10300, + CustomerID: 'MAGAA', + EmployeeID: 2, + OrderDate: '2018-09-09T00:00:00', + RequiredDate: '2018-10-07T00:00:00', + ShippedDate: '2018-09-18T00:00:00', + ShipVia: 2, + Freight: 17.6800, + ShipName: 'Magazzini Alimentari Riuniti', + ShipAddress: 'Via Ludovico il Moro 22', + ShipCity: 'Bergamo', + ShipRegion: null, + ShipPostalCode: '24100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10301, + CustomerID: 'WANDK', + EmployeeID: 8, + OrderDate: '2018-09-09T00:00:00', + RequiredDate: '2018-10-07T00:00:00', + ShippedDate: '2018-09-17T00:00:00', + ShipVia: 2, + Freight: 45.0800, + ShipName: 'Die Wandernde Kuh', + ShipAddress: 'Adenauerallee 900', + ShipCity: 'Stuttgart', + ShipRegion: null, + ShipPostalCode: '70563', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10302, + CustomerID: 'SUPRD', + EmployeeID: 4, + OrderDate: '2018-09-10T00:00:00', + RequiredDate: '2018-10-08T00:00:00', + ShippedDate: '2018-10-09T00:00:00', + ShipVia: 2, + Freight: 6.2700, + ShipName: 'Suprêmes délices', + ShipAddress: 'Boulevard Tirou, 255', + ShipCity: 'Charleroi', + ShipRegion: null, + ShipPostalCode: 'B-6000', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10303, + CustomerID: 'GODOS', + EmployeeID: 7, + OrderDate: '2018-09-11T00:00:00', + RequiredDate: '2018-10-09T00:00:00', + ShippedDate: '2018-09-18T00:00:00', + ShipVia: 2, + Freight: 107.8300, + ShipName: 'Godos Cocina Típica', + ShipAddress: 'C/ Romero, 33', + ShipCity: 'Sevilla', + ShipRegion: null, + ShipPostalCode: '41101', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10304, + CustomerID: 'TORTU', + EmployeeID: 1, + OrderDate: '2018-09-12T00:00:00', + RequiredDate: '2018-10-10T00:00:00', + ShippedDate: '2018-09-17T00:00:00', + ShipVia: 2, + Freight: 63.7900, + ShipName: 'Tortuga Restaurante', + ShipAddress: 'Avda. Azteca 123', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10305, + CustomerID: 'OLDWO', + EmployeeID: 8, + OrderDate: '2018-09-13T00:00:00', + RequiredDate: '2018-10-11T00:00:00', + ShippedDate: '2018-10-09T00:00:00', + ShipVia: 3, + Freight: 257.6200, + ShipName: 'Old World Delicatessen', + ShipAddress: '2743 Bering St.', + ShipCity: 'Anchorage', + ShipRegion: 'AK', + ShipPostalCode: '99508', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10306, + CustomerID: 'ROMEY', + EmployeeID: 1, + OrderDate: '2018-09-16T00:00:00', + RequiredDate: '2018-10-14T00:00:00', + ShippedDate: '2018-09-23T00:00:00', + ShipVia: 3, + Freight: 7.5600, + ShipName: 'Romero y tomillo', + ShipAddress: 'Gran Vía, 1', + ShipCity: 'Madrid', + ShipRegion: null, + ShipPostalCode: '28001', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10307, + CustomerID: 'LONEP', + EmployeeID: 2, + OrderDate: '2018-09-17T00:00:00', + RequiredDate: '2018-10-15T00:00:00', + ShippedDate: '2018-09-25T00:00:00', + ShipVia: 2, + Freight: 0.5600, + ShipName: 'Lonesome Pine Restaurant', + ShipAddress: '89 Chiaroscuro Rd.', + ShipCity: 'Portland', + ShipRegion: 'OR', + ShipPostalCode: '97219', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10308, + CustomerID: 'ANATR', + EmployeeID: 7, + OrderDate: '2018-09-18T00:00:00', + RequiredDate: '2018-10-16T00:00:00', + ShippedDate: '2018-09-24T00:00:00', + ShipVia: 3, + Freight: 1.6100, + ShipName: 'Ana Trujillo Emparedados y helados', + ShipAddress: 'Avda. de la Constitución 2222', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05021', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10309, + CustomerID: 'HUNGO', + EmployeeID: 3, + OrderDate: '2018-09-19T00:00:00', + RequiredDate: '2018-10-17T00:00:00', + ShippedDate: '2018-10-23T00:00:00', + ShipVia: 1, + Freight: 47.3000, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10310, + CustomerID: 'THEBI', + EmployeeID: 8, + OrderDate: '2018-09-20T00:00:00', + RequiredDate: '2018-10-18T00:00:00', + ShippedDate: '2018-09-27T00:00:00', + ShipVia: 2, + Freight: 17.5200, + ShipName: 'The Big Cheese', + ShipAddress: '89 Jefferson Way Suite 2', + ShipCity: 'Portland', + ShipRegion: 'OR', + ShipPostalCode: '97201', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10311, + CustomerID: 'DUMON', + EmployeeID: 1, + OrderDate: '2018-09-20T00:00:00', + RequiredDate: '2018-10-04T00:00:00', + ShippedDate: '2018-09-26T00:00:00', + ShipVia: 3, + Freight: 24.6900, + ShipName: 'Du monde entier', + ShipAddress: '67, rue des Cinquante Otages', + ShipCity: 'Nantes', + ShipRegion: null, + ShipPostalCode: '44000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10312, + CustomerID: 'WANDK', + EmployeeID: 2, + OrderDate: '2018-09-23T00:00:00', + RequiredDate: '2018-10-21T00:00:00', + ShippedDate: '2018-10-03T00:00:00', + ShipVia: 2, + Freight: 40.2600, + ShipName: 'Die Wandernde Kuh', + ShipAddress: 'Adenauerallee 900', + ShipCity: 'Stuttgart', + ShipRegion: null, + ShipPostalCode: '70563', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10313, + CustomerID: 'QUICK', + EmployeeID: 2, + OrderDate: '2018-09-24T00:00:00', + RequiredDate: '2018-10-22T00:00:00', + ShippedDate: '2018-10-04T00:00:00', + ShipVia: 2, + Freight: 1.9600, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10314, + CustomerID: 'RATTC', + EmployeeID: 1, + OrderDate: '2018-09-25T00:00:00', + RequiredDate: '2018-10-23T00:00:00', + ShippedDate: '2018-10-04T00:00:00', + ShipVia: 2, + Freight: 74.1600, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10315, + CustomerID: 'ISLAT', + EmployeeID: 4, + OrderDate: '2018-09-26T00:00:00', + RequiredDate: '2018-10-24T00:00:00', + ShippedDate: '2018-10-03T00:00:00', + ShipVia: 2, + Freight: 41.7600, + ShipName: 'Island Trading', + ShipAddress: 'Garden House Crowther Way', + ShipCity: 'Cowes', + ShipRegion: 'Isle of Wight', + ShipPostalCode: 'PO31 7PJ', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10316, + CustomerID: 'RATTC', + EmployeeID: 1, + OrderDate: '2018-09-27T00:00:00', + RequiredDate: '2018-10-25T00:00:00', + ShippedDate: '2018-10-08T00:00:00', + ShipVia: 3, + Freight: 150.1500, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10317, + CustomerID: 'LONEP', + EmployeeID: 6, + OrderDate: '2018-09-30T00:00:00', + RequiredDate: '2018-10-28T00:00:00', + ShippedDate: '2018-10-10T00:00:00', + ShipVia: 1, + Freight: 12.6900, + ShipName: 'Lonesome Pine Restaurant', + ShipAddress: '89 Chiaroscuro Rd.', + ShipCity: 'Portland', + ShipRegion: 'OR', + ShipPostalCode: '97219', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10318, + CustomerID: 'ISLAT', + EmployeeID: 8, + OrderDate: '2018-10-01T00:00:00', + RequiredDate: '2018-10-29T00:00:00', + ShippedDate: '2018-10-04T00:00:00', + ShipVia: 2, + Freight: 4.7300, + ShipName: 'Island Trading', + ShipAddress: 'Garden House Crowther Way', + ShipCity: 'Cowes', + ShipRegion: 'Isle of Wight', + ShipPostalCode: 'PO31 7PJ', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10319, + CustomerID: 'TORTU', + EmployeeID: 7, + OrderDate: '2018-10-02T00:00:00', + RequiredDate: '2018-10-30T00:00:00', + ShippedDate: '2018-10-11T00:00:00', + ShipVia: 3, + Freight: 64.5000, + ShipName: 'Tortuga Restaurante', + ShipAddress: 'Avda. Azteca 123', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10320, + CustomerID: 'WARTH', + EmployeeID: 5, + OrderDate: '2018-10-03T00:00:00', + RequiredDate: '2018-10-17T00:00:00', + ShippedDate: '2018-10-18T00:00:00', + ShipVia: 3, + Freight: 34.5700, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10321, + CustomerID: 'ISLAT', + EmployeeID: 3, + OrderDate: '2018-10-03T00:00:00', + RequiredDate: '2018-10-31T00:00:00', + ShippedDate: '2018-10-11T00:00:00', + ShipVia: 2, + Freight: 3.4300, + ShipName: 'Island Trading', + ShipAddress: 'Garden House Crowther Way', + ShipCity: 'Cowes', + ShipRegion: 'Isle of Wight', + ShipPostalCode: 'PO31 7PJ', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10322, + CustomerID: 'PERIC', + EmployeeID: 7, + OrderDate: '2018-10-04T00:00:00', + RequiredDate: '2018-11-01T00:00:00', + ShippedDate: '2018-10-23T00:00:00', + ShipVia: 3, + Freight: 0.4000, + ShipName: 'Pericles Comidas clásicas', + ShipAddress: 'Calle Dr. Jorge Cash 321', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10323, + CustomerID: 'KOENE', + EmployeeID: 4, + OrderDate: '2018-10-07T00:00:00', + RequiredDate: '2018-11-04T00:00:00', + ShippedDate: '2018-10-14T00:00:00', + ShipVia: 1, + Freight: 4.8800, + ShipName: 'Königlich Essen', + ShipAddress: 'Maubelstr. 90', + ShipCity: 'Brandenburg', + ShipRegion: null, + ShipPostalCode: '14776', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10324, + CustomerID: 'SAVEA', + EmployeeID: 9, + OrderDate: '2018-10-08T00:00:00', + RequiredDate: '2018-11-05T00:00:00', + ShippedDate: '2018-10-10T00:00:00', + ShipVia: 1, + Freight: 214.2700, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10325, + CustomerID: 'KOENE', + EmployeeID: 1, + OrderDate: '2018-10-09T00:00:00', + RequiredDate: '2018-10-23T00:00:00', + ShippedDate: '2018-10-14T00:00:00', + ShipVia: 3, + Freight: 64.8600, + ShipName: 'Königlich Essen', + ShipAddress: 'Maubelstr. 90', + ShipCity: 'Brandenburg', + ShipRegion: null, + ShipPostalCode: '14776', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10326, + CustomerID: 'BOLID', + EmployeeID: 4, + OrderDate: '2018-10-10T00:00:00', + RequiredDate: '2018-11-07T00:00:00', + ShippedDate: '2018-10-14T00:00:00', + ShipVia: 2, + Freight: 77.9200, + ShipName: 'Bólido Comidas preparadas', + ShipAddress: 'C/ Araquil, 67', + ShipCity: 'Madrid', + ShipRegion: null, + ShipPostalCode: '28023', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10327, + CustomerID: 'FOLKO', + EmployeeID: 2, + OrderDate: '2018-10-11T00:00:00', + RequiredDate: '2018-11-08T00:00:00', + ShippedDate: '2018-10-14T00:00:00', + ShipVia: 1, + Freight: 63.3600, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10328, + CustomerID: 'FURIB', + EmployeeID: 4, + OrderDate: '2018-10-14T00:00:00', + RequiredDate: '2018-11-11T00:00:00', + ShippedDate: '2018-10-17T00:00:00', + ShipVia: 3, + Freight: 87.0300, + ShipName: 'Furia Bacalhau e Frutos do Mar', + ShipAddress: 'Jardim das rosas n. 32', + ShipCity: 'Lisboa', + ShipRegion: null, + ShipPostalCode: '1675', + ShipCountry: 'Portugal', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10329, + CustomerID: 'SPLIR', + EmployeeID: 4, + OrderDate: '2018-10-15T00:00:00', + RequiredDate: '2018-11-26T00:00:00', + ShippedDate: '2018-10-23T00:00:00', + ShipVia: 2, + Freight: 191.6700, + ShipName: 'Split Rail Beer & Ale', + ShipAddress: 'P.O. Box 555', + ShipCity: 'Lander', + ShipRegion: 'WY', + ShipPostalCode: '82520', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10330, + CustomerID: 'LILAS', + EmployeeID: 3, + OrderDate: '2018-10-16T00:00:00', + RequiredDate: '2018-11-13T00:00:00', + ShippedDate: '2018-10-28T00:00:00', + ShipVia: 1, + Freight: 12.7500, + ShipName: 'LILA-Supermercado', + ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', + ShipCity: 'Barquisimeto', + ShipRegion: 'Lara', + ShipPostalCode: '3508', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10331, + CustomerID: 'BONAP', + EmployeeID: 9, + OrderDate: '2018-10-16T00:00:00', + RequiredDate: '2018-11-27T00:00:00', + ShippedDate: '2018-10-21T00:00:00', + ShipVia: 1, + Freight: 10.1900, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10332, + CustomerID: 'MEREP', + EmployeeID: 3, + OrderDate: '2018-10-17T00:00:00', + RequiredDate: '2018-11-28T00:00:00', + ShippedDate: '2018-10-21T00:00:00', + ShipVia: 2, + Freight: 52.8400, + ShipName: 'Mère Paillarde', + ShipAddress: '43 rue St. Laurent', + ShipCity: 'Montréal', + ShipRegion: 'Québec', + ShipPostalCode: 'H1J 1C3', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10333, + CustomerID: 'WARTH', + EmployeeID: 5, + OrderDate: '2018-10-18T00:00:00', + RequiredDate: '2018-11-15T00:00:00', + ShippedDate: '2018-10-25T00:00:00', + ShipVia: 3, + Freight: 0.5900, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10334, + CustomerID: 'VICTE', + EmployeeID: 8, + OrderDate: '2018-10-21T00:00:00', + RequiredDate: '2018-11-18T00:00:00', + ShippedDate: '2018-10-28T00:00:00', + ShipVia: 2, + Freight: 8.5600, + ShipName: 'Victuailles en stock', + ShipAddress: '2, rue du Commerce', + ShipCity: 'Lyon', + ShipRegion: null, + ShipPostalCode: '69004', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10335, + CustomerID: 'HUNGO', + EmployeeID: 7, + OrderDate: '2018-10-22T00:00:00', + RequiredDate: '2018-11-19T00:00:00', + ShippedDate: '2018-10-24T00:00:00', + ShipVia: 2, + Freight: 42.1100, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10336, + CustomerID: 'PRINI', + EmployeeID: 7, + OrderDate: '2018-10-23T00:00:00', + RequiredDate: '2018-11-20T00:00:00', + ShippedDate: '2018-10-25T00:00:00', + ShipVia: 2, + Freight: 15.5100, + ShipName: 'Princesa Isabel Vinhos', + ShipAddress: 'Estrada da saúde n. 58', + ShipCity: 'Lisboa', + ShipRegion: null, + ShipPostalCode: '1756', + ShipCountry: 'Portugal', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10337, + CustomerID: 'FRANK', + EmployeeID: 4, + OrderDate: '2018-10-24T00:00:00', + RequiredDate: '2018-11-21T00:00:00', + ShippedDate: '2018-10-29T00:00:00', + ShipVia: 3, + Freight: 108.2600, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10338, + CustomerID: 'OLDWO', + EmployeeID: 4, + OrderDate: '2018-10-25T00:00:00', + RequiredDate: '2018-11-22T00:00:00', + ShippedDate: '2018-10-29T00:00:00', + ShipVia: 3, + Freight: 84.2100, + ShipName: 'Old World Delicatessen', + ShipAddress: '2743 Bering St.', + ShipCity: 'Anchorage', + ShipRegion: 'AK', + ShipPostalCode: '99508', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10339, + CustomerID: 'MEREP', + EmployeeID: 2, + OrderDate: '2018-10-28T00:00:00', + RequiredDate: '2018-11-25T00:00:00', + ShippedDate: '2018-11-04T00:00:00', + ShipVia: 2, + Freight: 15.6600, + ShipName: 'Mère Paillarde', + ShipAddress: '43 rue St. Laurent', + ShipCity: 'Montréal', + ShipRegion: 'Québec', + ShipPostalCode: 'H1J 1C3', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10340, + CustomerID: 'BONAP', + EmployeeID: 1, + OrderDate: '2018-10-29T00:00:00', + RequiredDate: '2018-11-26T00:00:00', + ShippedDate: '2018-11-08T00:00:00', + ShipVia: 3, + Freight: 166.3100, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10341, + CustomerID: 'SIMOB', + EmployeeID: 7, + OrderDate: '2018-10-29T00:00:00', + RequiredDate: '2018-11-26T00:00:00', + ShippedDate: '2018-11-05T00:00:00', + ShipVia: 3, + Freight: 26.7800, + ShipName: 'Simons bistro', + ShipAddress: 'Vinbæltet 34', + ShipCity: 'Kobenhavn', + ShipRegion: null, + ShipPostalCode: '1734', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10342, + CustomerID: 'FRANK', + EmployeeID: 4, + OrderDate: '2018-10-30T00:00:00', + RequiredDate: '2018-11-13T00:00:00', + ShippedDate: '2018-11-04T00:00:00', + ShipVia: 2, + Freight: 54.8300, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10343, + CustomerID: 'LEHMS', + EmployeeID: 4, + OrderDate: '2018-10-31T00:00:00', + RequiredDate: '2018-11-28T00:00:00', + ShippedDate: '2018-11-06T00:00:00', + ShipVia: 1, + Freight: 110.3700, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10344, + CustomerID: 'WHITC', + EmployeeID: 4, + OrderDate: '2018-11-01T00:00:00', + RequiredDate: '2018-11-29T00:00:00', + ShippedDate: '2018-11-05T00:00:00', + ShipVia: 2, + Freight: 23.2900, + ShipName: 'White Clover Markets', + ShipAddress: '1029 - 12th Ave. S.', + ShipCity: 'Seattle', + ShipRegion: 'WA', + ShipPostalCode: '98124', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10345, + CustomerID: 'QUICK', + EmployeeID: 2, + OrderDate: '2018-11-04T00:00:00', + RequiredDate: '2018-12-02T00:00:00', + ShippedDate: '2018-11-11T00:00:00', + ShipVia: 2, + Freight: 249.0600, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10346, + CustomerID: 'RATTC', + EmployeeID: 3, + OrderDate: '2018-11-05T00:00:00', + RequiredDate: '2018-12-17T00:00:00', + ShippedDate: '2018-11-08T00:00:00', + ShipVia: 3, + Freight: 142.0800, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10347, + CustomerID: 'FAMIA', + EmployeeID: 4, + OrderDate: '2018-11-06T00:00:00', + RequiredDate: '2018-12-04T00:00:00', + ShippedDate: '2018-11-08T00:00:00', + ShipVia: 3, + Freight: 3.1000, + ShipName: 'Familia Arquibaldo', + ShipAddress: 'Rua Orós, 92', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05442-030', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10348, + CustomerID: 'WANDK', + EmployeeID: 4, + OrderDate: '2018-11-07T00:00:00', + RequiredDate: '2018-12-05T00:00:00', + ShippedDate: '2018-11-15T00:00:00', + ShipVia: 2, + Freight: 0.7800, + ShipName: 'Die Wandernde Kuh', + ShipAddress: 'Adenauerallee 900', + ShipCity: 'Stuttgart', + ShipRegion: null, + ShipPostalCode: '70563', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10349, + CustomerID: 'SPLIR', + EmployeeID: 7, + OrderDate: '2018-11-08T00:00:00', + RequiredDate: '2018-12-06T00:00:00', + ShippedDate: '2018-11-15T00:00:00', + ShipVia: 1, + Freight: 8.6300, + ShipName: 'Split Rail Beer & Ale', + ShipAddress: 'P.O. Box 555', + ShipCity: 'Lander', + ShipRegion: 'WY', + ShipPostalCode: '82520', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10350, + CustomerID: 'LAMAI', + EmployeeID: 6, + OrderDate: '2018-11-11T00:00:00', + RequiredDate: '2018-12-09T00:00:00', + ShippedDate: '2018-12-03T00:00:00', + ShipVia: 2, + Freight: 64.1900, + ShipName: 'La maison d\'Asie', + ShipAddress: '1 rue Alsace-Lorraine', + ShipCity: 'Toulouse', + ShipRegion: null, + ShipPostalCode: '31000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10351, + CustomerID: 'ERNSH', + EmployeeID: 1, + OrderDate: '2018-11-11T00:00:00', + RequiredDate: '2018-12-09T00:00:00', + ShippedDate: '2018-11-20T00:00:00', + ShipVia: 1, + Freight: 162.3300, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10352, + CustomerID: 'FURIB', + EmployeeID: 3, + OrderDate: '2018-11-12T00:00:00', + RequiredDate: '2018-11-26T00:00:00', + ShippedDate: '2018-11-18T00:00:00', + ShipVia: 3, + Freight: 1.3000, + ShipName: 'Furia Bacalhau e Frutos do Mar', + ShipAddress: 'Jardim das rosas n. 32', + ShipCity: 'Lisboa', + ShipRegion: null, + ShipPostalCode: '1675', + ShipCountry: 'Portugal', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10353, + CustomerID: 'PICCO', + EmployeeID: 7, + OrderDate: '2018-11-13T00:00:00', + RequiredDate: '2018-12-11T00:00:00', + ShippedDate: '2018-11-25T00:00:00', + ShipVia: 3, + Freight: 360.6300, + ShipName: 'Piccolo und mehr', + ShipAddress: 'Geislweg 14', + ShipCity: 'Salzburg', + ShipRegion: null, + ShipPostalCode: '5020', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10354, + CustomerID: 'PERIC', + EmployeeID: 8, + OrderDate: '2018-11-14T00:00:00', + RequiredDate: '2018-12-12T00:00:00', + ShippedDate: '2018-11-20T00:00:00', + ShipVia: 3, + Freight: 53.8000, + ShipName: 'Pericles Comidas clásicas', + ShipAddress: 'Calle Dr. Jorge Cash 321', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10355, + CustomerID: 'AROUT', + EmployeeID: 6, + OrderDate: '2018-11-15T00:00:00', + RequiredDate: '2018-12-13T00:00:00', + ShippedDate: '2018-11-20T00:00:00', + ShipVia: 1, + Freight: 41.9500, + ShipName: 'Around the Horn', + ShipAddress: 'Brook Farm Stratford St. Mary', + ShipCity: 'Colchester', + ShipRegion: 'Essex', + ShipPostalCode: 'CO7 6JX', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10356, + CustomerID: 'WANDK', + EmployeeID: 6, + OrderDate: '2018-11-18T00:00:00', + RequiredDate: '2018-12-16T00:00:00', + ShippedDate: '2018-11-27T00:00:00', + ShipVia: 2, + Freight: 36.7100, + ShipName: 'Die Wandernde Kuh', + ShipAddress: 'Adenauerallee 900', + ShipCity: 'Stuttgart', + ShipRegion: null, + ShipPostalCode: '70563', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10357, + CustomerID: 'LILAS', + EmployeeID: 1, + OrderDate: '2018-11-19T00:00:00', + RequiredDate: '2018-12-17T00:00:00', + ShippedDate: '2018-12-02T00:00:00', + ShipVia: 3, + Freight: 34.8800, + ShipName: 'LILA-Supermercado', + ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', + ShipCity: 'Barquisimeto', + ShipRegion: 'Lara', + ShipPostalCode: '3508', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10358, + CustomerID: 'LAMAI', + EmployeeID: 5, + OrderDate: '2018-11-20T00:00:00', + RequiredDate: '2018-12-18T00:00:00', + ShippedDate: '2018-11-27T00:00:00', + ShipVia: 1, + Freight: 19.6400, + ShipName: 'La maison d\'Asie', + ShipAddress: '1 rue Alsace-Lorraine', + ShipCity: 'Toulouse', + ShipRegion: null, + ShipPostalCode: '31000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10359, + CustomerID: 'SEVES', + EmployeeID: 5, + OrderDate: '2018-11-21T00:00:00', + RequiredDate: '2018-12-19T00:00:00', + ShippedDate: '2018-11-26T00:00:00', + ShipVia: 3, + Freight: 288.4300, + ShipName: 'Seven Seas Imports', + ShipAddress: '90 Wadhurst Rd.', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'OX15 4NB', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10360, + CustomerID: 'BLONP', + EmployeeID: 4, + OrderDate: '2018-11-22T00:00:00', + RequiredDate: '2018-12-20T00:00:00', + ShippedDate: '2018-12-02T00:00:00', + ShipVia: 3, + Freight: 131.7000, + ShipName: 'Blondel père et fils', + ShipAddress: '24, place Kléber', + ShipCity: 'Strasbourg', + ShipRegion: null, + ShipPostalCode: '67000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10361, + CustomerID: 'QUICK', + EmployeeID: 1, + OrderDate: '2018-11-22T00:00:00', + RequiredDate: '2018-12-20T00:00:00', + ShippedDate: '2018-12-03T00:00:00', + ShipVia: 2, + Freight: 183.1700, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10362, + CustomerID: 'BONAP', + EmployeeID: 3, + OrderDate: '2018-11-25T00:00:00', + RequiredDate: '2018-12-23T00:00:00', + ShippedDate: '2018-11-28T00:00:00', + ShipVia: 1, + Freight: 96.0400, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10363, + CustomerID: 'DRACD', + EmployeeID: 4, + OrderDate: '2018-11-26T00:00:00', + RequiredDate: '2018-12-24T00:00:00', + ShippedDate: '2018-12-04T00:00:00', + ShipVia: 3, + Freight: 30.5400, + ShipName: 'Drachenblut Delikatessen', + ShipAddress: 'Walserweg 21', + ShipCity: 'Aachen', + ShipRegion: null, + ShipPostalCode: '52066', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10364, + CustomerID: 'EASTC', + EmployeeID: 1, + OrderDate: '2018-11-26T00:00:00', + RequiredDate: '2019-01-07T00:00:00', + ShippedDate: '2018-12-04T00:00:00', + ShipVia: 1, + Freight: 71.9700, + ShipName: 'Eastern Connection', + ShipAddress: '35 King George', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'WX3 6FW', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10365, + CustomerID: 'ANTON', + EmployeeID: 3, + OrderDate: '2018-11-27T00:00:00', + RequiredDate: '2018-12-25T00:00:00', + ShippedDate: '2018-12-02T00:00:00', + ShipVia: 2, + Freight: 22.0000, + ShipName: 'Antonio Moreno Taquería', + ShipAddress: 'Mataderos 2312', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05023', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10366, + CustomerID: 'GALED', + EmployeeID: 8, + OrderDate: '2018-11-28T00:00:00', + RequiredDate: '2019-01-09T00:00:00', + ShippedDate: '2018-12-30T00:00:00', + ShipVia: 2, + Freight: 10.1400, + ShipName: 'Galería del gastronómo', + ShipAddress: 'Rambla de Cataluña, 23', + ShipCity: 'Barcelona', + ShipRegion: null, + ShipPostalCode: '8022', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10367, + CustomerID: 'VAFFE', + EmployeeID: 7, + OrderDate: '2018-11-28T00:00:00', + RequiredDate: '2018-12-26T00:00:00', + ShippedDate: '2018-12-02T00:00:00', + ShipVia: 3, + Freight: 13.5500, + ShipName: 'Vaffeljernet', + ShipAddress: 'Smagsloget 45', + ShipCity: 'Århus', + ShipRegion: null, + ShipPostalCode: '8200', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10368, + CustomerID: 'ERNSH', + EmployeeID: 2, + OrderDate: '2018-11-29T00:00:00', + RequiredDate: '2018-12-27T00:00:00', + ShippedDate: '2018-12-02T00:00:00', + ShipVia: 2, + Freight: 101.9500, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10369, + CustomerID: 'SPLIR', + EmployeeID: 8, + OrderDate: '2018-12-02T00:00:00', + RequiredDate: '2018-12-30T00:00:00', + ShippedDate: '2018-12-09T00:00:00', + ShipVia: 2, + Freight: 195.6800, + ShipName: 'Split Rail Beer & Ale', + ShipAddress: 'P.O. Box 555', + ShipCity: 'Lander', + ShipRegion: 'WY', + ShipPostalCode: '82520', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10370, + CustomerID: 'CHOPS', + EmployeeID: 6, + OrderDate: '2018-12-03T00:00:00', + RequiredDate: '2018-12-31T00:00:00', + ShippedDate: '2018-12-27T00:00:00', + ShipVia: 2, + Freight: 1.1700, + ShipName: 'Chop-suey Chinese', + ShipAddress: 'Hauptstr. 31', + ShipCity: 'Bern', + ShipRegion: null, + ShipPostalCode: '3012', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10371, + CustomerID: 'LAMAI', + EmployeeID: 1, + OrderDate: '2018-12-03T00:00:00', + RequiredDate: '2018-12-31T00:00:00', + ShippedDate: '2018-12-24T00:00:00', + ShipVia: 1, + Freight: 0.4500, + ShipName: 'La maison d\'Asie', + ShipAddress: '1 rue Alsace-Lorraine', + ShipCity: 'Toulouse', + ShipRegion: null, + ShipPostalCode: '31000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10372, + CustomerID: 'QUEEN', + EmployeeID: 5, + OrderDate: '2018-12-04T00:00:00', + RequiredDate: '2019-01-01T00:00:00', + ShippedDate: '2018-12-09T00:00:00', + ShipVia: 2, + Freight: 890.7800, + ShipName: 'Queen Cozinha', + ShipAddress: 'Alameda dos Canàrios, 891', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05487-020', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10373, + CustomerID: 'HUNGO', + EmployeeID: 4, + OrderDate: '2018-12-05T00:00:00', + RequiredDate: '2019-01-02T00:00:00', + ShippedDate: '2018-12-11T00:00:00', + ShipVia: 3, + Freight: 124.1200, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10374, + CustomerID: 'WOLZA', + EmployeeID: 1, + OrderDate: '2018-12-05T00:00:00', + RequiredDate: '2019-01-02T00:00:00', + ShippedDate: '2018-12-09T00:00:00', + ShipVia: 3, + Freight: 3.9400, + ShipName: 'Wolski Zajazd', + ShipAddress: 'ul. Filtrowa 68', + ShipCity: 'Warszawa', + ShipRegion: null, + ShipPostalCode: '01-012', + ShipCountry: 'Poland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10375, + CustomerID: 'HUNGC', + EmployeeID: 3, + OrderDate: '2018-12-06T00:00:00', + RequiredDate: '2019-01-03T00:00:00', + ShippedDate: '2018-12-09T00:00:00', + ShipVia: 2, + Freight: 20.1200, + ShipName: 'Hungry Coyote Import Store', + ShipAddress: 'City Center Plaza 516 Main St.', + ShipCity: 'Elgin', + ShipRegion: 'OR', + ShipPostalCode: '97827', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10376, + CustomerID: 'MEREP', + EmployeeID: 1, + OrderDate: '2018-12-09T00:00:00', + RequiredDate: '2019-01-06T00:00:00', + ShippedDate: '2018-12-13T00:00:00', + ShipVia: 2, + Freight: 20.3900, + ShipName: 'Mère Paillarde', + ShipAddress: '43 rue St. Laurent', + ShipCity: 'Montréal', + ShipRegion: 'Québec', + ShipPostalCode: 'H1J 1C3', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10377, + CustomerID: 'SEVES', + EmployeeID: 1, + OrderDate: '2018-12-09T00:00:00', + RequiredDate: '2019-01-06T00:00:00', + ShippedDate: '2018-12-13T00:00:00', + ShipVia: 3, + Freight: 22.2100, + ShipName: 'Seven Seas Imports', + ShipAddress: '90 Wadhurst Rd.', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'OX15 4NB', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10378, + CustomerID: 'FOLKO', + EmployeeID: 5, + OrderDate: '2018-12-10T00:00:00', + RequiredDate: '2019-01-07T00:00:00', + ShippedDate: '2018-12-19T00:00:00', + ShipVia: 3, + Freight: 5.4400, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10379, + CustomerID: 'QUEDE', + EmployeeID: 2, + OrderDate: '2018-12-11T00:00:00', + RequiredDate: '2019-01-08T00:00:00', + ShippedDate: '2018-12-13T00:00:00', + ShipVia: 1, + Freight: 45.0300, + ShipName: 'Que Delícia', + ShipAddress: 'Rua da Panificadora, 12', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-673', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10380, + CustomerID: 'HUNGO', + EmployeeID: 8, + OrderDate: '2018-12-12T00:00:00', + RequiredDate: '2019-01-09T00:00:00', + ShippedDate: '2019-01-16T00:00:00', + ShipVia: 3, + Freight: 35.0300, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10381, + CustomerID: 'LILAS', + EmployeeID: 3, + OrderDate: '2018-12-12T00:00:00', + RequiredDate: '2019-01-09T00:00:00', + ShippedDate: '2018-12-13T00:00:00', + ShipVia: 3, + Freight: 7.9900, + ShipName: 'LILA-Supermercado', + ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', + ShipCity: 'Barquisimeto', + ShipRegion: 'Lara', + ShipPostalCode: '3508', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10382, + CustomerID: 'ERNSH', + EmployeeID: 4, + OrderDate: '2018-12-13T00:00:00', + RequiredDate: '2019-01-10T00:00:00', + ShippedDate: '2018-12-16T00:00:00', + ShipVia: 1, + Freight: 94.7700, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10383, + CustomerID: 'AROUT', + EmployeeID: 8, + OrderDate: '2018-12-16T00:00:00', + RequiredDate: '2019-01-13T00:00:00', + ShippedDate: '2018-12-18T00:00:00', + ShipVia: 3, + Freight: 34.2400, + ShipName: 'Around the Horn', + ShipAddress: 'Brook Farm Stratford St. Mary', + ShipCity: 'Colchester', + ShipRegion: 'Essex', + ShipPostalCode: 'CO7 6JX', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10384, + CustomerID: 'BERGS', + EmployeeID: 3, + OrderDate: '2018-12-16T00:00:00', + RequiredDate: '2019-01-13T00:00:00', + ShippedDate: '2018-12-20T00:00:00', + ShipVia: 3, + Freight: 168.6400, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10385, + CustomerID: 'SPLIR', + EmployeeID: 1, + OrderDate: '2018-12-17T00:00:00', + RequiredDate: '2019-01-14T00:00:00', + ShippedDate: '2018-12-23T00:00:00', + ShipVia: 2, + Freight: 30.9600, + ShipName: 'Split Rail Beer & Ale', + ShipAddress: 'P.O. Box 555', + ShipCity: 'Lander', + ShipRegion: 'WY', + ShipPostalCode: '82520', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10386, + CustomerID: 'FAMIA', + EmployeeID: 9, + OrderDate: '2018-12-18T00:00:00', + RequiredDate: '2019-01-01T00:00:00', + ShippedDate: '2018-12-25T00:00:00', + ShipVia: 3, + Freight: 13.9900, + ShipName: 'Familia Arquibaldo', + ShipAddress: 'Rua Orós, 92', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05442-030', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10387, + CustomerID: 'SANTG', + EmployeeID: 1, + OrderDate: '2018-12-18T00:00:00', + RequiredDate: '2019-01-15T00:00:00', + ShippedDate: '2018-12-20T00:00:00', + ShipVia: 2, + Freight: 93.6300, + ShipName: 'Santé Gourmet', + ShipAddress: 'Erling Skakkes gate 78', + ShipCity: 'Stavern', + ShipRegion: null, + ShipPostalCode: '4110', + ShipCountry: 'Norway', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10388, + CustomerID: 'SEVES', + EmployeeID: 2, + OrderDate: '2018-12-19T00:00:00', + RequiredDate: '2019-01-16T00:00:00', + ShippedDate: '2018-12-20T00:00:00', + ShipVia: 1, + Freight: 34.8600, + ShipName: 'Seven Seas Imports', + ShipAddress: '90 Wadhurst Rd.', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'OX15 4NB', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10389, + CustomerID: 'BOTTM', + EmployeeID: 4, + OrderDate: '2018-12-20T00:00:00', + RequiredDate: '2019-01-17T00:00:00', + ShippedDate: '2018-12-24T00:00:00', + ShipVia: 2, + Freight: 47.4200, + ShipName: 'Bottom-Dollar Markets', + ShipAddress: '23 Tsawassen Blvd.', + ShipCity: 'Tsawassen', + ShipRegion: 'BC', + ShipPostalCode: 'T2F 8M4', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10390, + CustomerID: 'ERNSH', + EmployeeID: 6, + OrderDate: '2018-12-23T00:00:00', + RequiredDate: '2019-01-20T00:00:00', + ShippedDate: '2018-12-26T00:00:00', + ShipVia: 1, + Freight: 126.3800, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10391, + CustomerID: 'DRACD', + EmployeeID: 3, + OrderDate: '2018-12-23T00:00:00', + RequiredDate: '2019-01-20T00:00:00', + ShippedDate: '2018-12-31T00:00:00', + ShipVia: 3, + Freight: 5.4500, + ShipName: 'Drachenblut Delikatessen', + ShipAddress: 'Walserweg 21', + ShipCity: 'Aachen', + ShipRegion: null, + ShipPostalCode: '52066', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10392, + CustomerID: 'PICCO', + EmployeeID: 2, + OrderDate: '2018-12-24T00:00:00', + RequiredDate: '2019-01-21T00:00:00', + ShippedDate: '2019-01-01T00:00:00', + ShipVia: 3, + Freight: 122.4600, + ShipName: 'Piccolo und mehr', + ShipAddress: 'Geislweg 14', + ShipCity: 'Salzburg', + ShipRegion: null, + ShipPostalCode: '5020', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10393, + CustomerID: 'SAVEA', + EmployeeID: 1, + OrderDate: '2018-12-25T00:00:00', + RequiredDate: '2019-01-22T00:00:00', + ShippedDate: '2019-01-03T00:00:00', + ShipVia: 3, + Freight: 126.5600, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10394, + CustomerID: 'HUNGC', + EmployeeID: 1, + OrderDate: '2018-12-25T00:00:00', + RequiredDate: '2019-01-22T00:00:00', + ShippedDate: '2019-01-03T00:00:00', + ShipVia: 3, + Freight: 30.3400, + ShipName: 'Hungry Coyote Import Store', + ShipAddress: 'City Center Plaza 516 Main St.', + ShipCity: 'Elgin', + ShipRegion: 'OR', + ShipPostalCode: '97827', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10395, + CustomerID: 'HILAA', + EmployeeID: 6, + OrderDate: '2018-12-26T00:00:00', + RequiredDate: '2019-01-23T00:00:00', + ShippedDate: '2019-01-03T00:00:00', + ShipVia: 1, + Freight: 184.4100, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10396, + CustomerID: 'FRANK', + EmployeeID: 1, + OrderDate: '2018-12-27T00:00:00', + RequiredDate: '2019-01-10T00:00:00', + ShippedDate: '2019-01-06T00:00:00', + ShipVia: 3, + Freight: 135.3500, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10397, + CustomerID: 'PRINI', + EmployeeID: 5, + OrderDate: '2018-12-27T00:00:00', + RequiredDate: '2019-01-24T00:00:00', + ShippedDate: '2019-01-02T00:00:00', + ShipVia: 1, + Freight: 60.2600, + ShipName: 'Princesa Isabel Vinhos', + ShipAddress: 'Estrada da saúde n. 58', + ShipCity: 'Lisboa', + ShipRegion: null, + ShipPostalCode: '1756', + ShipCountry: 'Portugal', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10398, + CustomerID: 'SAVEA', + EmployeeID: 2, + OrderDate: '2018-12-30T00:00:00', + RequiredDate: '2019-01-27T00:00:00', + ShippedDate: '2019-01-09T00:00:00', + ShipVia: 3, + Freight: 89.1600, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10399, + CustomerID: 'VAFFE', + EmployeeID: 8, + OrderDate: '2018-12-31T00:00:00', + RequiredDate: '2019-01-14T00:00:00', + ShippedDate: '2019-01-08T00:00:00', + ShipVia: 3, + Freight: 27.3600, + ShipName: 'Vaffeljernet', + ShipAddress: 'Smagsloget 45', + ShipCity: 'Århus', + ShipRegion: null, + ShipPostalCode: '8200', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10400, + CustomerID: 'EASTC', + EmployeeID: 1, + OrderDate: '2019-01-01T00:00:00', + RequiredDate: '2019-01-29T00:00:00', + ShippedDate: '2019-01-16T00:00:00', + ShipVia: 3, + Freight: 83.9300, + ShipName: 'Eastern Connection', + ShipAddress: '35 King George', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'WX3 6FW', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10401, + CustomerID: 'RATTC', + EmployeeID: 1, + OrderDate: '2019-01-01T00:00:00', + RequiredDate: '2019-01-29T00:00:00', + ShippedDate: '2019-01-10T00:00:00', + ShipVia: 1, + Freight: 12.5100, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10402, + CustomerID: 'ERNSH', + EmployeeID: 8, + OrderDate: '2019-01-02T00:00:00', + RequiredDate: '2019-02-13T00:00:00', + ShippedDate: '2019-01-10T00:00:00', + ShipVia: 2, + Freight: 67.8800, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10403, + CustomerID: 'ERNSH', + EmployeeID: 4, + OrderDate: '2019-01-03T00:00:00', + RequiredDate: '2019-01-31T00:00:00', + ShippedDate: '2019-01-09T00:00:00', + ShipVia: 3, + Freight: 73.7900, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10404, + CustomerID: 'MAGAA', + EmployeeID: 2, + OrderDate: '2019-01-03T00:00:00', + RequiredDate: '2019-01-31T00:00:00', + ShippedDate: '2019-01-08T00:00:00', + ShipVia: 1, + Freight: 155.9700, + ShipName: 'Magazzini Alimentari Riuniti', + ShipAddress: 'Via Ludovico il Moro 22', + ShipCity: 'Bergamo', + ShipRegion: null, + ShipPostalCode: '24100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10405, + CustomerID: 'LINOD', + EmployeeID: 1, + OrderDate: '2019-01-06T00:00:00', + RequiredDate: '2019-02-03T00:00:00', + ShippedDate: '2019-01-22T00:00:00', + ShipVia: 1, + Freight: 34.8200, + ShipName: 'LINO-Delicateses', + ShipAddress: 'Ave. 5 de Mayo Porlamar', + ShipCity: 'I. de Margarita', + ShipRegion: 'Nueva Esparta', + ShipPostalCode: '4980', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10406, + CustomerID: 'QUEEN', + EmployeeID: 7, + OrderDate: '2019-01-07T00:00:00', + RequiredDate: '2019-02-18T00:00:00', + ShippedDate: '2019-01-13T00:00:00', + ShipVia: 1, + Freight: 108.0400, + ShipName: 'Queen Cozinha', + ShipAddress: 'Alameda dos Canàrios, 891', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05487-020', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10407, + CustomerID: 'OTTIK', + EmployeeID: 2, + OrderDate: '2019-01-07T00:00:00', + RequiredDate: '2019-02-04T00:00:00', + ShippedDate: '2019-01-30T00:00:00', + ShipVia: 2, + Freight: 91.4800, + ShipName: 'Ottilies Käseladen', + ShipAddress: 'Mehrheimerstr. 369', + ShipCity: 'Köln', + ShipRegion: null, + ShipPostalCode: '50739', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10408, + CustomerID: 'FOLIG', + EmployeeID: 8, + OrderDate: '2019-01-08T00:00:00', + RequiredDate: '2019-02-05T00:00:00', + ShippedDate: '2019-01-14T00:00:00', + ShipVia: 1, + Freight: 11.2600, + ShipName: 'Folies gourmandes', + ShipAddress: '184, chaussée de Tournai', + ShipCity: 'Lille', + ShipRegion: null, + ShipPostalCode: '59000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10409, + CustomerID: 'OCEAN', + EmployeeID: 3, + OrderDate: '2019-01-09T00:00:00', + RequiredDate: '2019-02-06T00:00:00', + ShippedDate: '2019-01-14T00:00:00', + ShipVia: 1, + Freight: 29.8300, + ShipName: 'Océano Atlántico Ltda.', + ShipAddress: 'Ing. Gustavo Moncada 8585 Piso 20-A', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10410, + CustomerID: 'BOTTM', + EmployeeID: 3, + OrderDate: '2019-01-10T00:00:00', + RequiredDate: '2019-02-07T00:00:00', + ShippedDate: '2019-01-15T00:00:00', + ShipVia: 3, + Freight: 2.4000, + ShipName: 'Bottom-Dollar Markets', + ShipAddress: '23 Tsawassen Blvd.', + ShipCity: 'Tsawassen', + ShipRegion: 'BC', + ShipPostalCode: 'T2F 8M4', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10411, + CustomerID: 'BOTTM', + EmployeeID: 9, + OrderDate: '2019-01-10T00:00:00', + RequiredDate: '2019-02-07T00:00:00', + ShippedDate: '2019-01-21T00:00:00', + ShipVia: 3, + Freight: 23.6500, + ShipName: 'Bottom-Dollar Markets', + ShipAddress: '23 Tsawassen Blvd.', + ShipCity: 'Tsawassen', + ShipRegion: 'BC', + ShipPostalCode: 'T2F 8M4', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10412, + CustomerID: 'WARTH', + EmployeeID: 8, + OrderDate: '2019-01-13T00:00:00', + RequiredDate: '2019-02-10T00:00:00', + ShippedDate: '2019-01-15T00:00:00', + ShipVia: 2, + Freight: 3.7700, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10413, + CustomerID: 'LAMAI', + EmployeeID: 3, + OrderDate: '2019-01-14T00:00:00', + RequiredDate: '2019-02-11T00:00:00', + ShippedDate: '2019-01-16T00:00:00', + ShipVia: 2, + Freight: 95.6600, + ShipName: 'La maison d\'Asie', + ShipAddress: '1 rue Alsace-Lorraine', + ShipCity: 'Toulouse', + ShipRegion: null, + ShipPostalCode: '31000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10414, + CustomerID: 'FAMIA', + EmployeeID: 2, + OrderDate: '2019-01-14T00:00:00', + RequiredDate: '2019-02-11T00:00:00', + ShippedDate: '2019-01-17T00:00:00', + ShipVia: 3, + Freight: 21.4800, + ShipName: 'Familia Arquibaldo', + ShipAddress: 'Rua Orós, 92', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05442-030', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10415, + CustomerID: 'HUNGC', + EmployeeID: 3, + OrderDate: '2019-01-15T00:00:00', + RequiredDate: '2019-02-12T00:00:00', + ShippedDate: '2019-01-24T00:00:00', + ShipVia: 1, + Freight: 0.2000, + ShipName: 'Hungry Coyote Import Store', + ShipAddress: 'City Center Plaza 516 Main St.', + ShipCity: 'Elgin', + ShipRegion: 'OR', + ShipPostalCode: '97827', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10416, + CustomerID: 'WARTH', + EmployeeID: 8, + OrderDate: '2019-01-16T00:00:00', + RequiredDate: '2019-02-13T00:00:00', + ShippedDate: '2019-01-27T00:00:00', + ShipVia: 3, + Freight: 22.7200, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10417, + CustomerID: 'SIMOB', + EmployeeID: 4, + OrderDate: '2019-01-16T00:00:00', + RequiredDate: '2019-02-13T00:00:00', + ShippedDate: '2019-01-28T00:00:00', + ShipVia: 3, + Freight: 70.2900, + ShipName: 'Simons bistro', + ShipAddress: 'Vinbæltet 34', + ShipCity: 'Kobenhavn', + ShipRegion: null, + ShipPostalCode: '1734', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10418, + CustomerID: 'QUICK', + EmployeeID: 4, + OrderDate: '2019-01-17T00:00:00', + RequiredDate: '2019-02-14T00:00:00', + ShippedDate: '2019-01-24T00:00:00', + ShipVia: 1, + Freight: 17.5500, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10419, + CustomerID: 'RICSU', + EmployeeID: 4, + OrderDate: '2019-01-20T00:00:00', + RequiredDate: '2019-02-17T00:00:00', + ShippedDate: '2019-01-30T00:00:00', + ShipVia: 2, + Freight: 137.3500, + ShipName: 'Richter Supermarkt', + ShipAddress: 'Starenweg 5', + ShipCity: 'Genève', + ShipRegion: null, + ShipPostalCode: '1204', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10420, + CustomerID: 'WELLI', + EmployeeID: 3, + OrderDate: '2019-01-21T00:00:00', + RequiredDate: '2019-02-18T00:00:00', + ShippedDate: '2019-01-27T00:00:00', + ShipVia: 1, + Freight: 44.1200, + ShipName: 'Wellington Importadora', + ShipAddress: 'Rua do Mercado, 12', + ShipCity: 'Resende', + ShipRegion: 'SP', + ShipPostalCode: '08737-363', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10421, + CustomerID: 'QUEDE', + EmployeeID: 8, + OrderDate: '2019-01-21T00:00:00', + RequiredDate: '2019-03-04T00:00:00', + ShippedDate: '2019-01-27T00:00:00', + ShipVia: 1, + Freight: 99.2300, + ShipName: 'Que Delícia', + ShipAddress: 'Rua da Panificadora, 12', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-673', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10422, + CustomerID: 'FRANS', + EmployeeID: 2, + OrderDate: '2019-01-22T00:00:00', + RequiredDate: '2019-02-19T00:00:00', + ShippedDate: '2019-01-31T00:00:00', + ShipVia: 1, + Freight: 3.0200, + ShipName: 'Franchi S.p.A.', + ShipAddress: 'Via Monte Bianco 34', + ShipCity: 'Torino', + ShipRegion: null, + ShipPostalCode: '10100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10423, + CustomerID: 'GOURL', + EmployeeID: 6, + OrderDate: '2019-01-23T00:00:00', + RequiredDate: '2019-02-06T00:00:00', + ShippedDate: '2019-02-24T00:00:00', + ShipVia: 3, + Freight: 24.5000, + ShipName: 'Gourmet Lanchonetes', + ShipAddress: 'Av. Brasil, 442', + ShipCity: 'Campinas', + ShipRegion: 'SP', + ShipPostalCode: '04876-786', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10424, + CustomerID: 'MEREP', + EmployeeID: 7, + OrderDate: '2019-01-23T00:00:00', + RequiredDate: '2019-02-20T00:00:00', + ShippedDate: '2019-01-27T00:00:00', + ShipVia: 2, + Freight: 370.6100, + ShipName: 'Mère Paillarde', + ShipAddress: '43 rue St. Laurent', + ShipCity: 'Montréal', + ShipRegion: 'Québec', + ShipPostalCode: 'H1J 1C3', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10425, + CustomerID: 'LAMAI', + EmployeeID: 6, + OrderDate: '2019-01-24T00:00:00', + RequiredDate: '2019-02-21T00:00:00', + ShippedDate: '2019-02-14T00:00:00', + ShipVia: 2, + Freight: 7.9300, + ShipName: 'La maison d\'Asie', + ShipAddress: '1 rue Alsace-Lorraine', + ShipCity: 'Toulouse', + ShipRegion: null, + ShipPostalCode: '31000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10426, + CustomerID: 'GALED', + EmployeeID: 4, + OrderDate: '2019-01-27T00:00:00', + RequiredDate: '2019-02-24T00:00:00', + ShippedDate: '2019-02-06T00:00:00', + ShipVia: 1, + Freight: 18.6900, + ShipName: 'Galería del gastronómo', + ShipAddress: 'Rambla de Cataluña, 23', + ShipCity: 'Barcelona', + ShipRegion: null, + ShipPostalCode: '8022', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10427, + CustomerID: 'PICCO', + EmployeeID: 4, + OrderDate: '2019-01-27T00:00:00', + RequiredDate: '2019-02-24T00:00:00', + ShippedDate: '2019-03-03T00:00:00', + ShipVia: 2, + Freight: 31.2900, + ShipName: 'Piccolo und mehr', + ShipAddress: 'Geislweg 14', + ShipCity: 'Salzburg', + ShipRegion: null, + ShipPostalCode: '5020', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10428, + CustomerID: 'REGGC', + EmployeeID: 7, + OrderDate: '2019-01-28T00:00:00', + RequiredDate: '2019-02-25T00:00:00', + ShippedDate: '2019-02-04T00:00:00', + ShipVia: 1, + Freight: 11.0900, + ShipName: 'Reggiani Caseifici', + ShipAddress: 'Strada Provinciale 124', + ShipCity: 'Reggio Emilia', + ShipRegion: null, + ShipPostalCode: '42100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10429, + CustomerID: 'HUNGO', + EmployeeID: 3, + OrderDate: '2019-01-29T00:00:00', + RequiredDate: '2019-03-12T00:00:00', + ShippedDate: '2019-02-07T00:00:00', + ShipVia: 2, + Freight: 56.6300, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10430, + CustomerID: 'ERNSH', + EmployeeID: 4, + OrderDate: '2019-01-30T00:00:00', + RequiredDate: '2019-02-13T00:00:00', + ShippedDate: '2019-02-03T00:00:00', + ShipVia: 1, + Freight: 458.7800, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10431, + CustomerID: 'BOTTM', + EmployeeID: 4, + OrderDate: '2019-01-30T00:00:00', + RequiredDate: '2019-02-13T00:00:00', + ShippedDate: '2019-02-07T00:00:00', + ShipVia: 2, + Freight: 44.1700, + ShipName: 'Bottom-Dollar Markets', + ShipAddress: '23 Tsawassen Blvd.', + ShipCity: 'Tsawassen', + ShipRegion: 'BC', + ShipPostalCode: 'T2F 8M4', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10432, + CustomerID: 'SPLIR', + EmployeeID: 3, + OrderDate: '2019-01-31T00:00:00', + RequiredDate: '2019-02-14T00:00:00', + ShippedDate: '2019-02-07T00:00:00', + ShipVia: 2, + Freight: 4.3400, + ShipName: 'Split Rail Beer & Ale', + ShipAddress: 'P.O. Box 555', + ShipCity: 'Lander', + ShipRegion: 'WY', + ShipPostalCode: '82520', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10433, + CustomerID: 'PRINI', + EmployeeID: 3, + OrderDate: '2019-02-03T00:00:00', + RequiredDate: '2019-03-03T00:00:00', + ShippedDate: '2019-03-04T00:00:00', + ShipVia: 3, + Freight: 73.8300, + ShipName: 'Princesa Isabel Vinhos', + ShipAddress: 'Estrada da saúde n. 58', + ShipCity: 'Lisboa', + ShipRegion: null, + ShipPostalCode: '1756', + ShipCountry: 'Portugal', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10434, + CustomerID: 'FOLKO', + EmployeeID: 3, + OrderDate: '2019-02-03T00:00:00', + RequiredDate: '2019-03-03T00:00:00', + ShippedDate: '2019-02-13T00:00:00', + ShipVia: 2, + Freight: 17.9200, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10435, + CustomerID: 'CONSH', + EmployeeID: 8, + OrderDate: '2019-02-04T00:00:00', + RequiredDate: '2019-03-18T00:00:00', + ShippedDate: '2019-02-07T00:00:00', + ShipVia: 2, + Freight: 9.2100, + ShipName: 'Consolidated Holdings', + ShipAddress: 'Berkeley Gardens 12 Brewery', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'WX1 6LT', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10436, + CustomerID: 'BLONP', + EmployeeID: 3, + OrderDate: '2019-02-05T00:00:00', + RequiredDate: '2019-03-05T00:00:00', + ShippedDate: '2019-02-11T00:00:00', + ShipVia: 2, + Freight: 156.6600, + ShipName: 'Blondel père et fils', + ShipAddress: '24, place Kléber', + ShipCity: 'Strasbourg', + ShipRegion: null, + ShipPostalCode: '67000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10437, + CustomerID: 'WARTH', + EmployeeID: 8, + OrderDate: '2019-02-05T00:00:00', + RequiredDate: '2019-03-05T00:00:00', + ShippedDate: '2019-02-12T00:00:00', + ShipVia: 1, + Freight: 19.9700, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10438, + CustomerID: 'TOMSP', + EmployeeID: 3, + OrderDate: '2019-02-06T00:00:00', + RequiredDate: '2019-03-06T00:00:00', + ShippedDate: '2019-02-14T00:00:00', + ShipVia: 2, + Freight: 8.2400, + ShipName: 'Toms Spezialitäten', + ShipAddress: 'Luisenstr. 48', + ShipCity: 'Münster', + ShipRegion: null, + ShipPostalCode: '44087', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10439, + CustomerID: 'MEREP', + EmployeeID: 6, + OrderDate: '2019-02-07T00:00:00', + RequiredDate: '2019-03-07T00:00:00', + ShippedDate: '2019-02-10T00:00:00', + ShipVia: 3, + Freight: 4.0700, + ShipName: 'Mère Paillarde', + ShipAddress: '43 rue St. Laurent', + ShipCity: 'Montréal', + ShipRegion: 'Québec', + ShipPostalCode: 'H1J 1C3', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10440, + CustomerID: 'SAVEA', + EmployeeID: 4, + OrderDate: '2019-02-10T00:00:00', + RequiredDate: '2019-03-10T00:00:00', + ShippedDate: '2019-02-28T00:00:00', + ShipVia: 2, + Freight: 86.5300, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10441, + CustomerID: 'OLDWO', + EmployeeID: 3, + OrderDate: '2019-02-10T00:00:00', + RequiredDate: '2019-03-24T00:00:00', + ShippedDate: '2019-03-14T00:00:00', + ShipVia: 2, + Freight: 73.0200, + ShipName: 'Old World Delicatessen', + ShipAddress: '2743 Bering St.', + ShipCity: 'Anchorage', + ShipRegion: 'AK', + ShipPostalCode: '99508', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10442, + CustomerID: 'ERNSH', + EmployeeID: 3, + OrderDate: '2019-02-11T00:00:00', + RequiredDate: '2019-03-11T00:00:00', + ShippedDate: '2019-02-18T00:00:00', + ShipVia: 2, + Freight: 47.9400, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10443, + CustomerID: 'REGGC', + EmployeeID: 8, + OrderDate: '2019-02-12T00:00:00', + RequiredDate: '2019-03-12T00:00:00', + ShippedDate: '2019-02-14T00:00:00', + ShipVia: 1, + Freight: 13.9500, + ShipName: 'Reggiani Caseifici', + ShipAddress: 'Strada Provinciale 124', + ShipCity: 'Reggio Emilia', + ShipRegion: null, + ShipPostalCode: '42100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10444, + CustomerID: 'BERGS', + EmployeeID: 3, + OrderDate: '2019-02-12T00:00:00', + RequiredDate: '2019-03-12T00:00:00', + ShippedDate: '2019-02-21T00:00:00', + ShipVia: 3, + Freight: 3.5000, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10445, + CustomerID: 'BERGS', + EmployeeID: 3, + OrderDate: '2019-02-13T00:00:00', + RequiredDate: '2019-03-13T00:00:00', + ShippedDate: '2019-02-20T00:00:00', + ShipVia: 1, + Freight: 9.3000, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10446, + CustomerID: 'TOMSP', + EmployeeID: 6, + OrderDate: '2019-02-14T00:00:00', + RequiredDate: '2019-03-14T00:00:00', + ShippedDate: '2019-02-19T00:00:00', + ShipVia: 1, + Freight: 14.6800, + ShipName: 'Toms Spezialitäten', + ShipAddress: 'Luisenstr. 48', + ShipCity: 'Münster', + ShipRegion: null, + ShipPostalCode: '44087', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10447, + CustomerID: 'RICAR', + EmployeeID: 4, + OrderDate: '2019-02-14T00:00:00', + RequiredDate: '2019-03-14T00:00:00', + ShippedDate: '2019-03-07T00:00:00', + ShipVia: 2, + Freight: 68.6600, + ShipName: 'Ricardo Adocicados', + ShipAddress: 'Av. Copacabana, 267', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-890', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10448, + CustomerID: 'RANCH', + EmployeeID: 4, + OrderDate: '2019-02-17T00:00:00', + RequiredDate: '2019-03-17T00:00:00', + ShippedDate: '2019-02-24T00:00:00', + ShipVia: 2, + Freight: 38.8200, + ShipName: 'Rancho grande', + ShipAddress: 'Av. del Libertador 900', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10449, + CustomerID: 'BLONP', + EmployeeID: 3, + OrderDate: '2019-02-18T00:00:00', + RequiredDate: '2019-03-18T00:00:00', + ShippedDate: '2019-02-27T00:00:00', + ShipVia: 2, + Freight: 53.3000, + ShipName: 'Blondel père et fils', + ShipAddress: '24, place Kléber', + ShipCity: 'Strasbourg', + ShipRegion: null, + ShipPostalCode: '67000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10450, + CustomerID: 'VICTE', + EmployeeID: 8, + OrderDate: '2019-02-19T00:00:00', + RequiredDate: '2019-03-19T00:00:00', + ShippedDate: '2019-03-11T00:00:00', + ShipVia: 2, + Freight: 7.2300, + ShipName: 'Victuailles en stock', + ShipAddress: '2, rue du Commerce', + ShipCity: 'Lyon', + ShipRegion: null, + ShipPostalCode: '69004', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10451, + CustomerID: 'QUICK', + EmployeeID: 4, + OrderDate: '2019-02-19T00:00:00', + RequiredDate: '2019-03-05T00:00:00', + ShippedDate: '2019-03-12T00:00:00', + ShipVia: 3, + Freight: 189.0900, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10452, + CustomerID: 'SAVEA', + EmployeeID: 8, + OrderDate: '2019-02-20T00:00:00', + RequiredDate: '2019-03-20T00:00:00', + ShippedDate: '2019-02-26T00:00:00', + ShipVia: 1, + Freight: 140.2600, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10453, + CustomerID: 'AROUT', + EmployeeID: 1, + OrderDate: '2019-02-21T00:00:00', + RequiredDate: '2019-03-21T00:00:00', + ShippedDate: '2019-02-26T00:00:00', + ShipVia: 2, + Freight: 25.3600, + ShipName: 'Around the Horn', + ShipAddress: 'Brook Farm Stratford St. Mary', + ShipCity: 'Colchester', + ShipRegion: 'Essex', + ShipPostalCode: 'CO7 6JX', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10454, + CustomerID: 'LAMAI', + EmployeeID: 4, + OrderDate: '2019-02-21T00:00:00', + RequiredDate: '2019-03-21T00:00:00', + ShippedDate: '2019-02-25T00:00:00', + ShipVia: 3, + Freight: 2.7400, + ShipName: 'La maison d\'Asie', + ShipAddress: '1 rue Alsace-Lorraine', + ShipCity: 'Toulouse', + ShipRegion: null, + ShipPostalCode: '31000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10455, + CustomerID: 'WARTH', + EmployeeID: 8, + OrderDate: '2019-02-24T00:00:00', + RequiredDate: '2019-04-07T00:00:00', + ShippedDate: '2019-03-03T00:00:00', + ShipVia: 2, + Freight: 180.4500, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10456, + CustomerID: 'KOENE', + EmployeeID: 8, + OrderDate: '2019-02-25T00:00:00', + RequiredDate: '2019-04-08T00:00:00', + ShippedDate: '2019-02-28T00:00:00', + ShipVia: 2, + Freight: 8.1200, + ShipName: 'Königlich Essen', + ShipAddress: 'Maubelstr. 90', + ShipCity: 'Brandenburg', + ShipRegion: null, + ShipPostalCode: '14776', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10457, + CustomerID: 'KOENE', + EmployeeID: 2, + OrderDate: '2019-02-25T00:00:00', + RequiredDate: '2019-03-25T00:00:00', + ShippedDate: '2019-03-03T00:00:00', + ShipVia: 1, + Freight: 11.5700, + ShipName: 'Königlich Essen', + ShipAddress: 'Maubelstr. 90', + ShipCity: 'Brandenburg', + ShipRegion: null, + ShipPostalCode: '14776', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10458, + CustomerID: 'SUPRD', + EmployeeID: 7, + OrderDate: '2019-02-26T00:00:00', + RequiredDate: '2019-03-26T00:00:00', + ShippedDate: '2019-03-04T00:00:00', + ShipVia: 3, + Freight: 147.0600, + ShipName: 'Suprêmes délices', + ShipAddress: 'Boulevard Tirou, 255', + ShipCity: 'Charleroi', + ShipRegion: null, + ShipPostalCode: 'B-6000', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10459, + CustomerID: 'VICTE', + EmployeeID: 4, + OrderDate: '2019-02-27T00:00:00', + RequiredDate: '2019-03-27T00:00:00', + ShippedDate: '2019-02-28T00:00:00', + ShipVia: 2, + Freight: 25.0900, + ShipName: 'Victuailles en stock', + ShipAddress: '2, rue du Commerce', + ShipCity: 'Lyon', + ShipRegion: null, + ShipPostalCode: '69004', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10460, + CustomerID: 'FOLKO', + EmployeeID: 8, + OrderDate: '2019-02-28T00:00:00', + RequiredDate: '2019-03-28T00:00:00', + ShippedDate: '2019-03-03T00:00:00', + ShipVia: 1, + Freight: 16.2700, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10461, + CustomerID: 'LILAS', + EmployeeID: 1, + OrderDate: '2019-02-28T00:00:00', + RequiredDate: '2019-03-28T00:00:00', + ShippedDate: '2019-03-05T00:00:00', + ShipVia: 3, + Freight: 148.6100, + ShipName: 'LILA-Supermercado', + ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', + ShipCity: 'Barquisimeto', + ShipRegion: 'Lara', + ShipPostalCode: '3508', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10462, + CustomerID: 'CONSH', + EmployeeID: 2, + OrderDate: '2019-03-03T00:00:00', + RequiredDate: '2019-03-31T00:00:00', + ShippedDate: '2019-03-18T00:00:00', + ShipVia: 1, + Freight: 6.1700, + ShipName: 'Consolidated Holdings', + ShipAddress: 'Berkeley Gardens 12 Brewery', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'WX1 6LT', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10463, + CustomerID: 'SUPRD', + EmployeeID: 5, + OrderDate: '2019-03-04T00:00:00', + RequiredDate: '2019-04-01T00:00:00', + ShippedDate: '2019-03-06T00:00:00', + ShipVia: 3, + Freight: 14.7800, + ShipName: 'Suprêmes délices', + ShipAddress: 'Boulevard Tirou, 255', + ShipCity: 'Charleroi', + ShipRegion: null, + ShipPostalCode: 'B-6000', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10464, + CustomerID: 'FURIB', + EmployeeID: 4, + OrderDate: '2019-03-04T00:00:00', + RequiredDate: '2019-04-01T00:00:00', + ShippedDate: '2019-03-14T00:00:00', + ShipVia: 2, + Freight: 89.0000, + ShipName: 'Furia Bacalhau e Frutos do Mar', + ShipAddress: 'Jardim das rosas n. 32', + ShipCity: 'Lisboa', + ShipRegion: null, + ShipPostalCode: '1675', + ShipCountry: 'Portugal', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10465, + CustomerID: 'VAFFE', + EmployeeID: 1, + OrderDate: '2019-03-05T00:00:00', + RequiredDate: '2019-04-02T00:00:00', + ShippedDate: '2019-03-14T00:00:00', + ShipVia: 3, + Freight: 145.0400, + ShipName: 'Vaffeljernet', + ShipAddress: 'Smagsloget 45', + ShipCity: 'Århus', + ShipRegion: null, + ShipPostalCode: '8200', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10466, + CustomerID: 'COMMI', + EmployeeID: 4, + OrderDate: '2019-03-06T00:00:00', + RequiredDate: '2019-04-03T00:00:00', + ShippedDate: '2019-03-13T00:00:00', + ShipVia: 1, + Freight: 11.9300, + ShipName: 'Comércio Mineiro', + ShipAddress: 'Av. dos Lusíadas, 23', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05432-043', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10467, + CustomerID: 'MAGAA', + EmployeeID: 8, + OrderDate: '2019-03-06T00:00:00', + RequiredDate: '2019-04-03T00:00:00', + ShippedDate: '2019-03-11T00:00:00', + ShipVia: 2, + Freight: 4.9300, + ShipName: 'Magazzini Alimentari Riuniti', + ShipAddress: 'Via Ludovico il Moro 22', + ShipCity: 'Bergamo', + ShipRegion: null, + ShipPostalCode: '24100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10468, + CustomerID: 'KOENE', + EmployeeID: 3, + OrderDate: '2019-03-07T00:00:00', + RequiredDate: '2019-04-04T00:00:00', + ShippedDate: '2019-03-12T00:00:00', + ShipVia: 3, + Freight: 44.1200, + ShipName: 'Königlich Essen', + ShipAddress: 'Maubelstr. 90', + ShipCity: 'Brandenburg', + ShipRegion: null, + ShipPostalCode: '14776', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10469, + CustomerID: 'WHITC', + EmployeeID: 1, + OrderDate: '2019-03-10T00:00:00', + RequiredDate: '2019-04-07T00:00:00', + ShippedDate: '2019-03-14T00:00:00', + ShipVia: 1, + Freight: 60.1800, + ShipName: 'White Clover Markets', + ShipAddress: '1029 - 12th Ave. S.', + ShipCity: 'Seattle', + ShipRegion: 'WA', + ShipPostalCode: '98124', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10470, + CustomerID: 'BONAP', + EmployeeID: 4, + OrderDate: '2019-03-11T00:00:00', + RequiredDate: '2019-04-08T00:00:00', + ShippedDate: '2019-03-14T00:00:00', + ShipVia: 2, + Freight: 64.5600, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10471, + CustomerID: 'BSBEV', + EmployeeID: 2, + OrderDate: '2019-03-11T00:00:00', + RequiredDate: '2019-04-08T00:00:00', + ShippedDate: '2019-03-18T00:00:00', + ShipVia: 3, + Freight: 45.5900, + ShipName: 'B\'s Beverages', + ShipAddress: 'Fauntleroy Circus', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'EC2 5NT', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10472, + CustomerID: 'SEVES', + EmployeeID: 8, + OrderDate: '2019-03-12T00:00:00', + RequiredDate: '2019-04-09T00:00:00', + ShippedDate: '2019-03-19T00:00:00', + ShipVia: 1, + Freight: 4.2000, + ShipName: 'Seven Seas Imports', + ShipAddress: '90 Wadhurst Rd.', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'OX15 4NB', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10473, + CustomerID: 'ISLAT', + EmployeeID: 1, + OrderDate: '2019-03-13T00:00:00', + RequiredDate: '2019-03-27T00:00:00', + ShippedDate: '2019-03-21T00:00:00', + ShipVia: 3, + Freight: 16.3700, + ShipName: 'Island Trading', + ShipAddress: 'Garden House Crowther Way', + ShipCity: 'Cowes', + ShipRegion: 'Isle of Wight', + ShipPostalCode: 'PO31 7PJ', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10474, + CustomerID: 'PERIC', + EmployeeID: 5, + OrderDate: '2019-03-13T00:00:00', + RequiredDate: '2019-04-10T00:00:00', + ShippedDate: '2019-03-21T00:00:00', + ShipVia: 2, + Freight: 83.4900, + ShipName: 'Pericles Comidas clásicas', + ShipAddress: 'Calle Dr. Jorge Cash 321', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10475, + CustomerID: 'SUPRD', + EmployeeID: 9, + OrderDate: '2019-03-14T00:00:00', + RequiredDate: '2019-04-11T00:00:00', + ShippedDate: '2019-04-04T00:00:00', + ShipVia: 1, + Freight: 68.5200, + ShipName: 'Suprêmes délices', + ShipAddress: 'Boulevard Tirou, 255', + ShipCity: 'Charleroi', + ShipRegion: null, + ShipPostalCode: 'B-6000', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10476, + CustomerID: 'HILAA', + EmployeeID: 8, + OrderDate: '2019-03-17T00:00:00', + RequiredDate: '2019-04-14T00:00:00', + ShippedDate: '2019-03-24T00:00:00', + ShipVia: 3, + Freight: 4.4100, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10477, + CustomerID: 'PRINI', + EmployeeID: 5, + OrderDate: '2019-03-17T00:00:00', + RequiredDate: '2019-04-14T00:00:00', + ShippedDate: '2019-03-25T00:00:00', + ShipVia: 2, + Freight: 13.0200, + ShipName: 'Princesa Isabel Vinhos', + ShipAddress: 'Estrada da saúde n. 58', + ShipCity: 'Lisboa', + ShipRegion: null, + ShipPostalCode: '1756', + ShipCountry: 'Portugal', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10478, + CustomerID: 'VICTE', + EmployeeID: 2, + OrderDate: '2019-03-18T00:00:00', + RequiredDate: '2019-04-01T00:00:00', + ShippedDate: '2019-03-26T00:00:00', + ShipVia: 3, + Freight: 4.8100, + ShipName: 'Victuailles en stock', + ShipAddress: '2, rue du Commerce', + ShipCity: 'Lyon', + ShipRegion: null, + ShipPostalCode: '69004', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10479, + CustomerID: 'RATTC', + EmployeeID: 3, + OrderDate: '2019-03-19T00:00:00', + RequiredDate: '2019-04-16T00:00:00', + ShippedDate: '2019-03-21T00:00:00', + ShipVia: 3, + Freight: 708.9500, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10480, + CustomerID: 'FOLIG', + EmployeeID: 6, + OrderDate: '2019-03-20T00:00:00', + RequiredDate: '2019-04-17T00:00:00', + ShippedDate: '2019-03-24T00:00:00', + ShipVia: 2, + Freight: 1.3500, + ShipName: 'Folies gourmandes', + ShipAddress: '184, chaussée de Tournai', + ShipCity: 'Lille', + ShipRegion: null, + ShipPostalCode: '59000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10481, + CustomerID: 'RICAR', + EmployeeID: 8, + OrderDate: '2019-03-20T00:00:00', + RequiredDate: '2019-04-17T00:00:00', + ShippedDate: '2019-03-25T00:00:00', + ShipVia: 2, + Freight: 64.3300, + ShipName: 'Ricardo Adocicados', + ShipAddress: 'Av. Copacabana, 267', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-890', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10482, + CustomerID: 'LAZYK', + EmployeeID: 1, + OrderDate: '2019-03-21T00:00:00', + RequiredDate: '2019-04-18T00:00:00', + ShippedDate: '2019-04-10T00:00:00', + ShipVia: 3, + Freight: 7.4800, + ShipName: 'Lazy K Kountry Store', + ShipAddress: '12 Orchestra Terrace', + ShipCity: 'Walla Walla', + ShipRegion: 'WA', + ShipPostalCode: '99362', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10483, + CustomerID: 'WHITC', + EmployeeID: 7, + OrderDate: '2019-03-24T00:00:00', + RequiredDate: '2019-04-21T00:00:00', + ShippedDate: '2019-04-25T00:00:00', + ShipVia: 2, + Freight: 15.2800, + ShipName: 'White Clover Markets', + ShipAddress: '1029 - 12th Ave. S.', + ShipCity: 'Seattle', + ShipRegion: 'WA', + ShipPostalCode: '98124', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10484, + CustomerID: 'BSBEV', + EmployeeID: 3, + OrderDate: '2019-03-24T00:00:00', + RequiredDate: '2019-04-21T00:00:00', + ShippedDate: '2019-04-01T00:00:00', + ShipVia: 3, + Freight: 6.8800, + ShipName: 'B\'s Beverages', + ShipAddress: 'Fauntleroy Circus', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'EC2 5NT', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10485, + CustomerID: 'LINOD', + EmployeeID: 4, + OrderDate: '2019-03-25T00:00:00', + RequiredDate: '2019-04-08T00:00:00', + ShippedDate: '2019-03-31T00:00:00', + ShipVia: 2, + Freight: 64.4500, + ShipName: 'LINO-Delicateses', + ShipAddress: 'Ave. 5 de Mayo Porlamar', + ShipCity: 'I. de Margarita', + ShipRegion: 'Nueva Esparta', + ShipPostalCode: '4980', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10486, + CustomerID: 'HILAA', + EmployeeID: 1, + OrderDate: '2019-03-26T00:00:00', + RequiredDate: '2019-04-23T00:00:00', + ShippedDate: '2019-04-02T00:00:00', + ShipVia: 2, + Freight: 30.5300, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10487, + CustomerID: 'QUEEN', + EmployeeID: 2, + OrderDate: '2019-03-26T00:00:00', + RequiredDate: '2019-04-23T00:00:00', + ShippedDate: '2019-03-28T00:00:00', + ShipVia: 2, + Freight: 71.0700, + ShipName: 'Queen Cozinha', + ShipAddress: 'Alameda dos Canàrios, 891', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05487-020', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10488, + CustomerID: 'FRANK', + EmployeeID: 8, + OrderDate: '2019-03-27T00:00:00', + RequiredDate: '2019-04-24T00:00:00', + ShippedDate: '2019-04-02T00:00:00', + ShipVia: 2, + Freight: 4.9300, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10489, + CustomerID: 'PICCO', + EmployeeID: 6, + OrderDate: '2019-03-28T00:00:00', + RequiredDate: '2019-04-25T00:00:00', + ShippedDate: '2019-04-09T00:00:00', + ShipVia: 2, + Freight: 5.2900, + ShipName: 'Piccolo und mehr', + ShipAddress: 'Geislweg 14', + ShipCity: 'Salzburg', + ShipRegion: null, + ShipPostalCode: '5020', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10490, + CustomerID: 'HILAA', + EmployeeID: 7, + OrderDate: '2019-03-31T00:00:00', + RequiredDate: '2019-04-28T00:00:00', + ShippedDate: '2019-04-03T00:00:00', + ShipVia: 2, + Freight: 210.1900, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10491, + CustomerID: 'FURIB', + EmployeeID: 8, + OrderDate: '2019-03-31T00:00:00', + RequiredDate: '2019-04-28T00:00:00', + ShippedDate: '2019-04-08T00:00:00', + ShipVia: 3, + Freight: 16.9600, + ShipName: 'Furia Bacalhau e Frutos do Mar', + ShipAddress: 'Jardim das rosas n. 32', + ShipCity: 'Lisboa', + ShipRegion: null, + ShipPostalCode: '1675', + ShipCountry: 'Portugal', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10492, + CustomerID: 'BOTTM', + EmployeeID: 3, + OrderDate: '2019-04-01T00:00:00', + RequiredDate: '2019-04-29T00:00:00', + ShippedDate: '2019-04-11T00:00:00', + ShipVia: 1, + Freight: 62.8900, + ShipName: 'Bottom-Dollar Markets', + ShipAddress: '23 Tsawassen Blvd.', + ShipCity: 'Tsawassen', + ShipRegion: 'BC', + ShipPostalCode: 'T2F 8M4', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10493, + CustomerID: 'LAMAI', + EmployeeID: 4, + OrderDate: '2019-04-02T00:00:00', + RequiredDate: '2019-04-30T00:00:00', + ShippedDate: '2019-04-10T00:00:00', + ShipVia: 3, + Freight: 10.6400, + ShipName: 'La maison d\'Asie', + ShipAddress: '1 rue Alsace-Lorraine', + ShipCity: 'Toulouse', + ShipRegion: null, + ShipPostalCode: '31000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10494, + CustomerID: 'COMMI', + EmployeeID: 4, + OrderDate: '2019-04-02T00:00:00', + RequiredDate: '2019-04-30T00:00:00', + ShippedDate: '2019-04-09T00:00:00', + ShipVia: 2, + Freight: 65.9900, + ShipName: 'Comércio Mineiro', + ShipAddress: 'Av. dos Lusíadas, 23', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05432-043', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10495, + CustomerID: 'LAUGB', + EmployeeID: 3, + OrderDate: '2019-04-03T00:00:00', + RequiredDate: '2019-05-01T00:00:00', + ShippedDate: '2019-04-11T00:00:00', + ShipVia: 3, + Freight: 4.6500, + ShipName: 'Laughing Bacchus Wine Cellars', + ShipAddress: '2319 Elm St.', + ShipCity: 'Vancouver', + ShipRegion: 'BC', + ShipPostalCode: 'V3F 2K1', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10496, + CustomerID: 'TRADH', + EmployeeID: 7, + OrderDate: '2019-04-04T00:00:00', + RequiredDate: '2019-05-02T00:00:00', + ShippedDate: '2019-04-07T00:00:00', + ShipVia: 2, + Freight: 46.7700, + ShipName: 'Tradiçao Hipermercados', + ShipAddress: 'Av. Inês de Castro, 414', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05634-030', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10497, + CustomerID: 'LEHMS', + EmployeeID: 7, + OrderDate: '2019-04-04T00:00:00', + RequiredDate: '2019-05-02T00:00:00', + ShippedDate: '2019-04-07T00:00:00', + ShipVia: 1, + Freight: 36.2100, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10498, + CustomerID: 'HILAA', + EmployeeID: 8, + OrderDate: '2019-04-07T00:00:00', + RequiredDate: '2019-05-05T00:00:00', + ShippedDate: '2019-04-11T00:00:00', + ShipVia: 2, + Freight: 29.7500, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10499, + CustomerID: 'LILAS', + EmployeeID: 4, + OrderDate: '2019-04-08T00:00:00', + RequiredDate: '2019-05-06T00:00:00', + ShippedDate: '2019-04-16T00:00:00', + ShipVia: 2, + Freight: 102.0200, + ShipName: 'LILA-Supermercado', + ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', + ShipCity: 'Barquisimeto', + ShipRegion: 'Lara', + ShipPostalCode: '3508', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10500, + CustomerID: 'LAMAI', + EmployeeID: 6, + OrderDate: '2019-04-09T00:00:00', + RequiredDate: '2019-05-07T00:00:00', + ShippedDate: '2019-04-17T00:00:00', + ShipVia: 1, + Freight: 42.6800, + ShipName: 'La maison d\'Asie', + ShipAddress: '1 rue Alsace-Lorraine', + ShipCity: 'Toulouse', + ShipRegion: null, + ShipPostalCode: '31000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10501, + CustomerID: 'BLAUS', + EmployeeID: 9, + OrderDate: '2019-04-09T00:00:00', + RequiredDate: '2019-05-07T00:00:00', + ShippedDate: '2019-04-16T00:00:00', + ShipVia: 3, + Freight: 8.8500, + ShipName: 'Blauer See Delikatessen', + ShipAddress: 'Forsterstr. 57', + ShipCity: 'Mannheim', + ShipRegion: null, + ShipPostalCode: '68306', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10502, + CustomerID: 'PERIC', + EmployeeID: 2, + OrderDate: '2019-04-10T00:00:00', + RequiredDate: '2019-05-08T00:00:00', + ShippedDate: '2019-04-29T00:00:00', + ShipVia: 1, + Freight: 69.3200, + ShipName: 'Pericles Comidas clásicas', + ShipAddress: 'Calle Dr. Jorge Cash 321', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10503, + CustomerID: 'HUNGO', + EmployeeID: 6, + OrderDate: '2019-04-11T00:00:00', + RequiredDate: '2019-05-09T00:00:00', + ShippedDate: '2019-04-16T00:00:00', + ShipVia: 2, + Freight: 16.7400, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10504, + CustomerID: 'WHITC', + EmployeeID: 4, + OrderDate: '2019-04-11T00:00:00', + RequiredDate: '2019-05-09T00:00:00', + ShippedDate: '2019-04-18T00:00:00', + ShipVia: 3, + Freight: 59.1300, + ShipName: 'White Clover Markets', + ShipAddress: '1029 - 12th Ave. S.', + ShipCity: 'Seattle', + ShipRegion: 'WA', + ShipPostalCode: '98124', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10505, + CustomerID: 'MEREP', + EmployeeID: 3, + OrderDate: '2019-04-14T00:00:00', + RequiredDate: '2019-05-12T00:00:00', + ShippedDate: '2019-04-21T00:00:00', + ShipVia: 3, + Freight: 7.1300, + ShipName: 'Mère Paillarde', + ShipAddress: '43 rue St. Laurent', + ShipCity: 'Montréal', + ShipRegion: 'Québec', + ShipPostalCode: 'H1J 1C3', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10506, + CustomerID: 'KOENE', + EmployeeID: 9, + OrderDate: '2019-04-15T00:00:00', + RequiredDate: '2019-05-13T00:00:00', + ShippedDate: '2019-05-02T00:00:00', + ShipVia: 2, + Freight: 21.1900, + ShipName: 'Königlich Essen', + ShipAddress: 'Maubelstr. 90', + ShipCity: 'Brandenburg', + ShipRegion: null, + ShipPostalCode: '14776', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10507, + CustomerID: 'ANTON', + EmployeeID: 7, + OrderDate: '2019-04-15T00:00:00', + RequiredDate: '2019-05-13T00:00:00', + ShippedDate: '2019-04-22T00:00:00', + ShipVia: 1, + Freight: 47.4500, + ShipName: 'Antonio Moreno Taquería', + ShipAddress: 'Mataderos 2312', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05023', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10508, + CustomerID: 'OTTIK', + EmployeeID: 1, + OrderDate: '2019-04-16T00:00:00', + RequiredDate: '2019-05-14T00:00:00', + ShippedDate: '2019-05-13T00:00:00', + ShipVia: 2, + Freight: 4.9900, + ShipName: 'Ottilies Käseladen', + ShipAddress: 'Mehrheimerstr. 369', + ShipCity: 'Köln', + ShipRegion: null, + ShipPostalCode: '50739', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10509, + CustomerID: 'BLAUS', + EmployeeID: 4, + OrderDate: '2019-04-17T00:00:00', + RequiredDate: '2019-05-15T00:00:00', + ShippedDate: '2019-04-29T00:00:00', + ShipVia: 1, + Freight: 0.1500, + ShipName: 'Blauer See Delikatessen', + ShipAddress: 'Forsterstr. 57', + ShipCity: 'Mannheim', + ShipRegion: null, + ShipPostalCode: '68306', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10510, + CustomerID: 'SAVEA', + EmployeeID: 6, + OrderDate: '2019-04-18T00:00:00', + RequiredDate: '2019-05-16T00:00:00', + ShippedDate: '2019-04-28T00:00:00', + ShipVia: 3, + Freight: 367.6300, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10511, + CustomerID: 'BONAP', + EmployeeID: 4, + OrderDate: '2019-04-18T00:00:00', + RequiredDate: '2019-05-16T00:00:00', + ShippedDate: '2019-04-21T00:00:00', + ShipVia: 3, + Freight: 350.6400, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10512, + CustomerID: 'FAMIA', + EmployeeID: 7, + OrderDate: '2019-04-21T00:00:00', + RequiredDate: '2019-05-19T00:00:00', + ShippedDate: '2019-04-24T00:00:00', + ShipVia: 2, + Freight: 3.5300, + ShipName: 'Familia Arquibaldo', + ShipAddress: 'Rua Orós, 92', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05442-030', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10513, + CustomerID: 'WANDK', + EmployeeID: 7, + OrderDate: '2019-04-22T00:00:00', + RequiredDate: '2019-06-03T00:00:00', + ShippedDate: '2019-04-28T00:00:00', + ShipVia: 1, + Freight: 105.6500, + ShipName: 'Die Wandernde Kuh', + ShipAddress: 'Adenauerallee 900', + ShipCity: 'Stuttgart', + ShipRegion: null, + ShipPostalCode: '70563', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10514, + CustomerID: 'ERNSH', + EmployeeID: 3, + OrderDate: '2019-04-22T00:00:00', + RequiredDate: '2019-05-20T00:00:00', + ShippedDate: '2019-05-16T00:00:00', + ShipVia: 2, + Freight: 789.9500, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10515, + CustomerID: 'QUICK', + EmployeeID: 2, + OrderDate: '2019-04-23T00:00:00', + RequiredDate: '2019-05-07T00:00:00', + ShippedDate: '2019-05-23T00:00:00', + ShipVia: 1, + Freight: 204.4700, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10516, + CustomerID: 'HUNGO', + EmployeeID: 2, + OrderDate: '2019-04-24T00:00:00', + RequiredDate: '2019-05-22T00:00:00', + ShippedDate: '2019-05-01T00:00:00', + ShipVia: 3, + Freight: 62.7800, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10517, + CustomerID: 'NORTS', + EmployeeID: 3, + OrderDate: '2019-04-24T00:00:00', + RequiredDate: '2019-05-22T00:00:00', + ShippedDate: '2019-04-29T00:00:00', + ShipVia: 3, + Freight: 32.0700, + ShipName: 'North/South', + ShipAddress: 'South House 300 Queensbridge', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'SW7 1RZ', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10518, + CustomerID: 'TORTU', + EmployeeID: 4, + OrderDate: '2019-04-25T00:00:00', + RequiredDate: '2019-05-09T00:00:00', + ShippedDate: '2019-05-05T00:00:00', + ShipVia: 2, + Freight: 218.1500, + ShipName: 'Tortuga Restaurante', + ShipAddress: 'Avda. Azteca 123', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10519, + CustomerID: 'CHOPS', + EmployeeID: 6, + OrderDate: '2019-04-28T00:00:00', + RequiredDate: '2019-05-26T00:00:00', + ShippedDate: '2019-05-01T00:00:00', + ShipVia: 3, + Freight: 91.7600, + ShipName: 'Chop-suey Chinese', + ShipAddress: 'Hauptstr. 31', + ShipCity: 'Bern', + ShipRegion: null, + ShipPostalCode: '3012', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10520, + CustomerID: 'SANTG', + EmployeeID: 7, + OrderDate: '2019-04-29T00:00:00', + RequiredDate: '2019-05-27T00:00:00', + ShippedDate: '2019-05-01T00:00:00', + ShipVia: 1, + Freight: 13.3700, + ShipName: 'Santé Gourmet', + ShipAddress: 'Erling Skakkes gate 78', + ShipCity: 'Stavern', + ShipRegion: null, + ShipPostalCode: '4110', + ShipCountry: 'Norway', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10521, + CustomerID: 'CACTU', + EmployeeID: 8, + OrderDate: '2019-04-29T00:00:00', + RequiredDate: '2019-05-27T00:00:00', + ShippedDate: '2019-05-02T00:00:00', + ShipVia: 2, + Freight: 17.2200, + ShipName: 'Cactus Comidas para llevar', + ShipAddress: 'Cerrito 333', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10522, + CustomerID: 'LEHMS', + EmployeeID: 4, + OrderDate: '2019-04-30T00:00:00', + RequiredDate: '2019-05-28T00:00:00', + ShippedDate: '2019-05-06T00:00:00', + ShipVia: 1, + Freight: 45.3300, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10523, + CustomerID: 'SEVES', + EmployeeID: 7, + OrderDate: '2019-05-01T00:00:00', + RequiredDate: '2019-05-29T00:00:00', + ShippedDate: '2019-05-30T00:00:00', + ShipVia: 2, + Freight: 77.6300, + ShipName: 'Seven Seas Imports', + ShipAddress: '90 Wadhurst Rd.', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'OX15 4NB', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10524, + CustomerID: 'BERGS', + EmployeeID: 1, + OrderDate: '2019-05-01T00:00:00', + RequiredDate: '2019-05-29T00:00:00', + ShippedDate: '2019-05-07T00:00:00', + ShipVia: 2, + Freight: 244.7900, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10525, + CustomerID: 'BONAP', + EmployeeID: 1, + OrderDate: '2019-05-02T00:00:00', + RequiredDate: '2019-05-30T00:00:00', + ShippedDate: '2019-05-23T00:00:00', + ShipVia: 2, + Freight: 11.0600, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10526, + CustomerID: 'WARTH', + EmployeeID: 4, + OrderDate: '2019-05-05T00:00:00', + RequiredDate: '2019-06-02T00:00:00', + ShippedDate: '2019-05-15T00:00:00', + ShipVia: 2, + Freight: 58.5900, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10527, + CustomerID: 'QUICK', + EmployeeID: 7, + OrderDate: '2019-05-05T00:00:00', + RequiredDate: '2019-06-02T00:00:00', + ShippedDate: '2019-05-07T00:00:00', + ShipVia: 1, + Freight: 41.9000, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10528, + CustomerID: 'GREAL', + EmployeeID: 6, + OrderDate: '2019-05-06T00:00:00', + RequiredDate: '2019-05-20T00:00:00', + ShippedDate: '2019-05-09T00:00:00', + ShipVia: 2, + Freight: 3.3500, + ShipName: 'Great Lakes Food Market', + ShipAddress: '2732 Baker Blvd.', + ShipCity: 'Eugene', + ShipRegion: 'OR', + ShipPostalCode: '97403', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10529, + CustomerID: 'MAISD', + EmployeeID: 5, + OrderDate: '2019-05-07T00:00:00', + RequiredDate: '2019-06-04T00:00:00', + ShippedDate: '2019-05-09T00:00:00', + ShipVia: 2, + Freight: 66.6900, + ShipName: 'Maison Dewey', + ShipAddress: 'Rue Joseph-Bens 532', + ShipCity: 'Bruxelles', + ShipRegion: null, + ShipPostalCode: 'B-1180', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10530, + CustomerID: 'PICCO', + EmployeeID: 3, + OrderDate: '2019-05-08T00:00:00', + RequiredDate: '2019-06-05T00:00:00', + ShippedDate: '2019-05-12T00:00:00', + ShipVia: 2, + Freight: 339.2200, + ShipName: 'Piccolo und mehr', + ShipAddress: 'Geislweg 14', + ShipCity: 'Salzburg', + ShipRegion: null, + ShipPostalCode: '5020', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10531, + CustomerID: 'OCEAN', + EmployeeID: 7, + OrderDate: '2019-05-08T00:00:00', + RequiredDate: '2019-06-05T00:00:00', + ShippedDate: '2019-05-19T00:00:00', + ShipVia: 1, + Freight: 8.1200, + ShipName: 'Océano Atlántico Ltda.', + ShipAddress: 'Ing. Gustavo Moncada 8585 Piso 20-A', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10532, + CustomerID: 'EASTC', + EmployeeID: 7, + OrderDate: '2019-05-09T00:00:00', + RequiredDate: '2019-06-06T00:00:00', + ShippedDate: '2019-05-12T00:00:00', + ShipVia: 3, + Freight: 74.4600, + ShipName: 'Eastern Connection', + ShipAddress: '35 King George', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'WX3 6FW', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10533, + CustomerID: 'FOLKO', + EmployeeID: 8, + OrderDate: '2019-05-12T00:00:00', + RequiredDate: '2019-06-09T00:00:00', + ShippedDate: '2019-05-22T00:00:00', + ShipVia: 1, + Freight: 188.0400, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10534, + CustomerID: 'LEHMS', + EmployeeID: 8, + OrderDate: '2019-05-12T00:00:00', + RequiredDate: '2019-06-09T00:00:00', + ShippedDate: '2019-05-14T00:00:00', + ShipVia: 2, + Freight: 27.9400, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10535, + CustomerID: 'ANTON', + EmployeeID: 4, + OrderDate: '2019-05-13T00:00:00', + RequiredDate: '2019-06-10T00:00:00', + ShippedDate: '2019-05-21T00:00:00', + ShipVia: 1, + Freight: 15.6400, + ShipName: 'Antonio Moreno Taquería', + ShipAddress: 'Mataderos 2312', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05023', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10536, + CustomerID: 'LEHMS', + EmployeeID: 3, + OrderDate: '2019-05-14T00:00:00', + RequiredDate: '2019-06-11T00:00:00', + ShippedDate: '2019-06-06T00:00:00', + ShipVia: 2, + Freight: 58.8800, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10537, + CustomerID: 'RICSU', + EmployeeID: 1, + OrderDate: '2019-05-14T00:00:00', + RequiredDate: '2019-05-28T00:00:00', + ShippedDate: '2019-05-19T00:00:00', + ShipVia: 1, + Freight: 78.8500, + ShipName: 'Richter Supermarkt', + ShipAddress: 'Starenweg 5', + ShipCity: 'Genève', + ShipRegion: null, + ShipPostalCode: '1204', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10538, + CustomerID: 'BSBEV', + EmployeeID: 9, + OrderDate: '2019-05-15T00:00:00', + RequiredDate: '2019-06-12T00:00:00', + ShippedDate: '2019-05-16T00:00:00', + ShipVia: 3, + Freight: 4.8700, + ShipName: 'B\'s Beverages', + ShipAddress: 'Fauntleroy Circus', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'EC2 5NT', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10539, + CustomerID: 'BSBEV', + EmployeeID: 6, + OrderDate: '2019-05-16T00:00:00', + RequiredDate: '2019-06-13T00:00:00', + ShippedDate: '2019-05-23T00:00:00', + ShipVia: 3, + Freight: 12.3600, + ShipName: 'B\'s Beverages', + ShipAddress: 'Fauntleroy Circus', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'EC2 5NT', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10540, + CustomerID: 'QUICK', + EmployeeID: 3, + OrderDate: '2019-05-19T00:00:00', + RequiredDate: '2019-06-16T00:00:00', + ShippedDate: '2019-06-13T00:00:00', + ShipVia: 3, + Freight: 1007.6400, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10541, + CustomerID: 'HANAR', + EmployeeID: 2, + OrderDate: '2019-05-19T00:00:00', + RequiredDate: '2019-06-16T00:00:00', + ShippedDate: '2019-05-29T00:00:00', + ShipVia: 1, + Freight: 68.6500, + ShipName: 'Hanari Carnes', + ShipAddress: 'Rua do Paço, 67', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '05454-876', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10542, + CustomerID: 'KOENE', + EmployeeID: 1, + OrderDate: '2019-05-20T00:00:00', + RequiredDate: '2019-06-17T00:00:00', + ShippedDate: '2019-05-26T00:00:00', + ShipVia: 3, + Freight: 10.9500, + ShipName: 'Königlich Essen', + ShipAddress: 'Maubelstr. 90', + ShipCity: 'Brandenburg', + ShipRegion: null, + ShipPostalCode: '14776', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10543, + CustomerID: 'LILAS', + EmployeeID: 8, + OrderDate: '2019-05-21T00:00:00', + RequiredDate: '2019-06-18T00:00:00', + ShippedDate: '2019-05-23T00:00:00', + ShipVia: 2, + Freight: 48.1700, + ShipName: 'LILA-Supermercado', + ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', + ShipCity: 'Barquisimeto', + ShipRegion: 'Lara', + ShipPostalCode: '3508', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10544, + CustomerID: 'LONEP', + EmployeeID: 4, + OrderDate: '2019-05-21T00:00:00', + RequiredDate: '2019-06-18T00:00:00', + ShippedDate: '2019-05-30T00:00:00', + ShipVia: 1, + Freight: 24.9100, + ShipName: 'Lonesome Pine Restaurant', + ShipAddress: '89 Chiaroscuro Rd.', + ShipCity: 'Portland', + ShipRegion: 'OR', + ShipPostalCode: '97219', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10545, + CustomerID: 'LAZYK', + EmployeeID: 8, + OrderDate: '2019-05-22T00:00:00', + RequiredDate: '2019-06-19T00:00:00', + ShippedDate: '2019-06-26T00:00:00', + ShipVia: 2, + Freight: 11.9200, + ShipName: 'Lazy K Kountry Store', + ShipAddress: '12 Orchestra Terrace', + ShipCity: 'Walla Walla', + ShipRegion: 'WA', + ShipPostalCode: '99362', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10546, + CustomerID: 'VICTE', + EmployeeID: 1, + OrderDate: '2019-05-23T00:00:00', + RequiredDate: '2019-06-20T00:00:00', + ShippedDate: '2019-05-27T00:00:00', + ShipVia: 3, + Freight: 194.7200, + ShipName: 'Victuailles en stock', + ShipAddress: '2, rue du Commerce', + ShipCity: 'Lyon', + ShipRegion: null, + ShipPostalCode: '69004', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10547, + CustomerID: 'SEVES', + EmployeeID: 3, + OrderDate: '2019-05-23T00:00:00', + RequiredDate: '2019-06-20T00:00:00', + ShippedDate: '2019-06-02T00:00:00', + ShipVia: 2, + Freight: 178.4300, + ShipName: 'Seven Seas Imports', + ShipAddress: '90 Wadhurst Rd.', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'OX15 4NB', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10548, + CustomerID: 'TOMSP', + EmployeeID: 3, + OrderDate: '2019-05-26T00:00:00', + RequiredDate: '2019-06-23T00:00:00', + ShippedDate: '2019-06-02T00:00:00', + ShipVia: 2, + Freight: 1.4300, + ShipName: 'Toms Spezialitäten', + ShipAddress: 'Luisenstr. 48', + ShipCity: 'Münster', + ShipRegion: null, + ShipPostalCode: '44087', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10549, + CustomerID: 'QUICK', + EmployeeID: 5, + OrderDate: '2019-05-27T00:00:00', + RequiredDate: '2019-06-10T00:00:00', + ShippedDate: '2019-05-30T00:00:00', + ShipVia: 1, + Freight: 171.2400, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10550, + CustomerID: 'GODOS', + EmployeeID: 7, + OrderDate: '2019-05-28T00:00:00', + RequiredDate: '2019-06-25T00:00:00', + ShippedDate: '2019-06-06T00:00:00', + ShipVia: 3, + Freight: 4.3200, + ShipName: 'Godos Cocina Típica', + ShipAddress: 'C/ Romero, 33', + ShipCity: 'Sevilla', + ShipRegion: null, + ShipPostalCode: '41101', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10551, + CustomerID: 'FURIB', + EmployeeID: 4, + OrderDate: '2019-05-28T00:00:00', + RequiredDate: '2019-07-09T00:00:00', + ShippedDate: '2019-06-06T00:00:00', + ShipVia: 3, + Freight: 72.9500, + ShipName: 'Furia Bacalhau e Frutos do Mar', + ShipAddress: 'Jardim das rosas n. 32', + ShipCity: 'Lisboa', + ShipRegion: null, + ShipPostalCode: '1675', + ShipCountry: 'Portugal', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10552, + CustomerID: 'HILAA', + EmployeeID: 2, + OrderDate: '2019-05-29T00:00:00', + RequiredDate: '2019-06-26T00:00:00', + ShippedDate: '2019-06-05T00:00:00', + ShipVia: 1, + Freight: 83.2200, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10553, + CustomerID: 'WARTH', + EmployeeID: 2, + OrderDate: '2019-05-30T00:00:00', + RequiredDate: '2019-06-27T00:00:00', + ShippedDate: '2019-06-03T00:00:00', + ShipVia: 2, + Freight: 149.4900, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10554, + CustomerID: 'OTTIK', + EmployeeID: 4, + OrderDate: '2019-05-30T00:00:00', + RequiredDate: '2019-06-27T00:00:00', + ShippedDate: '2019-06-05T00:00:00', + ShipVia: 3, + Freight: 120.9700, + ShipName: 'Ottilies Käseladen', + ShipAddress: 'Mehrheimerstr. 369', + ShipCity: 'Köln', + ShipRegion: null, + ShipPostalCode: '50739', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10555, + CustomerID: 'SAVEA', + EmployeeID: 6, + OrderDate: '2019-06-02T00:00:00', + RequiredDate: '2019-06-30T00:00:00', + ShippedDate: '2019-06-04T00:00:00', + ShipVia: 3, + Freight: 252.4900, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10556, + CustomerID: 'SIMOB', + EmployeeID: 2, + OrderDate: '2019-06-03T00:00:00', + RequiredDate: '2019-07-15T00:00:00', + ShippedDate: '2019-06-13T00:00:00', + ShipVia: 1, + Freight: 9.8000, + ShipName: 'Simons bistro', + ShipAddress: 'Vinbæltet 34', + ShipCity: 'Kobenhavn', + ShipRegion: null, + ShipPostalCode: '1734', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10557, + CustomerID: 'LEHMS', + EmployeeID: 9, + OrderDate: '2019-06-03T00:00:00', + RequiredDate: '2019-06-17T00:00:00', + ShippedDate: '2019-06-06T00:00:00', + ShipVia: 2, + Freight: 96.7200, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10558, + CustomerID: 'AROUT', + EmployeeID: 1, + OrderDate: '2019-06-04T00:00:00', + RequiredDate: '2019-07-02T00:00:00', + ShippedDate: '2019-06-10T00:00:00', + ShipVia: 2, + Freight: 72.9700, + ShipName: 'Around the Horn', + ShipAddress: 'Brook Farm Stratford St. Mary', + ShipCity: 'Colchester', + ShipRegion: 'Essex', + ShipPostalCode: 'CO7 6JX', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10559, + CustomerID: 'BLONP', + EmployeeID: 6, + OrderDate: '2019-06-05T00:00:00', + RequiredDate: '2019-07-03T00:00:00', + ShippedDate: '2019-06-13T00:00:00', + ShipVia: 1, + Freight: 8.0500, + ShipName: 'Blondel père et fils', + ShipAddress: '24, place Kléber', + ShipCity: 'Strasbourg', + ShipRegion: null, + ShipPostalCode: '67000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10560, + CustomerID: 'FRANK', + EmployeeID: 8, + OrderDate: '2019-06-06T00:00:00', + RequiredDate: '2019-07-04T00:00:00', + ShippedDate: '2019-06-09T00:00:00', + ShipVia: 1, + Freight: 36.6500, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10561, + CustomerID: 'FOLKO', + EmployeeID: 2, + OrderDate: '2019-06-06T00:00:00', + RequiredDate: '2019-07-04T00:00:00', + ShippedDate: '2019-06-09T00:00:00', + ShipVia: 2, + Freight: 242.2100, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10562, + CustomerID: 'REGGC', + EmployeeID: 1, + OrderDate: '2019-06-09T00:00:00', + RequiredDate: '2019-07-07T00:00:00', + ShippedDate: '2019-06-12T00:00:00', + ShipVia: 1, + Freight: 22.9500, + ShipName: 'Reggiani Caseifici', + ShipAddress: 'Strada Provinciale 124', + ShipCity: 'Reggio Emilia', + ShipRegion: null, + ShipPostalCode: '42100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10563, + CustomerID: 'RICAR', + EmployeeID: 2, + OrderDate: '2019-06-10T00:00:00', + RequiredDate: '2019-07-22T00:00:00', + ShippedDate: '2019-06-24T00:00:00', + ShipVia: 2, + Freight: 60.4300, + ShipName: 'Ricardo Adocicados', + ShipAddress: 'Av. Copacabana, 267', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-890', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10564, + CustomerID: 'RATTC', + EmployeeID: 4, + OrderDate: '2019-06-10T00:00:00', + RequiredDate: '2019-07-08T00:00:00', + ShippedDate: '2019-06-16T00:00:00', + ShipVia: 3, + Freight: 13.7500, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10565, + CustomerID: 'MEREP', + EmployeeID: 8, + OrderDate: '2019-06-11T00:00:00', + RequiredDate: '2019-07-09T00:00:00', + ShippedDate: '2019-06-18T00:00:00', + ShipVia: 2, + Freight: 7.1500, + ShipName: 'Mère Paillarde', + ShipAddress: '43 rue St. Laurent', + ShipCity: 'Montréal', + ShipRegion: 'Québec', + ShipPostalCode: 'H1J 1C3', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10566, + CustomerID: 'BLONP', + EmployeeID: 9, + OrderDate: '2019-06-12T00:00:00', + RequiredDate: '2019-07-10T00:00:00', + ShippedDate: '2019-06-18T00:00:00', + ShipVia: 1, + Freight: 88.4000, + ShipName: 'Blondel père et fils', + ShipAddress: '24, place Kléber', + ShipCity: 'Strasbourg', + ShipRegion: null, + ShipPostalCode: '67000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10567, + CustomerID: 'HUNGO', + EmployeeID: 1, + OrderDate: '2019-06-12T00:00:00', + RequiredDate: '2019-07-10T00:00:00', + ShippedDate: '2019-06-17T00:00:00', + ShipVia: 1, + Freight: 33.9700, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10568, + CustomerID: 'GALED', + EmployeeID: 3, + OrderDate: '2019-06-13T00:00:00', + RequiredDate: '2019-07-11T00:00:00', + ShippedDate: '2019-07-09T00:00:00', + ShipVia: 3, + Freight: 6.5400, + ShipName: 'Galería del gastronómo', + ShipAddress: 'Rambla de Cataluña, 23', + ShipCity: 'Barcelona', + ShipRegion: null, + ShipPostalCode: '8022', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10569, + CustomerID: 'RATTC', + EmployeeID: 5, + OrderDate: '2019-06-16T00:00:00', + RequiredDate: '2019-07-14T00:00:00', + ShippedDate: '2019-07-11T00:00:00', + ShipVia: 1, + Freight: 58.9800, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10570, + CustomerID: 'MEREP', + EmployeeID: 3, + OrderDate: '2019-06-17T00:00:00', + RequiredDate: '2019-07-15T00:00:00', + ShippedDate: '2019-06-19T00:00:00', + ShipVia: 3, + Freight: 188.9900, + ShipName: 'Mère Paillarde', + ShipAddress: '43 rue St. Laurent', + ShipCity: 'Montréal', + ShipRegion: 'Québec', + ShipPostalCode: 'H1J 1C3', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10571, + CustomerID: 'ERNSH', + EmployeeID: 8, + OrderDate: '2019-06-17T00:00:00', + RequiredDate: '2019-07-29T00:00:00', + ShippedDate: '2019-07-04T00:00:00', + ShipVia: 3, + Freight: 26.0600, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10572, + CustomerID: 'BERGS', + EmployeeID: 3, + OrderDate: '2019-06-18T00:00:00', + RequiredDate: '2019-07-16T00:00:00', + ShippedDate: '2019-06-25T00:00:00', + ShipVia: 2, + Freight: 116.4300, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10573, + CustomerID: 'ANTON', + EmployeeID: 7, + OrderDate: '2019-06-19T00:00:00', + RequiredDate: '2019-07-17T00:00:00', + ShippedDate: '2019-06-20T00:00:00', + ShipVia: 3, + Freight: 84.8400, + ShipName: 'Antonio Moreno Taquería', + ShipAddress: 'Mataderos 2312', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05023', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10574, + CustomerID: 'TRAIH', + EmployeeID: 4, + OrderDate: '2019-06-19T00:00:00', + RequiredDate: '2019-07-17T00:00:00', + ShippedDate: '2019-06-30T00:00:00', + ShipVia: 2, + Freight: 37.6000, + ShipName: 'Trail\'s Head Gourmet Provisioners', + ShipAddress: '722 DaVinci Blvd.', + ShipCity: 'Kirkland', + ShipRegion: 'WA', + ShipPostalCode: '98034', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10575, + CustomerID: 'MORGK', + EmployeeID: 5, + OrderDate: '2019-06-20T00:00:00', + RequiredDate: '2019-07-04T00:00:00', + ShippedDate: '2019-06-30T00:00:00', + ShipVia: 1, + Freight: 127.3400, + ShipName: 'Morgenstern Gesundkost', + ShipAddress: 'Heerstr. 22', + ShipCity: 'Leipzig', + ShipRegion: null, + ShipPostalCode: '04179', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10576, + CustomerID: 'TORTU', + EmployeeID: 3, + OrderDate: '2019-06-23T00:00:00', + RequiredDate: '2019-07-07T00:00:00', + ShippedDate: '2019-06-30T00:00:00', + ShipVia: 3, + Freight: 18.5600, + ShipName: 'Tortuga Restaurante', + ShipAddress: 'Avda. Azteca 123', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10577, + CustomerID: 'TRAIH', + EmployeeID: 9, + OrderDate: '2019-06-23T00:00:00', + RequiredDate: '2019-08-04T00:00:00', + ShippedDate: '2019-06-30T00:00:00', + ShipVia: 2, + Freight: 25.4100, + ShipName: 'Trail\'s Head Gourmet Provisioners', + ShipAddress: '722 DaVinci Blvd.', + ShipCity: 'Kirkland', + ShipRegion: 'WA', + ShipPostalCode: '98034', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10578, + CustomerID: 'BSBEV', + EmployeeID: 4, + OrderDate: '2019-06-24T00:00:00', + RequiredDate: '2019-07-22T00:00:00', + ShippedDate: '2019-07-25T00:00:00', + ShipVia: 3, + Freight: 29.6000, + ShipName: 'B\'s Beverages', + ShipAddress: 'Fauntleroy Circus', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'EC2 5NT', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10579, + CustomerID: 'LETSS', + EmployeeID: 1, + OrderDate: '2019-06-25T00:00:00', + RequiredDate: '2019-07-23T00:00:00', + ShippedDate: '2019-07-04T00:00:00', + ShipVia: 2, + Freight: 13.7300, + ShipName: 'Let\'s Stop N Shop', + ShipAddress: '87 Polk St. Suite 5', + ShipCity: 'San Francisco', + ShipRegion: 'CA', + ShipPostalCode: '94117', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10580, + CustomerID: 'OTTIK', + EmployeeID: 4, + OrderDate: '2019-06-26T00:00:00', + RequiredDate: '2019-07-24T00:00:00', + ShippedDate: '2019-07-01T00:00:00', + ShipVia: 3, + Freight: 75.8900, + ShipName: 'Ottilies Käseladen', + ShipAddress: 'Mehrheimerstr. 369', + ShipCity: 'Köln', + ShipRegion: null, + ShipPostalCode: '50739', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10581, + CustomerID: 'FAMIA', + EmployeeID: 3, + OrderDate: '2019-06-26T00:00:00', + RequiredDate: '2019-07-24T00:00:00', + ShippedDate: '2019-07-02T00:00:00', + ShipVia: 1, + Freight: 3.0100, + ShipName: 'Familia Arquibaldo', + ShipAddress: 'Rua Orós, 92', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05442-030', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10582, + CustomerID: 'BLAUS', + EmployeeID: 3, + OrderDate: '2019-06-27T00:00:00', + RequiredDate: '2019-07-25T00:00:00', + ShippedDate: '2019-07-14T00:00:00', + ShipVia: 2, + Freight: 27.7100, + ShipName: 'Blauer See Delikatessen', + ShipAddress: 'Forsterstr. 57', + ShipCity: 'Mannheim', + ShipRegion: null, + ShipPostalCode: '68306', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10583, + CustomerID: 'WARTH', + EmployeeID: 2, + OrderDate: '2019-06-30T00:00:00', + RequiredDate: '2019-07-28T00:00:00', + ShippedDate: '2019-07-04T00:00:00', + ShipVia: 2, + Freight: 7.2800, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10584, + CustomerID: 'BLONP', + EmployeeID: 4, + OrderDate: '2019-06-30T00:00:00', + RequiredDate: '2019-07-28T00:00:00', + ShippedDate: '2019-07-04T00:00:00', + ShipVia: 1, + Freight: 59.1400, + ShipName: 'Blondel père et fils', + ShipAddress: '24, place Kléber', + ShipCity: 'Strasbourg', + ShipRegion: null, + ShipPostalCode: '67000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10585, + CustomerID: 'WELLI', + EmployeeID: 7, + OrderDate: '2019-07-01T00:00:00', + RequiredDate: '2019-07-29T00:00:00', + ShippedDate: '2019-07-10T00:00:00', + ShipVia: 1, + Freight: 13.4100, + ShipName: 'Wellington Importadora', + ShipAddress: 'Rua do Mercado, 12', + ShipCity: 'Resende', + ShipRegion: 'SP', + ShipPostalCode: '08737-363', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10586, + CustomerID: 'REGGC', + EmployeeID: 9, + OrderDate: '2019-07-02T00:00:00', + RequiredDate: '2019-07-30T00:00:00', + ShippedDate: '2019-07-09T00:00:00', + ShipVia: 1, + Freight: 0.4800, + ShipName: 'Reggiani Caseifici', + ShipAddress: 'Strada Provinciale 124', + ShipCity: 'Reggio Emilia', + ShipRegion: null, + ShipPostalCode: '42100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10587, + CustomerID: 'QUEDE', + EmployeeID: 1, + OrderDate: '2019-07-02T00:00:00', + RequiredDate: '2019-07-30T00:00:00', + ShippedDate: '2019-07-09T00:00:00', + ShipVia: 1, + Freight: 62.5200, + ShipName: 'Que Delícia', + ShipAddress: 'Rua da Panificadora, 12', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-673', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10588, + CustomerID: 'QUICK', + EmployeeID: 2, + OrderDate: '2019-07-03T00:00:00', + RequiredDate: '2019-07-31T00:00:00', + ShippedDate: '2019-07-10T00:00:00', + ShipVia: 3, + Freight: 194.6700, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10589, + CustomerID: 'GREAL', + EmployeeID: 8, + OrderDate: '2019-07-04T00:00:00', + RequiredDate: '2019-08-01T00:00:00', + ShippedDate: '2019-07-14T00:00:00', + ShipVia: 2, + Freight: 4.4200, + ShipName: 'Great Lakes Food Market', + ShipAddress: '2732 Baker Blvd.', + ShipCity: 'Eugene', + ShipRegion: 'OR', + ShipPostalCode: '97403', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10590, + CustomerID: 'MEREP', + EmployeeID: 4, + OrderDate: '2019-07-07T00:00:00', + RequiredDate: '2019-08-04T00:00:00', + ShippedDate: '2019-07-14T00:00:00', + ShipVia: 3, + Freight: 44.7700, + ShipName: 'Mère Paillarde', + ShipAddress: '43 rue St. Laurent', + ShipCity: 'Montréal', + ShipRegion: 'Québec', + ShipPostalCode: 'H1J 1C3', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10591, + CustomerID: 'VAFFE', + EmployeeID: 1, + OrderDate: '2019-07-07T00:00:00', + RequiredDate: '2019-07-21T00:00:00', + ShippedDate: '2019-07-16T00:00:00', + ShipVia: 1, + Freight: 55.9200, + ShipName: 'Vaffeljernet', + ShipAddress: 'Smagsloget 45', + ShipCity: 'Århus', + ShipRegion: null, + ShipPostalCode: '8200', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10592, + CustomerID: 'LEHMS', + EmployeeID: 3, + OrderDate: '2019-07-08T00:00:00', + RequiredDate: '2019-08-05T00:00:00', + ShippedDate: '2019-07-16T00:00:00', + ShipVia: 1, + Freight: 32.1000, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10593, + CustomerID: 'LEHMS', + EmployeeID: 7, + OrderDate: '2019-07-09T00:00:00', + RequiredDate: '2019-08-06T00:00:00', + ShippedDate: '2019-08-13T00:00:00', + ShipVia: 2, + Freight: 174.2000, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10594, + CustomerID: 'OLDWO', + EmployeeID: 3, + OrderDate: '2019-07-09T00:00:00', + RequiredDate: '2019-08-06T00:00:00', + ShippedDate: '2019-07-16T00:00:00', + ShipVia: 2, + Freight: 5.2400, + ShipName: 'Old World Delicatessen', + ShipAddress: '2743 Bering St.', + ShipCity: 'Anchorage', + ShipRegion: 'AK', + ShipPostalCode: '99508', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10595, + CustomerID: 'ERNSH', + EmployeeID: 2, + OrderDate: '2019-07-10T00:00:00', + RequiredDate: '2019-08-07T00:00:00', + ShippedDate: '2019-07-14T00:00:00', + ShipVia: 1, + Freight: 96.7800, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10596, + CustomerID: 'WHITC', + EmployeeID: 8, + OrderDate: '2019-07-11T00:00:00', + RequiredDate: '2019-08-08T00:00:00', + ShippedDate: '2019-08-12T00:00:00', + ShipVia: 1, + Freight: 16.3400, + ShipName: 'White Clover Markets', + ShipAddress: '1029 - 12th Ave. S.', + ShipCity: 'Seattle', + ShipRegion: 'WA', + ShipPostalCode: '98124', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10597, + CustomerID: 'PICCO', + EmployeeID: 7, + OrderDate: '2019-07-11T00:00:00', + RequiredDate: '2019-08-08T00:00:00', + ShippedDate: '2019-07-18T00:00:00', + ShipVia: 3, + Freight: 35.1200, + ShipName: 'Piccolo und mehr', + ShipAddress: 'Geislweg 14', + ShipCity: 'Salzburg', + ShipRegion: null, + ShipPostalCode: '5020', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10598, + CustomerID: 'RATTC', + EmployeeID: 1, + OrderDate: '2019-07-14T00:00:00', + RequiredDate: '2019-08-11T00:00:00', + ShippedDate: '2019-07-18T00:00:00', + ShipVia: 3, + Freight: 44.4200, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10599, + CustomerID: 'BSBEV', + EmployeeID: 6, + OrderDate: '2019-07-15T00:00:00', + RequiredDate: '2019-08-26T00:00:00', + ShippedDate: '2019-07-21T00:00:00', + ShipVia: 3, + Freight: 29.9800, + ShipName: 'B\'s Beverages', + ShipAddress: 'Fauntleroy Circus', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'EC2 5NT', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10600, + CustomerID: 'HUNGC', + EmployeeID: 4, + OrderDate: '2019-07-16T00:00:00', + RequiredDate: '2019-08-13T00:00:00', + ShippedDate: '2019-07-21T00:00:00', + ShipVia: 1, + Freight: 45.1300, + ShipName: 'Hungry Coyote Import Store', + ShipAddress: 'City Center Plaza 516 Main St.', + ShipCity: 'Elgin', + ShipRegion: 'OR', + ShipPostalCode: '97827', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10601, + CustomerID: 'HILAA', + EmployeeID: 7, + OrderDate: '2019-07-16T00:00:00', + RequiredDate: '2019-08-27T00:00:00', + ShippedDate: '2019-07-22T00:00:00', + ShipVia: 1, + Freight: 58.3000, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10602, + CustomerID: 'VAFFE', + EmployeeID: 8, + OrderDate: '2019-07-17T00:00:00', + RequiredDate: '2019-08-14T00:00:00', + ShippedDate: '2019-07-22T00:00:00', + ShipVia: 2, + Freight: 2.9200, + ShipName: 'Vaffeljernet', + ShipAddress: 'Smagsloget 45', + ShipCity: 'Århus', + ShipRegion: null, + ShipPostalCode: '8200', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10603, + CustomerID: 'SAVEA', + EmployeeID: 8, + OrderDate: '2019-07-18T00:00:00', + RequiredDate: '2019-08-15T00:00:00', + ShippedDate: '2019-08-08T00:00:00', + ShipVia: 2, + Freight: 48.7700, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10604, + CustomerID: 'FURIB', + EmployeeID: 1, + OrderDate: '2019-07-18T00:00:00', + RequiredDate: '2019-08-15T00:00:00', + ShippedDate: '2019-07-29T00:00:00', + ShipVia: 1, + Freight: 7.4600, + ShipName: 'Furia Bacalhau e Frutos do Mar', + ShipAddress: 'Jardim das rosas n. 32', + ShipCity: 'Lisboa', + ShipRegion: null, + ShipPostalCode: '1675', + ShipCountry: 'Portugal', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10605, + CustomerID: 'MEREP', + EmployeeID: 1, + OrderDate: '2019-07-21T00:00:00', + RequiredDate: '2019-08-18T00:00:00', + ShippedDate: '2019-07-29T00:00:00', + ShipVia: 2, + Freight: 379.1300, + ShipName: 'Mère Paillarde', + ShipAddress: '43 rue St. Laurent', + ShipCity: 'Montréal', + ShipRegion: 'Québec', + ShipPostalCode: 'H1J 1C3', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10606, + CustomerID: 'TRADH', + EmployeeID: 4, + OrderDate: '2019-07-22T00:00:00', + RequiredDate: '2019-08-19T00:00:00', + ShippedDate: '2019-07-31T00:00:00', + ShipVia: 3, + Freight: 79.4000, + ShipName: 'Tradiçao Hipermercados', + ShipAddress: 'Av. Inês de Castro, 414', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05634-030', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10607, + CustomerID: 'SAVEA', + EmployeeID: 5, + OrderDate: '2019-07-22T00:00:00', + RequiredDate: '2019-08-19T00:00:00', + ShippedDate: '2019-07-25T00:00:00', + ShipVia: 1, + Freight: 200.2400, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10608, + CustomerID: 'TOMSP', + EmployeeID: 4, + OrderDate: '2019-07-23T00:00:00', + RequiredDate: '2019-08-20T00:00:00', + ShippedDate: '2019-08-01T00:00:00', + ShipVia: 2, + Freight: 27.7900, + ShipName: 'Toms Spezialitäten', + ShipAddress: 'Luisenstr. 48', + ShipCity: 'Münster', + ShipRegion: null, + ShipPostalCode: '44087', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10609, + CustomerID: 'DUMON', + EmployeeID: 7, + OrderDate: '2019-07-24T00:00:00', + RequiredDate: '2019-08-21T00:00:00', + ShippedDate: '2019-07-30T00:00:00', + ShipVia: 2, + Freight: 1.8500, + ShipName: 'Du monde entier', + ShipAddress: '67, rue des Cinquante Otages', + ShipCity: 'Nantes', + ShipRegion: null, + ShipPostalCode: '44000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10610, + CustomerID: 'LAMAI', + EmployeeID: 8, + OrderDate: '2019-07-25T00:00:00', + RequiredDate: '2019-08-22T00:00:00', + ShippedDate: '2019-08-06T00:00:00', + ShipVia: 1, + Freight: 26.7800, + ShipName: 'La maison d\'Asie', + ShipAddress: '1 rue Alsace-Lorraine', + ShipCity: 'Toulouse', + ShipRegion: null, + ShipPostalCode: '31000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10611, + CustomerID: 'WOLZA', + EmployeeID: 6, + OrderDate: '2019-07-25T00:00:00', + RequiredDate: '2019-08-22T00:00:00', + ShippedDate: '2019-08-01T00:00:00', + ShipVia: 2, + Freight: 80.6500, + ShipName: 'Wolski Zajazd', + ShipAddress: 'ul. Filtrowa 68', + ShipCity: 'Warszawa', + ShipRegion: null, + ShipPostalCode: '01-012', + ShipCountry: 'Poland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10612, + CustomerID: 'SAVEA', + EmployeeID: 1, + OrderDate: '2019-07-28T00:00:00', + RequiredDate: '2019-08-25T00:00:00', + ShippedDate: '2019-08-01T00:00:00', + ShipVia: 2, + Freight: 544.0800, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10613, + CustomerID: 'HILAA', + EmployeeID: 4, + OrderDate: '2019-07-29T00:00:00', + RequiredDate: '2019-08-26T00:00:00', + ShippedDate: '2019-08-01T00:00:00', + ShipVia: 2, + Freight: 8.1100, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10614, + CustomerID: 'BLAUS', + EmployeeID: 8, + OrderDate: '2019-07-29T00:00:00', + RequiredDate: '2019-08-26T00:00:00', + ShippedDate: '2019-08-01T00:00:00', + ShipVia: 3, + Freight: 1.9300, + ShipName: 'Blauer See Delikatessen', + ShipAddress: 'Forsterstr. 57', + ShipCity: 'Mannheim', + ShipRegion: null, + ShipPostalCode: '68306', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10615, + CustomerID: 'WILMK', + EmployeeID: 2, + OrderDate: '2019-07-30T00:00:00', + RequiredDate: '2019-08-27T00:00:00', + ShippedDate: '2019-08-06T00:00:00', + ShipVia: 3, + Freight: 0.7500, + ShipName: 'Wilman Kala', + ShipAddress: 'Keskuskatu 45', + ShipCity: 'Helsinki', + ShipRegion: null, + ShipPostalCode: '21240', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10616, + CustomerID: 'GREAL', + EmployeeID: 1, + OrderDate: '2019-07-31T00:00:00', + RequiredDate: '2019-08-28T00:00:00', + ShippedDate: '2019-08-05T00:00:00', + ShipVia: 2, + Freight: 116.5300, + ShipName: 'Great Lakes Food Market', + ShipAddress: '2732 Baker Blvd.', + ShipCity: 'Eugene', + ShipRegion: 'OR', + ShipPostalCode: '97403', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10617, + CustomerID: 'GREAL', + EmployeeID: 4, + OrderDate: '2019-07-31T00:00:00', + RequiredDate: '2019-08-28T00:00:00', + ShippedDate: '2019-08-04T00:00:00', + ShipVia: 2, + Freight: 18.5300, + ShipName: 'Great Lakes Food Market', + ShipAddress: '2732 Baker Blvd.', + ShipCity: 'Eugene', + ShipRegion: 'OR', + ShipPostalCode: '97403', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10618, + CustomerID: 'MEREP', + EmployeeID: 1, + OrderDate: '2019-08-01T00:00:00', + RequiredDate: '2019-09-12T00:00:00', + ShippedDate: '2019-08-08T00:00:00', + ShipVia: 1, + Freight: 154.6800, + ShipName: 'Mère Paillarde', + ShipAddress: '43 rue St. Laurent', + ShipCity: 'Montréal', + ShipRegion: 'Québec', + ShipPostalCode: 'H1J 1C3', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10619, + CustomerID: 'MEREP', + EmployeeID: 3, + OrderDate: '2019-08-04T00:00:00', + RequiredDate: '2019-09-01T00:00:00', + ShippedDate: '2019-08-07T00:00:00', + ShipVia: 3, + Freight: 91.0500, + ShipName: 'Mère Paillarde', + ShipAddress: '43 rue St. Laurent', + ShipCity: 'Montréal', + ShipRegion: 'Québec', + ShipPostalCode: 'H1J 1C3', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10620, + CustomerID: 'LAUGB', + EmployeeID: 2, + OrderDate: '2019-08-05T00:00:00', + RequiredDate: '2019-09-02T00:00:00', + ShippedDate: '2019-08-14T00:00:00', + ShipVia: 3, + Freight: 0.9400, + ShipName: 'Laughing Bacchus Wine Cellars', + ShipAddress: '2319 Elm St.', + ShipCity: 'Vancouver', + ShipRegion: 'BC', + ShipPostalCode: 'V3F 2K1', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10621, + CustomerID: 'ISLAT', + EmployeeID: 4, + OrderDate: '2019-08-05T00:00:00', + RequiredDate: '2019-09-02T00:00:00', + ShippedDate: '2019-08-11T00:00:00', + ShipVia: 2, + Freight: 23.7300, + ShipName: 'Island Trading', + ShipAddress: 'Garden House Crowther Way', + ShipCity: 'Cowes', + ShipRegion: 'Isle of Wight', + ShipPostalCode: 'PO31 7PJ', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10622, + CustomerID: 'RICAR', + EmployeeID: 4, + OrderDate: '2019-08-06T00:00:00', + RequiredDate: '2019-09-03T00:00:00', + ShippedDate: '2019-08-11T00:00:00', + ShipVia: 3, + Freight: 50.9700, + ShipName: 'Ricardo Adocicados', + ShipAddress: 'Av. Copacabana, 267', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-890', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10623, + CustomerID: 'FRANK', + EmployeeID: 8, + OrderDate: '2019-08-07T00:00:00', + RequiredDate: '2019-09-04T00:00:00', + ShippedDate: '2019-08-12T00:00:00', + ShipVia: 2, + Freight: 97.1800, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10624, + CustomerID: 'THECR', + EmployeeID: 4, + OrderDate: '2019-08-07T00:00:00', + RequiredDate: '2019-09-04T00:00:00', + ShippedDate: '2019-08-19T00:00:00', + ShipVia: 2, + Freight: 94.8000, + ShipName: 'The Cracker Box', + ShipAddress: '55 Grizzly Peak Rd.', + ShipCity: 'Butte', + ShipRegion: 'MT', + ShipPostalCode: '59801', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10625, + CustomerID: 'ANATR', + EmployeeID: 3, + OrderDate: '2019-08-08T00:00:00', + RequiredDate: '2019-09-05T00:00:00', + ShippedDate: '2019-08-14T00:00:00', + ShipVia: 1, + Freight: 43.9000, + ShipName: 'Ana Trujillo Emparedados y helados', + ShipAddress: 'Avda. de la Constitución 2222', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05021', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10626, + CustomerID: 'BERGS', + EmployeeID: 1, + OrderDate: '2019-08-11T00:00:00', + RequiredDate: '2019-09-08T00:00:00', + ShippedDate: '2019-08-20T00:00:00', + ShipVia: 2, + Freight: 138.6900, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10627, + CustomerID: 'SAVEA', + EmployeeID: 8, + OrderDate: '2019-08-11T00:00:00', + RequiredDate: '2019-09-22T00:00:00', + ShippedDate: '2019-08-21T00:00:00', + ShipVia: 3, + Freight: 107.4600, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10628, + CustomerID: 'BLONP', + EmployeeID: 4, + OrderDate: '2019-08-12T00:00:00', + RequiredDate: '2019-09-09T00:00:00', + ShippedDate: '2019-08-20T00:00:00', + ShipVia: 3, + Freight: 30.3600, + ShipName: 'Blondel père et fils', + ShipAddress: '24, place Kléber', + ShipCity: 'Strasbourg', + ShipRegion: null, + ShipPostalCode: '67000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10629, + CustomerID: 'GODOS', + EmployeeID: 4, + OrderDate: '2019-08-12T00:00:00', + RequiredDate: '2019-09-09T00:00:00', + ShippedDate: '2019-08-20T00:00:00', + ShipVia: 3, + Freight: 85.4600, + ShipName: 'Godos Cocina Típica', + ShipAddress: 'C/ Romero, 33', + ShipCity: 'Sevilla', + ShipRegion: null, + ShipPostalCode: '41101', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10630, + CustomerID: 'KOENE', + EmployeeID: 1, + OrderDate: '2019-08-13T00:00:00', + RequiredDate: '2019-09-10T00:00:00', + ShippedDate: '2019-08-19T00:00:00', + ShipVia: 2, + Freight: 32.3500, + ShipName: 'Königlich Essen', + ShipAddress: 'Maubelstr. 90', + ShipCity: 'Brandenburg', + ShipRegion: null, + ShipPostalCode: '14776', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10631, + CustomerID: 'LAMAI', + EmployeeID: 8, + OrderDate: '2019-08-14T00:00:00', + RequiredDate: '2019-09-11T00:00:00', + ShippedDate: '2019-08-15T00:00:00', + ShipVia: 1, + Freight: 0.8700, + ShipName: 'La maison d\'Asie', + ShipAddress: '1 rue Alsace-Lorraine', + ShipCity: 'Toulouse', + ShipRegion: null, + ShipPostalCode: '31000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10632, + CustomerID: 'WANDK', + EmployeeID: 8, + OrderDate: '2019-08-14T00:00:00', + RequiredDate: '2019-09-11T00:00:00', + ShippedDate: '2019-08-19T00:00:00', + ShipVia: 1, + Freight: 41.3800, + ShipName: 'Die Wandernde Kuh', + ShipAddress: 'Adenauerallee 900', + ShipCity: 'Stuttgart', + ShipRegion: null, + ShipPostalCode: '70563', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10633, + CustomerID: 'ERNSH', + EmployeeID: 7, + OrderDate: '2019-08-15T00:00:00', + RequiredDate: '2019-09-12T00:00:00', + ShippedDate: '2019-08-18T00:00:00', + ShipVia: 3, + Freight: 477.9000, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10634, + CustomerID: 'FOLIG', + EmployeeID: 4, + OrderDate: '2019-08-15T00:00:00', + RequiredDate: '2019-09-12T00:00:00', + ShippedDate: '2019-08-21T00:00:00', + ShipVia: 3, + Freight: 487.3800, + ShipName: 'Folies gourmandes', + ShipAddress: '184, chaussée de Tournai', + ShipCity: 'Lille', + ShipRegion: null, + ShipPostalCode: '59000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10635, + CustomerID: 'MAGAA', + EmployeeID: 8, + OrderDate: '2019-08-18T00:00:00', + RequiredDate: '2019-09-15T00:00:00', + ShippedDate: '2019-08-21T00:00:00', + ShipVia: 3, + Freight: 47.4600, + ShipName: 'Magazzini Alimentari Riuniti', + ShipAddress: 'Via Ludovico il Moro 22', + ShipCity: 'Bergamo', + ShipRegion: null, + ShipPostalCode: '24100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10636, + CustomerID: 'WARTH', + EmployeeID: 4, + OrderDate: '2019-08-19T00:00:00', + RequiredDate: '2019-09-16T00:00:00', + ShippedDate: '2019-08-26T00:00:00', + ShipVia: 1, + Freight: 1.1500, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10637, + CustomerID: 'QUEEN', + EmployeeID: 6, + OrderDate: '2019-08-19T00:00:00', + RequiredDate: '2019-09-16T00:00:00', + ShippedDate: '2019-08-26T00:00:00', + ShipVia: 1, + Freight: 201.2900, + ShipName: 'Queen Cozinha', + ShipAddress: 'Alameda dos Canàrios, 891', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05487-020', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10638, + CustomerID: 'LINOD', + EmployeeID: 3, + OrderDate: '2019-08-20T00:00:00', + RequiredDate: '2019-09-17T00:00:00', + ShippedDate: '2019-09-01T00:00:00', + ShipVia: 1, + Freight: 158.4400, + ShipName: 'LINO-Delicateses', + ShipAddress: 'Ave. 5 de Mayo Porlamar', + ShipCity: 'I. de Margarita', + ShipRegion: 'Nueva Esparta', + ShipPostalCode: '4980', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10639, + CustomerID: 'SANTG', + EmployeeID: 7, + OrderDate: '2019-08-20T00:00:00', + RequiredDate: '2019-09-17T00:00:00', + ShippedDate: '2019-08-27T00:00:00', + ShipVia: 3, + Freight: 38.6400, + ShipName: 'Santé Gourmet', + ShipAddress: 'Erling Skakkes gate 78', + ShipCity: 'Stavern', + ShipRegion: null, + ShipPostalCode: '4110', + ShipCountry: 'Norway', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10640, + CustomerID: 'WANDK', + EmployeeID: 4, + OrderDate: '2019-08-21T00:00:00', + RequiredDate: '2019-09-18T00:00:00', + ShippedDate: '2019-08-28T00:00:00', + ShipVia: 1, + Freight: 23.5500, + ShipName: 'Die Wandernde Kuh', + ShipAddress: 'Adenauerallee 900', + ShipCity: 'Stuttgart', + ShipRegion: null, + ShipPostalCode: '70563', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10641, + CustomerID: 'HILAA', + EmployeeID: 4, + OrderDate: '2019-08-22T00:00:00', + RequiredDate: '2019-09-19T00:00:00', + ShippedDate: '2019-08-26T00:00:00', + ShipVia: 2, + Freight: 179.6100, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10642, + CustomerID: 'SIMOB', + EmployeeID: 7, + OrderDate: '2019-08-22T00:00:00', + RequiredDate: '2019-09-19T00:00:00', + ShippedDate: '2019-09-05T00:00:00', + ShipVia: 3, + Freight: 41.8900, + ShipName: 'Simons bistro', + ShipAddress: 'Vinbæltet 34', + ShipCity: 'Kobenhavn', + ShipRegion: null, + ShipPostalCode: '1734', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10643, + CustomerID: 'ALFKI', + EmployeeID: 6, + OrderDate: '2019-08-25T00:00:00', + RequiredDate: '2019-09-22T00:00:00', + ShippedDate: '2019-09-02T00:00:00', + ShipVia: 1, + Freight: 29.4600, + ShipName: 'Alfreds Futterkiste', + ShipAddress: 'Obere Str. 57', + ShipCity: 'Berlin', + ShipRegion: null, + ShipPostalCode: '12209', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10644, + CustomerID: 'WELLI', + EmployeeID: 3, + OrderDate: '2019-08-25T00:00:00', + RequiredDate: '2019-09-22T00:00:00', + ShippedDate: '2019-09-01T00:00:00', + ShipVia: 2, + Freight: 0.1400, + ShipName: 'Wellington Importadora', + ShipAddress: 'Rua do Mercado, 12', + ShipCity: 'Resende', + ShipRegion: 'SP', + ShipPostalCode: '08737-363', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10645, + CustomerID: 'HANAR', + EmployeeID: 4, + OrderDate: '2019-08-26T00:00:00', + RequiredDate: '2019-09-23T00:00:00', + ShippedDate: '2019-09-02T00:00:00', + ShipVia: 1, + Freight: 12.4100, + ShipName: 'Hanari Carnes', + ShipAddress: 'Rua do Paço, 67', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '05454-876', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10646, + CustomerID: 'HUNGO', + EmployeeID: 9, + OrderDate: '2019-08-27T00:00:00', + RequiredDate: '2019-10-08T00:00:00', + ShippedDate: '2019-09-03T00:00:00', + ShipVia: 3, + Freight: 142.3300, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10647, + CustomerID: 'QUEDE', + EmployeeID: 4, + OrderDate: '2019-08-27T00:00:00', + RequiredDate: '2019-09-10T00:00:00', + ShippedDate: '2019-09-03T00:00:00', + ShipVia: 2, + Freight: 45.5400, + ShipName: 'Que Delícia', + ShipAddress: 'Rua da Panificadora, 12', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-673', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10648, + CustomerID: 'RICAR', + EmployeeID: 5, + OrderDate: '2019-08-28T00:00:00', + RequiredDate: '2019-10-09T00:00:00', + ShippedDate: '2019-09-09T00:00:00', + ShipVia: 2, + Freight: 14.2500, + ShipName: 'Ricardo Adocicados', + ShipAddress: 'Av. Copacabana, 267', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-890', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10649, + CustomerID: 'MAISD', + EmployeeID: 5, + OrderDate: '2019-08-28T00:00:00', + RequiredDate: '2019-09-25T00:00:00', + ShippedDate: '2019-08-29T00:00:00', + ShipVia: 3, + Freight: 6.2000, + ShipName: 'Maison Dewey', + ShipAddress: 'Rue Joseph-Bens 532', + ShipCity: 'Bruxelles', + ShipRegion: null, + ShipPostalCode: 'B-1180', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10650, + CustomerID: 'FAMIA', + EmployeeID: 5, + OrderDate: '2019-08-29T00:00:00', + RequiredDate: '2019-09-26T00:00:00', + ShippedDate: '2019-09-03T00:00:00', + ShipVia: 3, + Freight: 176.8100, + ShipName: 'Familia Arquibaldo', + ShipAddress: 'Rua Orós, 92', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05442-030', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10651, + CustomerID: 'WANDK', + EmployeeID: 8, + OrderDate: '2019-09-01T00:00:00', + RequiredDate: '2019-09-29T00:00:00', + ShippedDate: '2019-09-11T00:00:00', + ShipVia: 2, + Freight: 20.6000, + ShipName: 'Die Wandernde Kuh', + ShipAddress: 'Adenauerallee 900', + ShipCity: 'Stuttgart', + ShipRegion: null, + ShipPostalCode: '70563', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10652, + CustomerID: 'GOURL', + EmployeeID: 4, + OrderDate: '2019-09-01T00:00:00', + RequiredDate: '2019-09-29T00:00:00', + ShippedDate: '2019-09-08T00:00:00', + ShipVia: 2, + Freight: 7.1400, + ShipName: 'Gourmet Lanchonetes', + ShipAddress: 'Av. Brasil, 442', + ShipCity: 'Campinas', + ShipRegion: 'SP', + ShipPostalCode: '04876-786', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10653, + CustomerID: 'FRANK', + EmployeeID: 1, + OrderDate: '2019-09-02T00:00:00', + RequiredDate: '2019-09-30T00:00:00', + ShippedDate: '2019-09-19T00:00:00', + ShipVia: 1, + Freight: 93.2500, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10654, + CustomerID: 'BERGS', + EmployeeID: 5, + OrderDate: '2019-09-02T00:00:00', + RequiredDate: '2019-09-30T00:00:00', + ShippedDate: '2019-09-11T00:00:00', + ShipVia: 1, + Freight: 55.2600, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10655, + CustomerID: 'REGGC', + EmployeeID: 1, + OrderDate: '2019-09-03T00:00:00', + RequiredDate: '2019-10-01T00:00:00', + ShippedDate: '2019-09-11T00:00:00', + ShipVia: 2, + Freight: 4.4100, + ShipName: 'Reggiani Caseifici', + ShipAddress: 'Strada Provinciale 124', + ShipCity: 'Reggio Emilia', + ShipRegion: null, + ShipPostalCode: '42100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10656, + CustomerID: 'GREAL', + EmployeeID: 6, + OrderDate: '2019-09-04T00:00:00', + RequiredDate: '2019-10-02T00:00:00', + ShippedDate: '2019-09-10T00:00:00', + ShipVia: 1, + Freight: 57.1500, + ShipName: 'Great Lakes Food Market', + ShipAddress: '2732 Baker Blvd.', + ShipCity: 'Eugene', + ShipRegion: 'OR', + ShipPostalCode: '97403', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10657, + CustomerID: 'SAVEA', + EmployeeID: 2, + OrderDate: '2019-09-04T00:00:00', + RequiredDate: '2019-10-02T00:00:00', + ShippedDate: '2019-09-15T00:00:00', + ShipVia: 2, + Freight: 352.6900, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10658, + CustomerID: 'QUICK', + EmployeeID: 4, + OrderDate: '2019-09-05T00:00:00', + RequiredDate: '2019-10-03T00:00:00', + ShippedDate: '2019-09-08T00:00:00', + ShipVia: 1, + Freight: 364.1500, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10659, + CustomerID: 'QUEEN', + EmployeeID: 7, + OrderDate: '2019-09-05T00:00:00', + RequiredDate: '2019-10-03T00:00:00', + ShippedDate: '2019-09-10T00:00:00', + ShipVia: 2, + Freight: 105.8100, + ShipName: 'Queen Cozinha', + ShipAddress: 'Alameda dos Canàrios, 891', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05487-020', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10660, + CustomerID: 'HUNGC', + EmployeeID: 8, + OrderDate: '2019-09-08T00:00:00', + RequiredDate: '2019-10-06T00:00:00', + ShippedDate: '2019-10-15T00:00:00', + ShipVia: 1, + Freight: 111.2900, + ShipName: 'Hungry Coyote Import Store', + ShipAddress: 'City Center Plaza 516 Main St.', + ShipCity: 'Elgin', + ShipRegion: 'OR', + ShipPostalCode: '97827', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10661, + CustomerID: 'HUNGO', + EmployeeID: 7, + OrderDate: '2019-09-09T00:00:00', + RequiredDate: '2019-10-07T00:00:00', + ShippedDate: '2019-09-15T00:00:00', + ShipVia: 3, + Freight: 17.5500, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10662, + CustomerID: 'LONEP', + EmployeeID: 3, + OrderDate: '2019-09-09T00:00:00', + RequiredDate: '2019-10-07T00:00:00', + ShippedDate: '2019-09-18T00:00:00', + ShipVia: 2, + Freight: 1.2800, + ShipName: 'Lonesome Pine Restaurant', + ShipAddress: '89 Chiaroscuro Rd.', + ShipCity: 'Portland', + ShipRegion: 'OR', + ShipPostalCode: '97219', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10663, + CustomerID: 'BONAP', + EmployeeID: 2, + OrderDate: '2019-09-10T00:00:00', + RequiredDate: '2019-09-24T00:00:00', + ShippedDate: '2019-10-03T00:00:00', + ShipVia: 2, + Freight: 113.1500, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10664, + CustomerID: 'FURIB', + EmployeeID: 1, + OrderDate: '2019-09-10T00:00:00', + RequiredDate: '2019-10-08T00:00:00', + ShippedDate: '2019-09-19T00:00:00', + ShipVia: 3, + Freight: 1.2700, + ShipName: 'Furia Bacalhau e Frutos do Mar', + ShipAddress: 'Jardim das rosas n. 32', + ShipCity: 'Lisboa', + ShipRegion: null, + ShipPostalCode: '1675', + ShipCountry: 'Portugal', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10665, + CustomerID: 'LONEP', + EmployeeID: 1, + OrderDate: '2019-09-11T00:00:00', + RequiredDate: '2019-10-09T00:00:00', + ShippedDate: '2019-09-17T00:00:00', + ShipVia: 2, + Freight: 26.3100, + ShipName: 'Lonesome Pine Restaurant', + ShipAddress: '89 Chiaroscuro Rd.', + ShipCity: 'Portland', + ShipRegion: 'OR', + ShipPostalCode: '97219', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10666, + CustomerID: 'RICSU', + EmployeeID: 7, + OrderDate: '2019-09-12T00:00:00', + RequiredDate: '2019-10-10T00:00:00', + ShippedDate: '2019-09-22T00:00:00', + ShipVia: 2, + Freight: 232.4200, + ShipName: 'Richter Supermarkt', + ShipAddress: 'Starenweg 5', + ShipCity: 'Genève', + ShipRegion: null, + ShipPostalCode: '1204', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10667, + CustomerID: 'ERNSH', + EmployeeID: 7, + OrderDate: '2019-09-12T00:00:00', + RequiredDate: '2019-10-10T00:00:00', + ShippedDate: '2019-09-19T00:00:00', + ShipVia: 1, + Freight: 78.0900, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10668, + CustomerID: 'WANDK', + EmployeeID: 1, + OrderDate: '2019-09-15T00:00:00', + RequiredDate: '2019-10-13T00:00:00', + ShippedDate: '2019-09-23T00:00:00', + ShipVia: 2, + Freight: 47.2200, + ShipName: 'Die Wandernde Kuh', + ShipAddress: 'Adenauerallee 900', + ShipCity: 'Stuttgart', + ShipRegion: null, + ShipPostalCode: '70563', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10669, + CustomerID: 'SIMOB', + EmployeeID: 2, + OrderDate: '2019-09-15T00:00:00', + RequiredDate: '2019-10-13T00:00:00', + ShippedDate: '2019-09-22T00:00:00', + ShipVia: 1, + Freight: 24.3900, + ShipName: 'Simons bistro', + ShipAddress: 'Vinbæltet 34', + ShipCity: 'Kobenhavn', + ShipRegion: null, + ShipPostalCode: '1734', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10670, + CustomerID: 'FRANK', + EmployeeID: 4, + OrderDate: '2019-09-16T00:00:00', + RequiredDate: '2019-10-14T00:00:00', + ShippedDate: '2019-09-18T00:00:00', + ShipVia: 1, + Freight: 203.4800, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10671, + CustomerID: 'FRANR', + EmployeeID: 1, + OrderDate: '2019-09-17T00:00:00', + RequiredDate: '2019-10-15T00:00:00', + ShippedDate: '2019-09-24T00:00:00', + ShipVia: 1, + Freight: 30.3400, + ShipName: 'France restauration', + ShipAddress: '54, rue Royale', + ShipCity: 'Nantes', + ShipRegion: null, + ShipPostalCode: '44000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10672, + CustomerID: 'BERGS', + EmployeeID: 9, + OrderDate: '2019-09-17T00:00:00', + RequiredDate: '2019-10-01T00:00:00', + ShippedDate: '2019-09-26T00:00:00', + ShipVia: 2, + Freight: 95.7500, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10673, + CustomerID: 'WILMK', + EmployeeID: 2, + OrderDate: '2019-09-18T00:00:00', + RequiredDate: '2019-10-16T00:00:00', + ShippedDate: '2019-09-19T00:00:00', + ShipVia: 1, + Freight: 22.7600, + ShipName: 'Wilman Kala', + ShipAddress: 'Keskuskatu 45', + ShipCity: 'Helsinki', + ShipRegion: null, + ShipPostalCode: '21240', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10674, + CustomerID: 'ISLAT', + EmployeeID: 4, + OrderDate: '2019-09-18T00:00:00', + RequiredDate: '2019-10-16T00:00:00', + ShippedDate: '2019-09-30T00:00:00', + ShipVia: 2, + Freight: 0.9000, + ShipName: 'Island Trading', + ShipAddress: 'Garden House Crowther Way', + ShipCity: 'Cowes', + ShipRegion: 'Isle of Wight', + ShipPostalCode: 'PO31 7PJ', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10675, + CustomerID: 'FRANK', + EmployeeID: 5, + OrderDate: '2019-09-19T00:00:00', + RequiredDate: '2019-10-17T00:00:00', + ShippedDate: '2019-09-23T00:00:00', + ShipVia: 2, + Freight: 31.8500, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10676, + CustomerID: 'TORTU', + EmployeeID: 2, + OrderDate: '2019-09-22T00:00:00', + RequiredDate: '2019-10-20T00:00:00', + ShippedDate: '2019-09-29T00:00:00', + ShipVia: 2, + Freight: 2.0100, + ShipName: 'Tortuga Restaurante', + ShipAddress: 'Avda. Azteca 123', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10677, + CustomerID: 'ANTON', + EmployeeID: 1, + OrderDate: '2019-09-22T00:00:00', + RequiredDate: '2019-10-20T00:00:00', + ShippedDate: '2019-09-26T00:00:00', + ShipVia: 3, + Freight: 4.0300, + ShipName: 'Antonio Moreno Taquería', + ShipAddress: 'Mataderos 2312', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05023', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10678, + CustomerID: 'SAVEA', + EmployeeID: 7, + OrderDate: '2019-09-23T00:00:00', + RequiredDate: '2019-10-21T00:00:00', + ShippedDate: '2019-10-16T00:00:00', + ShipVia: 3, + Freight: 388.9800, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10679, + CustomerID: 'BLONP', + EmployeeID: 8, + OrderDate: '2019-09-23T00:00:00', + RequiredDate: '2019-10-21T00:00:00', + ShippedDate: '2019-09-30T00:00:00', + ShipVia: 3, + Freight: 27.9400, + ShipName: 'Blondel père et fils', + ShipAddress: '24, place Kléber', + ShipCity: 'Strasbourg', + ShipRegion: null, + ShipPostalCode: '67000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10680, + CustomerID: 'OLDWO', + EmployeeID: 1, + OrderDate: '2019-09-24T00:00:00', + RequiredDate: '2019-10-22T00:00:00', + ShippedDate: '2019-09-26T00:00:00', + ShipVia: 1, + Freight: 26.6100, + ShipName: 'Old World Delicatessen', + ShipAddress: '2743 Bering St.', + ShipCity: 'Anchorage', + ShipRegion: 'AK', + ShipPostalCode: '99508', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10681, + CustomerID: 'GREAL', + EmployeeID: 3, + OrderDate: '2019-09-25T00:00:00', + RequiredDate: '2019-10-23T00:00:00', + ShippedDate: '2019-09-30T00:00:00', + ShipVia: 3, + Freight: 76.1300, + ShipName: 'Great Lakes Food Market', + ShipAddress: '2732 Baker Blvd.', + ShipCity: 'Eugene', + ShipRegion: 'OR', + ShipPostalCode: '97403', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10682, + CustomerID: 'ANTON', + EmployeeID: 3, + OrderDate: '2019-09-25T00:00:00', + RequiredDate: '2019-10-23T00:00:00', + ShippedDate: '2019-10-01T00:00:00', + ShipVia: 2, + Freight: 36.1300, + ShipName: 'Antonio Moreno Taquería', + ShipAddress: 'Mataderos 2312', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05023', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10683, + CustomerID: 'DUMON', + EmployeeID: 2, + OrderDate: '2019-09-26T00:00:00', + RequiredDate: '2019-10-24T00:00:00', + ShippedDate: '2019-10-01T00:00:00', + ShipVia: 1, + Freight: 4.4000, + ShipName: 'Du monde entier', + ShipAddress: '67, rue des Cinquante Otages', + ShipCity: 'Nantes', + ShipRegion: null, + ShipPostalCode: '44000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10684, + CustomerID: 'OTTIK', + EmployeeID: 3, + OrderDate: '2019-09-26T00:00:00', + RequiredDate: '2019-10-24T00:00:00', + ShippedDate: '2019-09-30T00:00:00', + ShipVia: 1, + Freight: 145.6300, + ShipName: 'Ottilies Käseladen', + ShipAddress: 'Mehrheimerstr. 369', + ShipCity: 'Köln', + ShipRegion: null, + ShipPostalCode: '50739', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10685, + CustomerID: 'GOURL', + EmployeeID: 4, + OrderDate: '2019-09-29T00:00:00', + RequiredDate: '2019-10-13T00:00:00', + ShippedDate: '2019-10-03T00:00:00', + ShipVia: 2, + Freight: 33.7500, + ShipName: 'Gourmet Lanchonetes', + ShipAddress: 'Av. Brasil, 442', + ShipCity: 'Campinas', + ShipRegion: 'SP', + ShipPostalCode: '04876-786', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10686, + CustomerID: 'PICCO', + EmployeeID: 2, + OrderDate: '2019-09-30T00:00:00', + RequiredDate: '2019-10-28T00:00:00', + ShippedDate: '2019-10-08T00:00:00', + ShipVia: 1, + Freight: 96.5000, + ShipName: 'Piccolo und mehr', + ShipAddress: 'Geislweg 14', + ShipCity: 'Salzburg', + ShipRegion: null, + ShipPostalCode: '5020', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10687, + CustomerID: 'HUNGO', + EmployeeID: 9, + OrderDate: '2019-09-30T00:00:00', + RequiredDate: '2019-10-28T00:00:00', + ShippedDate: '2019-10-30T00:00:00', + ShipVia: 2, + Freight: 296.4300, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10688, + CustomerID: 'VAFFE', + EmployeeID: 4, + OrderDate: '2019-10-01T00:00:00', + RequiredDate: '2019-10-15T00:00:00', + ShippedDate: '2019-10-07T00:00:00', + ShipVia: 2, + Freight: 299.0900, + ShipName: 'Vaffeljernet', + ShipAddress: 'Smagsloget 45', + ShipCity: 'Århus', + ShipRegion: null, + ShipPostalCode: '8200', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10689, + CustomerID: 'BERGS', + EmployeeID: 1, + OrderDate: '2019-10-01T00:00:00', + RequiredDate: '2019-10-29T00:00:00', + ShippedDate: '2019-10-07T00:00:00', + ShipVia: 2, + Freight: 13.4200, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10690, + CustomerID: 'HANAR', + EmployeeID: 1, + OrderDate: '2019-10-02T00:00:00', + RequiredDate: '2019-10-30T00:00:00', + ShippedDate: '2019-10-03T00:00:00', + ShipVia: 1, + Freight: 15.8000, + ShipName: 'Hanari Carnes', + ShipAddress: 'Rua do Paço, 67', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '05454-876', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10691, + CustomerID: 'QUICK', + EmployeeID: 2, + OrderDate: '2019-10-03T00:00:00', + RequiredDate: '2019-11-14T00:00:00', + ShippedDate: '2019-10-22T00:00:00', + ShipVia: 2, + Freight: 810.0500, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10692, + CustomerID: 'ALFKI', + EmployeeID: 4, + OrderDate: '2019-10-03T00:00:00', + RequiredDate: '2019-10-31T00:00:00', + ShippedDate: '2019-10-13T00:00:00', + ShipVia: 2, + Freight: 61.0200, + ShipName: 'Alfred\'s Futterkiste', + ShipAddress: 'Obere Str. 57', + ShipCity: 'Berlin', + ShipRegion: null, + ShipPostalCode: '12209', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10693, + CustomerID: 'WHITC', + EmployeeID: 3, + OrderDate: '2019-10-06T00:00:00', + RequiredDate: '2019-10-20T00:00:00', + ShippedDate: '2019-10-10T00:00:00', + ShipVia: 3, + Freight: 139.3400, + ShipName: 'White Clover Markets', + ShipAddress: '1029 - 12th Ave. S.', + ShipCity: 'Seattle', + ShipRegion: 'WA', + ShipPostalCode: '98124', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10694, + CustomerID: 'QUICK', + EmployeeID: 8, + OrderDate: '2019-10-06T00:00:00', + RequiredDate: '2019-11-03T00:00:00', + ShippedDate: '2019-10-09T00:00:00', + ShipVia: 3, + Freight: 398.3600, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10695, + CustomerID: 'WILMK', + EmployeeID: 7, + OrderDate: '2019-10-07T00:00:00', + RequiredDate: '2019-11-18T00:00:00', + ShippedDate: '2019-10-14T00:00:00', + ShipVia: 1, + Freight: 16.7200, + ShipName: 'Wilman Kala', + ShipAddress: 'Keskuskatu 45', + ShipCity: 'Helsinki', + ShipRegion: null, + ShipPostalCode: '21240', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10696, + CustomerID: 'WHITC', + EmployeeID: 8, + OrderDate: '2019-10-08T00:00:00', + RequiredDate: '2019-11-19T00:00:00', + ShippedDate: '2019-10-14T00:00:00', + ShipVia: 3, + Freight: 102.5500, + ShipName: 'White Clover Markets', + ShipAddress: '1029 - 12th Ave. S.', + ShipCity: 'Seattle', + ShipRegion: 'WA', + ShipPostalCode: '98124', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10697, + CustomerID: 'LINOD', + EmployeeID: 3, + OrderDate: '2019-10-08T00:00:00', + RequiredDate: '2019-11-05T00:00:00', + ShippedDate: '2019-10-14T00:00:00', + ShipVia: 1, + Freight: 45.5200, + ShipName: 'LINO-Delicateses', + ShipAddress: 'Ave. 5 de Mayo Porlamar', + ShipCity: 'I. de Margarita', + ShipRegion: 'Nueva Esparta', + ShipPostalCode: '4980', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10698, + CustomerID: 'ERNSH', + EmployeeID: 4, + OrderDate: '2019-10-09T00:00:00', + RequiredDate: '2019-11-06T00:00:00', + ShippedDate: '2019-10-17T00:00:00', + ShipVia: 1, + Freight: 272.4700, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10699, + CustomerID: 'MORGK', + EmployeeID: 3, + OrderDate: '2019-10-09T00:00:00', + RequiredDate: '2019-11-06T00:00:00', + ShippedDate: '2019-10-13T00:00:00', + ShipVia: 3, + Freight: 0.5800, + ShipName: 'Morgenstern Gesundkost', + ShipAddress: 'Heerstr. 22', + ShipCity: 'Leipzig', + ShipRegion: null, + ShipPostalCode: '04179', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10700, + CustomerID: 'SAVEA', + EmployeeID: 3, + OrderDate: '2019-10-10T00:00:00', + RequiredDate: '2019-11-07T00:00:00', + ShippedDate: '2019-10-16T00:00:00', + ShipVia: 1, + Freight: 65.1000, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10701, + CustomerID: 'HUNGO', + EmployeeID: 6, + OrderDate: '2019-10-13T00:00:00', + RequiredDate: '2019-10-27T00:00:00', + ShippedDate: '2019-10-15T00:00:00', + ShipVia: 3, + Freight: 220.3100, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10702, + CustomerID: 'ALFKI', + EmployeeID: 4, + OrderDate: '2019-10-13T00:00:00', + RequiredDate: '2019-11-24T00:00:00', + ShippedDate: '2019-10-21T00:00:00', + ShipVia: 1, + Freight: 23.9400, + ShipName: 'Alfred\'s Futterkiste', + ShipAddress: 'Obere Str. 57', + ShipCity: 'Berlin', + ShipRegion: null, + ShipPostalCode: '12209', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10703, + CustomerID: 'FOLKO', + EmployeeID: 6, + OrderDate: '2019-10-14T00:00:00', + RequiredDate: '2019-11-11T00:00:00', + ShippedDate: '2019-10-20T00:00:00', + ShipVia: 2, + Freight: 152.3000, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10704, + CustomerID: 'QUEEN', + EmployeeID: 6, + OrderDate: '2019-10-14T00:00:00', + RequiredDate: '2019-11-11T00:00:00', + ShippedDate: '2019-11-07T00:00:00', + ShipVia: 1, + Freight: 4.7800, + ShipName: 'Queen Cozinha', + ShipAddress: 'Alameda dos Canàrios, 891', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05487-020', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10705, + CustomerID: 'HILAA', + EmployeeID: 9, + OrderDate: '2019-10-15T00:00:00', + RequiredDate: '2019-11-12T00:00:00', + ShippedDate: '2019-11-18T00:00:00', + ShipVia: 2, + Freight: 3.5200, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10706, + CustomerID: 'OLDWO', + EmployeeID: 8, + OrderDate: '2019-10-16T00:00:00', + RequiredDate: '2019-11-13T00:00:00', + ShippedDate: '2019-10-21T00:00:00', + ShipVia: 3, + Freight: 135.6300, + ShipName: 'Old World Delicatessen', + ShipAddress: '2743 Bering St.', + ShipCity: 'Anchorage', + ShipRegion: 'AK', + ShipPostalCode: '99508', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10707, + CustomerID: 'AROUT', + EmployeeID: 4, + OrderDate: '2019-10-16T00:00:00', + RequiredDate: '2019-10-30T00:00:00', + ShippedDate: '2019-10-23T00:00:00', + ShipVia: 3, + Freight: 21.7400, + ShipName: 'Around the Horn', + ShipAddress: 'Brook Farm Stratford St. Mary', + ShipCity: 'Colchester', + ShipRegion: 'Essex', + ShipPostalCode: 'CO7 6JX', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10708, + CustomerID: 'THEBI', + EmployeeID: 6, + OrderDate: '2019-10-17T00:00:00', + RequiredDate: '2019-11-28T00:00:00', + ShippedDate: '2019-11-05T00:00:00', + ShipVia: 2, + Freight: 2.9600, + ShipName: 'The Big Cheese', + ShipAddress: '89 Jefferson Way Suite 2', + ShipCity: 'Portland', + ShipRegion: 'OR', + ShipPostalCode: '97201', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10709, + CustomerID: 'GOURL', + EmployeeID: 1, + OrderDate: '2019-10-17T00:00:00', + RequiredDate: '2019-11-14T00:00:00', + ShippedDate: '2019-11-20T00:00:00', + ShipVia: 3, + Freight: 210.8000, + ShipName: 'Gourmet Lanchonetes', + ShipAddress: 'Av. Brasil, 442', + ShipCity: 'Campinas', + ShipRegion: 'SP', + ShipPostalCode: '04876-786', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10710, + CustomerID: 'FRANS', + EmployeeID: 1, + OrderDate: '2019-10-20T00:00:00', + RequiredDate: '2019-11-17T00:00:00', + ShippedDate: '2019-10-23T00:00:00', + ShipVia: 1, + Freight: 4.9800, + ShipName: 'Franchi S.p.A.', + ShipAddress: 'Via Monte Bianco 34', + ShipCity: 'Torino', + ShipRegion: null, + ShipPostalCode: '10100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10711, + CustomerID: 'SAVEA', + EmployeeID: 5, + OrderDate: '2019-10-21T00:00:00', + RequiredDate: '2019-12-02T00:00:00', + ShippedDate: '2019-10-29T00:00:00', + ShipVia: 2, + Freight: 52.4100, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10712, + CustomerID: 'HUNGO', + EmployeeID: 3, + OrderDate: '2019-10-21T00:00:00', + RequiredDate: '2019-11-18T00:00:00', + ShippedDate: '2019-10-31T00:00:00', + ShipVia: 1, + Freight: 89.9300, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10713, + CustomerID: 'SAVEA', + EmployeeID: 1, + OrderDate: '2019-10-22T00:00:00', + RequiredDate: '2019-11-19T00:00:00', + ShippedDate: '2019-10-24T00:00:00', + ShipVia: 1, + Freight: 167.0500, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10714, + CustomerID: 'SAVEA', + EmployeeID: 5, + OrderDate: '2019-10-22T00:00:00', + RequiredDate: '2019-11-19T00:00:00', + ShippedDate: '2019-10-27T00:00:00', + ShipVia: 3, + Freight: 24.4900, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10715, + CustomerID: 'BONAP', + EmployeeID: 3, + OrderDate: '2019-10-23T00:00:00', + RequiredDate: '2019-11-06T00:00:00', + ShippedDate: '2019-10-29T00:00:00', + ShipVia: 1, + Freight: 63.2000, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10716, + CustomerID: 'RANCH', + EmployeeID: 4, + OrderDate: '2019-10-24T00:00:00', + RequiredDate: '2019-11-21T00:00:00', + ShippedDate: '2019-10-27T00:00:00', + ShipVia: 2, + Freight: 22.5700, + ShipName: 'Rancho grande', + ShipAddress: 'Av. del Libertador 900', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10717, + CustomerID: 'FRANK', + EmployeeID: 1, + OrderDate: '2019-10-24T00:00:00', + RequiredDate: '2019-11-21T00:00:00', + ShippedDate: '2019-10-29T00:00:00', + ShipVia: 2, + Freight: 59.2500, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10718, + CustomerID: 'KOENE', + EmployeeID: 1, + OrderDate: '2019-10-27T00:00:00', + RequiredDate: '2019-11-24T00:00:00', + ShippedDate: '2019-10-29T00:00:00', + ShipVia: 3, + Freight: 170.8800, + ShipName: 'Königlich Essen', + ShipAddress: 'Maubelstr. 90', + ShipCity: 'Brandenburg', + ShipRegion: null, + ShipPostalCode: '14776', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10719, + CustomerID: 'LETSS', + EmployeeID: 8, + OrderDate: '2019-10-27T00:00:00', + RequiredDate: '2019-11-24T00:00:00', + ShippedDate: '2019-11-05T00:00:00', + ShipVia: 2, + Freight: 51.4400, + ShipName: 'Let\'s Stop N Shop', + ShipAddress: '87 Polk St. Suite 5', + ShipCity: 'San Francisco', + ShipRegion: 'CA', + ShipPostalCode: '94117', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10720, + CustomerID: 'QUEDE', + EmployeeID: 8, + OrderDate: '2019-10-28T00:00:00', + RequiredDate: '2019-11-11T00:00:00', + ShippedDate: '2019-11-05T00:00:00', + ShipVia: 2, + Freight: 9.5300, + ShipName: 'Que Delícia', + ShipAddress: 'Rua da Panificadora, 12', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-673', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10721, + CustomerID: 'QUICK', + EmployeeID: 5, + OrderDate: '2019-10-29T00:00:00', + RequiredDate: '2019-11-26T00:00:00', + ShippedDate: '2019-10-31T00:00:00', + ShipVia: 3, + Freight: 48.9200, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10722, + CustomerID: 'SAVEA', + EmployeeID: 8, + OrderDate: '2019-10-29T00:00:00', + RequiredDate: '2019-12-10T00:00:00', + ShippedDate: '2019-11-04T00:00:00', + ShipVia: 1, + Freight: 74.5800, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10723, + CustomerID: 'WHITC', + EmployeeID: 3, + OrderDate: '2019-10-30T00:00:00', + RequiredDate: '2019-11-27T00:00:00', + ShippedDate: '2019-11-25T00:00:00', + ShipVia: 1, + Freight: 21.7200, + ShipName: 'White Clover Markets', + ShipAddress: '1029 - 12th Ave. S.', + ShipCity: 'Seattle', + ShipRegion: 'WA', + ShipPostalCode: '98124', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10724, + CustomerID: 'MEREP', + EmployeeID: 8, + OrderDate: '2019-10-30T00:00:00', + RequiredDate: '2019-12-11T00:00:00', + ShippedDate: '2019-11-05T00:00:00', + ShipVia: 2, + Freight: 57.7500, + ShipName: 'Mère Paillarde', + ShipAddress: '43 rue St. Laurent', + ShipCity: 'Montréal', + ShipRegion: 'Québec', + ShipPostalCode: 'H1J 1C3', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10725, + CustomerID: 'FAMIA', + EmployeeID: 4, + OrderDate: '2019-10-31T00:00:00', + RequiredDate: '2019-11-28T00:00:00', + ShippedDate: '2019-11-05T00:00:00', + ShipVia: 3, + Freight: 10.8300, + ShipName: 'Familia Arquibaldo', + ShipAddress: 'Rua Orós, 92', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05442-030', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10726, + CustomerID: 'EASTC', + EmployeeID: 4, + OrderDate: '2019-11-03T00:00:00', + RequiredDate: '2019-11-17T00:00:00', + ShippedDate: '2019-12-05T00:00:00', + ShipVia: 1, + Freight: 16.5600, + ShipName: 'Eastern Connection', + ShipAddress: '35 King George', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'WX3 6FW', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10727, + CustomerID: 'REGGC', + EmployeeID: 2, + OrderDate: '2019-11-03T00:00:00', + RequiredDate: '2019-12-01T00:00:00', + ShippedDate: '2019-12-05T00:00:00', + ShipVia: 1, + Freight: 89.9000, + ShipName: 'Reggiani Caseifici', + ShipAddress: 'Strada Provinciale 124', + ShipCity: 'Reggio Emilia', + ShipRegion: null, + ShipPostalCode: '42100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10728, + CustomerID: 'QUEEN', + EmployeeID: 4, + OrderDate: '2019-11-04T00:00:00', + RequiredDate: '2019-12-02T00:00:00', + ShippedDate: '2019-11-11T00:00:00', + ShipVia: 2, + Freight: 58.3300, + ShipName: 'Queen Cozinha', + ShipAddress: 'Alameda dos Canàrios, 891', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05487-020', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10729, + CustomerID: 'LINOD', + EmployeeID: 8, + OrderDate: '2019-11-04T00:00:00', + RequiredDate: '2019-12-16T00:00:00', + ShippedDate: '2019-11-14T00:00:00', + ShipVia: 3, + Freight: 141.0600, + ShipName: 'LINO-Delicateses', + ShipAddress: 'Ave. 5 de Mayo Porlamar', + ShipCity: 'I. de Margarita', + ShipRegion: 'Nueva Esparta', + ShipPostalCode: '4980', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10730, + CustomerID: 'BONAP', + EmployeeID: 5, + OrderDate: '2019-11-05T00:00:00', + RequiredDate: '2019-12-03T00:00:00', + ShippedDate: '2019-11-14T00:00:00', + ShipVia: 1, + Freight: 20.1200, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10731, + CustomerID: 'CHOPS', + EmployeeID: 7, + OrderDate: '2019-11-06T00:00:00', + RequiredDate: '2019-12-04T00:00:00', + ShippedDate: '2019-11-14T00:00:00', + ShipVia: 1, + Freight: 96.6500, + ShipName: 'Chop-suey Chinese', + ShipAddress: 'Hauptstr. 31', + ShipCity: 'Bern', + ShipRegion: null, + ShipPostalCode: '3012', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10732, + CustomerID: 'BONAP', + EmployeeID: 3, + OrderDate: '2019-11-06T00:00:00', + RequiredDate: '2019-12-04T00:00:00', + ShippedDate: '2019-11-07T00:00:00', + ShipVia: 1, + Freight: 16.9700, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10733, + CustomerID: 'BERGS', + EmployeeID: 1, + OrderDate: '2019-11-07T00:00:00', + RequiredDate: '2019-12-05T00:00:00', + ShippedDate: '2019-11-10T00:00:00', + ShipVia: 3, + Freight: 110.1100, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10734, + CustomerID: 'GOURL', + EmployeeID: 2, + OrderDate: '2019-11-07T00:00:00', + RequiredDate: '2019-12-05T00:00:00', + ShippedDate: '2019-11-12T00:00:00', + ShipVia: 3, + Freight: 1.6300, + ShipName: 'Gourmet Lanchonetes', + ShipAddress: 'Av. Brasil, 442', + ShipCity: 'Campinas', + ShipRegion: 'SP', + ShipPostalCode: '04876-786', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10735, + CustomerID: 'LETSS', + EmployeeID: 6, + OrderDate: '2019-11-10T00:00:00', + RequiredDate: '2019-12-08T00:00:00', + ShippedDate: '2019-11-21T00:00:00', + ShipVia: 2, + Freight: 45.9700, + ShipName: 'Let\'s Stop N Shop', + ShipAddress: '87 Polk St. Suite 5', + ShipCity: 'San Francisco', + ShipRegion: 'CA', + ShipPostalCode: '94117', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10736, + CustomerID: 'HUNGO', + EmployeeID: 9, + OrderDate: '2019-11-11T00:00:00', + RequiredDate: '2019-12-09T00:00:00', + ShippedDate: '2019-11-21T00:00:00', + ShipVia: 2, + Freight: 44.1000, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10737, + CustomerID: 'VINET', + EmployeeID: 2, + OrderDate: '2019-11-11T00:00:00', + RequiredDate: '2019-12-09T00:00:00', + ShippedDate: '2019-11-18T00:00:00', + ShipVia: 2, + Freight: 7.7900, + ShipName: 'Vins et alcools Chevalier', + ShipAddress: '59 rue de l\'Abbaye', + ShipCity: 'Reims', + ShipRegion: null, + ShipPostalCode: '51100', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10738, + CustomerID: 'SPECD', + EmployeeID: 2, + OrderDate: '2019-11-12T00:00:00', + RequiredDate: '2019-12-10T00:00:00', + ShippedDate: '2019-11-18T00:00:00', + ShipVia: 1, + Freight: 2.9100, + ShipName: 'Spécialités du monde', + ShipAddress: '25, rue Lauriston', + ShipCity: 'Paris', + ShipRegion: null, + ShipPostalCode: '75016', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10739, + CustomerID: 'VINET', + EmployeeID: 3, + OrderDate: '2019-11-12T00:00:00', + RequiredDate: '2019-12-10T00:00:00', + ShippedDate: '2019-11-17T00:00:00', + ShipVia: 3, + Freight: 11.0800, + ShipName: 'Vins et alcools Chevalier', + ShipAddress: '59 rue de l\'Abbaye', + ShipCity: 'Reims', + ShipRegion: null, + ShipPostalCode: '51100', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10740, + CustomerID: 'WHITC', + EmployeeID: 4, + OrderDate: '2019-11-13T00:00:00', + RequiredDate: '2019-12-11T00:00:00', + ShippedDate: '2019-11-25T00:00:00', + ShipVia: 2, + Freight: 81.8800, + ShipName: 'White Clover Markets', + ShipAddress: '1029 - 12th Ave. S.', + ShipCity: 'Seattle', + ShipRegion: 'WA', + ShipPostalCode: '98124', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10741, + CustomerID: 'AROUT', + EmployeeID: 4, + OrderDate: '2019-11-14T00:00:00', + RequiredDate: '2019-11-28T00:00:00', + ShippedDate: '2019-11-18T00:00:00', + ShipVia: 3, + Freight: 10.9600, + ShipName: 'Around the Horn', + ShipAddress: 'Brook Farm Stratford St. Mary', + ShipCity: 'Colchester', + ShipRegion: 'Essex', + ShipPostalCode: 'CO7 6JX', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10742, + CustomerID: 'BOTTM', + EmployeeID: 3, + OrderDate: '2019-11-14T00:00:00', + RequiredDate: '2019-12-12T00:00:00', + ShippedDate: '2019-11-18T00:00:00', + ShipVia: 3, + Freight: 243.7300, + ShipName: 'Bottom-Dollar Markets', + ShipAddress: '23 Tsawassen Blvd.', + ShipCity: 'Tsawassen', + ShipRegion: 'BC', + ShipPostalCode: 'T2F 8M4', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10743, + CustomerID: 'AROUT', + EmployeeID: 1, + OrderDate: '2019-11-17T00:00:00', + RequiredDate: '2019-12-15T00:00:00', + ShippedDate: '2019-11-21T00:00:00', + ShipVia: 2, + Freight: 23.7200, + ShipName: 'Around the Horn', + ShipAddress: 'Brook Farm Stratford St. Mary', + ShipCity: 'Colchester', + ShipRegion: 'Essex', + ShipPostalCode: 'CO7 6JX', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10744, + CustomerID: 'VAFFE', + EmployeeID: 6, + OrderDate: '2019-11-17T00:00:00', + RequiredDate: '2019-12-15T00:00:00', + ShippedDate: '2019-11-24T00:00:00', + ShipVia: 1, + Freight: 69.1900, + ShipName: 'Vaffeljernet', + ShipAddress: 'Smagsloget 45', + ShipCity: 'Århus', + ShipRegion: null, + ShipPostalCode: '8200', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10745, + CustomerID: 'QUICK', + EmployeeID: 9, + OrderDate: '2019-11-18T00:00:00', + RequiredDate: '2019-12-16T00:00:00', + ShippedDate: '2019-11-27T00:00:00', + ShipVia: 1, + Freight: 3.5200, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10746, + CustomerID: 'CHOPS', + EmployeeID: 1, + OrderDate: '2019-11-19T00:00:00', + RequiredDate: '2019-12-17T00:00:00', + ShippedDate: '2019-11-21T00:00:00', + ShipVia: 3, + Freight: 31.4300, + ShipName: 'Chop-suey Chinese', + ShipAddress: 'Hauptstr. 31', + ShipCity: 'Bern', + ShipRegion: null, + ShipPostalCode: '3012', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10747, + CustomerID: 'PICCO', + EmployeeID: 6, + OrderDate: '2019-11-19T00:00:00', + RequiredDate: '2019-12-17T00:00:00', + ShippedDate: '2019-11-26T00:00:00', + ShipVia: 1, + Freight: 117.3300, + ShipName: 'Piccolo und mehr', + ShipAddress: 'Geislweg 14', + ShipCity: 'Salzburg', + ShipRegion: null, + ShipPostalCode: '5020', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10748, + CustomerID: 'SAVEA', + EmployeeID: 3, + OrderDate: '2019-11-20T00:00:00', + RequiredDate: '2019-12-18T00:00:00', + ShippedDate: '2019-11-28T00:00:00', + ShipVia: 1, + Freight: 232.5500, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10749, + CustomerID: 'ISLAT', + EmployeeID: 4, + OrderDate: '2019-11-20T00:00:00', + RequiredDate: '2019-12-18T00:00:00', + ShippedDate: '2019-12-19T00:00:00', + ShipVia: 2, + Freight: 61.5300, + ShipName: 'Island Trading', + ShipAddress: 'Garden House Crowther Way', + ShipCity: 'Cowes', + ShipRegion: 'Isle of Wight', + ShipPostalCode: 'PO31 7PJ', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10750, + CustomerID: 'WARTH', + EmployeeID: 9, + OrderDate: '2019-11-21T00:00:00', + RequiredDate: '2019-12-19T00:00:00', + ShippedDate: '2019-11-24T00:00:00', + ShipVia: 1, + Freight: 79.3000, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10751, + CustomerID: 'RICSU', + EmployeeID: 3, + OrderDate: '2019-11-24T00:00:00', + RequiredDate: '2019-12-22T00:00:00', + ShippedDate: '2019-12-03T00:00:00', + ShipVia: 3, + Freight: 130.7900, + ShipName: 'Richter Supermarkt', + ShipAddress: 'Starenweg 5', + ShipCity: 'Genève', + ShipRegion: null, + ShipPostalCode: '1204', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10752, + CustomerID: 'NORTS', + EmployeeID: 2, + OrderDate: '2019-11-24T00:00:00', + RequiredDate: '2019-12-22T00:00:00', + ShippedDate: '2019-11-28T00:00:00', + ShipVia: 3, + Freight: 1.3900, + ShipName: 'North/South', + ShipAddress: 'South House 300 Queensbridge', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'SW7 1RZ', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10753, + CustomerID: 'FRANS', + EmployeeID: 3, + OrderDate: '2019-11-25T00:00:00', + RequiredDate: '2019-12-23T00:00:00', + ShippedDate: '2019-11-27T00:00:00', + ShipVia: 1, + Freight: 7.7000, + ShipName: 'Franchi S.p.A.', + ShipAddress: 'Via Monte Bianco 34', + ShipCity: 'Torino', + ShipRegion: null, + ShipPostalCode: '10100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10754, + CustomerID: 'MAGAA', + EmployeeID: 6, + OrderDate: '2019-11-25T00:00:00', + RequiredDate: '2019-12-23T00:00:00', + ShippedDate: '2019-11-27T00:00:00', + ShipVia: 3, + Freight: 2.3800, + ShipName: 'Magazzini Alimentari Riuniti', + ShipAddress: 'Via Ludovico il Moro 22', + ShipCity: 'Bergamo', + ShipRegion: null, + ShipPostalCode: '24100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10755, + CustomerID: 'BONAP', + EmployeeID: 4, + OrderDate: '2019-11-26T00:00:00', + RequiredDate: '2019-12-24T00:00:00', + ShippedDate: '2019-11-28T00:00:00', + ShipVia: 2, + Freight: 16.7100, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10756, + CustomerID: 'SPLIR', + EmployeeID: 8, + OrderDate: '2019-11-27T00:00:00', + RequiredDate: '2019-12-25T00:00:00', + ShippedDate: '2019-12-02T00:00:00', + ShipVia: 2, + Freight: 73.2100, + ShipName: 'Split Rail Beer & Ale', + ShipAddress: 'P.O. Box 555', + ShipCity: 'Lander', + ShipRegion: 'WY', + ShipPostalCode: '82520', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10757, + CustomerID: 'SAVEA', + EmployeeID: 6, + OrderDate: '2019-11-27T00:00:00', + RequiredDate: '2019-12-25T00:00:00', + ShippedDate: '2019-12-15T00:00:00', + ShipVia: 1, + Freight: 8.1900, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10758, + CustomerID: 'RICSU', + EmployeeID: 3, + OrderDate: '2019-11-28T00:00:00', + RequiredDate: '2019-12-26T00:00:00', + ShippedDate: '2019-12-04T00:00:00', + ShipVia: 3, + Freight: 138.1700, + ShipName: 'Richter Supermarkt', + ShipAddress: 'Starenweg 5', + ShipCity: 'Genève', + ShipRegion: null, + ShipPostalCode: '1204', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10759, + CustomerID: 'ANATR', + EmployeeID: 3, + OrderDate: '2019-11-28T00:00:00', + RequiredDate: '2019-12-26T00:00:00', + ShippedDate: '2019-12-12T00:00:00', + ShipVia: 3, + Freight: 11.9900, + ShipName: 'Ana Trujillo Emparedados y helados', + ShipAddress: 'Avda. de la Constitución 2222', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05021', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10760, + CustomerID: 'MAISD', + EmployeeID: 4, + OrderDate: '2019-12-01T00:00:00', + RequiredDate: '2019-12-29T00:00:00', + ShippedDate: '2019-12-10T00:00:00', + ShipVia: 1, + Freight: 155.6400, + ShipName: 'Maison Dewey', + ShipAddress: 'Rue Joseph-Bens 532', + ShipCity: 'Bruxelles', + ShipRegion: null, + ShipPostalCode: 'B-1180', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10761, + CustomerID: 'RATTC', + EmployeeID: 5, + OrderDate: '2019-12-02T00:00:00', + RequiredDate: '2019-12-30T00:00:00', + ShippedDate: '2019-12-08T00:00:00', + ShipVia: 2, + Freight: 18.6600, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10762, + CustomerID: 'FOLKO', + EmployeeID: 3, + OrderDate: '2019-12-02T00:00:00', + RequiredDate: '2019-12-30T00:00:00', + ShippedDate: '2019-12-09T00:00:00', + ShipVia: 1, + Freight: 328.7400, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10763, + CustomerID: 'FOLIG', + EmployeeID: 3, + OrderDate: '2019-12-03T00:00:00', + RequiredDate: '2019-12-31T00:00:00', + ShippedDate: '2019-12-08T00:00:00', + ShipVia: 3, + Freight: 37.3500, + ShipName: 'Folies gourmandes', + ShipAddress: '184, chaussée de Tournai', + ShipCity: 'Lille', + ShipRegion: null, + ShipPostalCode: '59000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10764, + CustomerID: 'ERNSH', + EmployeeID: 6, + OrderDate: '2019-12-03T00:00:00', + RequiredDate: '2019-12-31T00:00:00', + ShippedDate: '2019-12-08T00:00:00', + ShipVia: 3, + Freight: 145.4500, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10765, + CustomerID: 'QUICK', + EmployeeID: 3, + OrderDate: '2019-12-04T00:00:00', + RequiredDate: '2020-01-01T00:00:00', + ShippedDate: '2019-12-09T00:00:00', + ShipVia: 3, + Freight: 42.7400, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10766, + CustomerID: 'OTTIK', + EmployeeID: 4, + OrderDate: '2019-12-05T00:00:00', + RequiredDate: '2020-01-02T00:00:00', + ShippedDate: '2019-12-09T00:00:00', + ShipVia: 1, + Freight: 157.5500, + ShipName: 'Ottilies Käseladen', + ShipAddress: 'Mehrheimerstr. 369', + ShipCity: 'Köln', + ShipRegion: null, + ShipPostalCode: '50739', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10767, + CustomerID: 'SUPRD', + EmployeeID: 4, + OrderDate: '2019-12-05T00:00:00', + RequiredDate: '2020-01-02T00:00:00', + ShippedDate: '2019-12-15T00:00:00', + ShipVia: 3, + Freight: 1.5900, + ShipName: 'Suprêmes délices', + ShipAddress: 'Boulevard Tirou, 255', + ShipCity: 'Charleroi', + ShipRegion: null, + ShipPostalCode: 'B-6000', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10768, + CustomerID: 'AROUT', + EmployeeID: 3, + OrderDate: '2019-12-08T00:00:00', + RequiredDate: '2020-01-05T00:00:00', + ShippedDate: '2019-12-15T00:00:00', + ShipVia: 2, + Freight: 146.3200, + ShipName: 'Around the Horn', + ShipAddress: 'Brook Farm Stratford St. Mary', + ShipCity: 'Colchester', + ShipRegion: 'Essex', + ShipPostalCode: 'CO7 6JX', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10769, + CustomerID: 'VAFFE', + EmployeeID: 3, + OrderDate: '2019-12-08T00:00:00', + RequiredDate: '2020-01-05T00:00:00', + ShippedDate: '2019-12-12T00:00:00', + ShipVia: 1, + Freight: 65.0600, + ShipName: 'Vaffeljernet', + ShipAddress: 'Smagsloget 45', + ShipCity: 'Århus', + ShipRegion: null, + ShipPostalCode: '8200', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10770, + CustomerID: 'HANAR', + EmployeeID: 8, + OrderDate: '2019-12-09T00:00:00', + RequiredDate: '2020-01-06T00:00:00', + ShippedDate: '2019-12-17T00:00:00', + ShipVia: 3, + Freight: 5.3200, + ShipName: 'Hanari Carnes', + ShipAddress: 'Rua do Paço, 67', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '05454-876', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10771, + CustomerID: 'ERNSH', + EmployeeID: 9, + OrderDate: '2019-12-10T00:00:00', + RequiredDate: '2020-01-07T00:00:00', + ShippedDate: '2020-01-02T00:00:00', + ShipVia: 2, + Freight: 11.1900, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10772, + CustomerID: 'LEHMS', + EmployeeID: 3, + OrderDate: '2019-12-10T00:00:00', + RequiredDate: '2020-01-07T00:00:00', + ShippedDate: '2019-12-19T00:00:00', + ShipVia: 2, + Freight: 91.2800, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10773, + CustomerID: 'ERNSH', + EmployeeID: 1, + OrderDate: '2019-12-11T00:00:00', + RequiredDate: '2020-01-08T00:00:00', + ShippedDate: '2019-12-16T00:00:00', + ShipVia: 3, + Freight: 96.4300, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10774, + CustomerID: 'FOLKO', + EmployeeID: 4, + OrderDate: '2019-12-11T00:00:00', + RequiredDate: '2019-12-25T00:00:00', + ShippedDate: '2019-12-12T00:00:00', + ShipVia: 1, + Freight: 48.2000, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10775, + CustomerID: 'THECR', + EmployeeID: 7, + OrderDate: '2019-12-12T00:00:00', + RequiredDate: '2020-01-09T00:00:00', + ShippedDate: '2019-12-26T00:00:00', + ShipVia: 1, + Freight: 20.2500, + ShipName: 'The Cracker Box', + ShipAddress: '55 Grizzly Peak Rd.', + ShipCity: 'Butte', + ShipRegion: 'MT', + ShipPostalCode: '59801', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10776, + CustomerID: 'ERNSH', + EmployeeID: 1, + OrderDate: '2019-12-15T00:00:00', + RequiredDate: '2020-01-12T00:00:00', + ShippedDate: '2019-12-18T00:00:00', + ShipVia: 3, + Freight: 351.5300, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10777, + CustomerID: 'GOURL', + EmployeeID: 7, + OrderDate: '2019-12-15T00:00:00', + RequiredDate: '2019-12-29T00:00:00', + ShippedDate: '2020-01-21T00:00:00', + ShipVia: 2, + Freight: 3.0100, + ShipName: 'Gourmet Lanchonetes', + ShipAddress: 'Av. Brasil, 442', + ShipCity: 'Campinas', + ShipRegion: 'SP', + ShipPostalCode: '04876-786', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10778, + CustomerID: 'BERGS', + EmployeeID: 3, + OrderDate: '2019-12-16T00:00:00', + RequiredDate: '2020-01-13T00:00:00', + ShippedDate: '2019-12-24T00:00:00', + ShipVia: 1, + Freight: 6.7900, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10779, + CustomerID: 'MORGK', + EmployeeID: 3, + OrderDate: '2019-12-16T00:00:00', + RequiredDate: '2020-01-13T00:00:00', + ShippedDate: '2020-01-14T00:00:00', + ShipVia: 2, + Freight: 58.1300, + ShipName: 'Morgenstern Gesundkost', + ShipAddress: 'Heerstr. 22', + ShipCity: 'Leipzig', + ShipRegion: null, + ShipPostalCode: '04179', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10780, + CustomerID: 'LILAS', + EmployeeID: 2, + OrderDate: '2019-12-16T00:00:00', + RequiredDate: '2019-12-30T00:00:00', + ShippedDate: '2019-12-25T00:00:00', + ShipVia: 1, + Freight: 42.1300, + ShipName: 'LILA-Supermercado', + ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', + ShipCity: 'Barquisimeto', + ShipRegion: 'Lara', + ShipPostalCode: '3508', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10781, + CustomerID: 'WARTH', + EmployeeID: 2, + OrderDate: '2019-12-17T00:00:00', + RequiredDate: '2020-01-14T00:00:00', + ShippedDate: '2019-12-19T00:00:00', + ShipVia: 3, + Freight: 73.1600, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10782, + CustomerID: 'CACTU', + EmployeeID: 9, + OrderDate: '2019-12-17T00:00:00', + RequiredDate: '2020-01-14T00:00:00', + ShippedDate: '2019-12-22T00:00:00', + ShipVia: 3, + Freight: 1.1000, + ShipName: 'Cactus Comidas para llevar', + ShipAddress: 'Cerrito 333', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10783, + CustomerID: 'HANAR', + EmployeeID: 4, + OrderDate: '2019-12-18T00:00:00', + RequiredDate: '2020-01-15T00:00:00', + ShippedDate: '2019-12-19T00:00:00', + ShipVia: 2, + Freight: 124.9800, + ShipName: 'Hanari Carnes', + ShipAddress: 'Rua do Paço, 67', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '05454-876', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10784, + CustomerID: 'MAGAA', + EmployeeID: 4, + OrderDate: '2019-12-18T00:00:00', + RequiredDate: '2020-01-15T00:00:00', + ShippedDate: '2019-12-22T00:00:00', + ShipVia: 3, + Freight: 70.0900, + ShipName: 'Magazzini Alimentari Riuniti', + ShipAddress: 'Via Ludovico il Moro 22', + ShipCity: 'Bergamo', + ShipRegion: null, + ShipPostalCode: '24100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10785, + CustomerID: 'GROSR', + EmployeeID: 1, + OrderDate: '2019-12-18T00:00:00', + RequiredDate: '2020-01-15T00:00:00', + ShippedDate: '2019-12-24T00:00:00', + ShipVia: 3, + Freight: 1.5100, + ShipName: 'GROSELLA-Restaurante', + ShipAddress: '5ª Ave. Los Palos Grandes', + ShipCity: 'Caracas', + ShipRegion: 'DF', + ShipPostalCode: '1081', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10786, + CustomerID: 'QUEEN', + EmployeeID: 8, + OrderDate: '2019-12-19T00:00:00', + RequiredDate: '2020-01-16T00:00:00', + ShippedDate: '2019-12-23T00:00:00', + ShipVia: 1, + Freight: 110.8700, + ShipName: 'Queen Cozinha', + ShipAddress: 'Alameda dos Canàrios, 891', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05487-020', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10787, + CustomerID: 'LAMAI', + EmployeeID: 2, + OrderDate: '2019-12-19T00:00:00', + RequiredDate: '2020-01-02T00:00:00', + ShippedDate: '2019-12-26T00:00:00', + ShipVia: 1, + Freight: 249.9300, + ShipName: 'La maison d\'Asie', + ShipAddress: '1 rue Alsace-Lorraine', + ShipCity: 'Toulouse', + ShipRegion: null, + ShipPostalCode: '31000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10788, + CustomerID: 'QUICK', + EmployeeID: 1, + OrderDate: '2019-12-22T00:00:00', + RequiredDate: '2020-01-19T00:00:00', + ShippedDate: '2020-01-19T00:00:00', + ShipVia: 2, + Freight: 42.7000, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10789, + CustomerID: 'FOLIG', + EmployeeID: 1, + OrderDate: '2019-12-22T00:00:00', + RequiredDate: '2020-01-19T00:00:00', + ShippedDate: '2019-12-31T00:00:00', + ShipVia: 2, + Freight: 100.6000, + ShipName: 'Folies gourmandes', + ShipAddress: '184, chaussée de Tournai', + ShipCity: 'Lille', + ShipRegion: null, + ShipPostalCode: '59000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10790, + CustomerID: 'GOURL', + EmployeeID: 6, + OrderDate: '2019-12-22T00:00:00', + RequiredDate: '2020-01-19T00:00:00', + ShippedDate: '2019-12-26T00:00:00', + ShipVia: 1, + Freight: 28.2300, + ShipName: 'Gourmet Lanchonetes', + ShipAddress: 'Av. Brasil, 442', + ShipCity: 'Campinas', + ShipRegion: 'SP', + ShipPostalCode: '04876-786', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10791, + CustomerID: 'FRANK', + EmployeeID: 6, + OrderDate: '2019-12-23T00:00:00', + RequiredDate: '2020-01-20T00:00:00', + ShippedDate: '2020-01-01T00:00:00', + ShipVia: 2, + Freight: 16.8500, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10792, + CustomerID: 'WOLZA', + EmployeeID: 1, + OrderDate: '2019-12-23T00:00:00', + RequiredDate: '2020-01-20T00:00:00', + ShippedDate: '2019-12-31T00:00:00', + ShipVia: 3, + Freight: 23.7900, + ShipName: 'Wolski Zajazd', + ShipAddress: 'ul. Filtrowa 68', + ShipCity: 'Warszawa', + ShipRegion: null, + ShipPostalCode: '01-012', + ShipCountry: 'Poland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10793, + CustomerID: 'AROUT', + EmployeeID: 3, + OrderDate: '2019-12-24T00:00:00', + RequiredDate: '2020-01-21T00:00:00', + ShippedDate: '2020-01-08T00:00:00', + ShipVia: 3, + Freight: 4.5200, + ShipName: 'Around the Horn', + ShipAddress: 'Brook Farm Stratford St. Mary', + ShipCity: 'Colchester', + ShipRegion: 'Essex', + ShipPostalCode: 'CO7 6JX', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10794, + CustomerID: 'QUEDE', + EmployeeID: 6, + OrderDate: '2019-12-24T00:00:00', + RequiredDate: '2020-01-21T00:00:00', + ShippedDate: '2020-01-02T00:00:00', + ShipVia: 1, + Freight: 21.4900, + ShipName: 'Que Delícia', + ShipAddress: 'Rua da Panificadora, 12', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-673', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10795, + CustomerID: 'ERNSH', + EmployeeID: 8, + OrderDate: '2019-12-24T00:00:00', + RequiredDate: '2020-01-21T00:00:00', + ShippedDate: '2020-01-20T00:00:00', + ShipVia: 2, + Freight: 126.6600, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10796, + CustomerID: 'HILAA', + EmployeeID: 3, + OrderDate: '2019-12-25T00:00:00', + RequiredDate: '2020-01-22T00:00:00', + ShippedDate: '2020-01-14T00:00:00', + ShipVia: 1, + Freight: 26.5200, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10797, + CustomerID: 'DRACD', + EmployeeID: 7, + OrderDate: '2019-12-25T00:00:00', + RequiredDate: '2020-01-22T00:00:00', + ShippedDate: '2020-01-05T00:00:00', + ShipVia: 2, + Freight: 33.3500, + ShipName: 'Drachenblut Delikatessen', + ShipAddress: 'Walserweg 21', + ShipCity: 'Aachen', + ShipRegion: null, + ShipPostalCode: '52066', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10798, + CustomerID: 'ISLAT', + EmployeeID: 2, + OrderDate: '2019-12-26T00:00:00', + RequiredDate: '2020-01-23T00:00:00', + ShippedDate: '2020-01-05T00:00:00', + ShipVia: 1, + Freight: 2.3300, + ShipName: 'Island Trading', + ShipAddress: 'Garden House Crowther Way', + ShipCity: 'Cowes', + ShipRegion: 'Isle of Wight', + ShipPostalCode: 'PO31 7PJ', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10799, + CustomerID: 'KOENE', + EmployeeID: 9, + OrderDate: '2019-12-26T00:00:00', + RequiredDate: '2020-02-06T00:00:00', + ShippedDate: '2020-01-05T00:00:00', + ShipVia: 3, + Freight: 30.7600, + ShipName: 'Königlich Essen', + ShipAddress: 'Maubelstr. 90', + ShipCity: 'Brandenburg', + ShipRegion: null, + ShipPostalCode: '14776', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10800, + CustomerID: 'SEVES', + EmployeeID: 1, + OrderDate: '2019-12-26T00:00:00', + RequiredDate: '2020-01-23T00:00:00', + ShippedDate: '2020-01-05T00:00:00', + ShipVia: 3, + Freight: 137.4400, + ShipName: 'Seven Seas Imports', + ShipAddress: '90 Wadhurst Rd.', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'OX15 4NB', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10801, + CustomerID: 'BOLID', + EmployeeID: 4, + OrderDate: '2019-12-29T00:00:00', + RequiredDate: '2020-01-26T00:00:00', + ShippedDate: '2019-12-31T00:00:00', + ShipVia: 2, + Freight: 97.0900, + ShipName: 'Bólido Comidas preparadas', + ShipAddress: 'C/ Araquil, 67', + ShipCity: 'Madrid', + ShipRegion: null, + ShipPostalCode: '28023', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10802, + CustomerID: 'SIMOB', + EmployeeID: 4, + OrderDate: '2019-12-29T00:00:00', + RequiredDate: '2020-01-26T00:00:00', + ShippedDate: '2020-01-02T00:00:00', + ShipVia: 2, + Freight: 257.2600, + ShipName: 'Simons bistro', + ShipAddress: 'Vinbæltet 34', + ShipCity: 'Kobenhavn', + ShipRegion: null, + ShipPostalCode: '1734', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10803, + CustomerID: 'WELLI', + EmployeeID: 4, + OrderDate: '2019-12-30T00:00:00', + RequiredDate: '2020-01-27T00:00:00', + ShippedDate: '2020-01-06T00:00:00', + ShipVia: 1, + Freight: 55.2300, + ShipName: 'Wellington Importadora', + ShipAddress: 'Rua do Mercado, 12', + ShipCity: 'Resende', + ShipRegion: 'SP', + ShipPostalCode: '08737-363', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10804, + CustomerID: 'SEVES', + EmployeeID: 6, + OrderDate: '2019-12-30T00:00:00', + RequiredDate: '2020-01-27T00:00:00', + ShippedDate: '2020-01-07T00:00:00', + ShipVia: 2, + Freight: 27.3300, + ShipName: 'Seven Seas Imports', + ShipAddress: '90 Wadhurst Rd.', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'OX15 4NB', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10805, + CustomerID: 'THEBI', + EmployeeID: 2, + OrderDate: '2019-12-30T00:00:00', + RequiredDate: '2020-01-27T00:00:00', + ShippedDate: '2020-01-09T00:00:00', + ShipVia: 3, + Freight: 237.3400, + ShipName: 'The Big Cheese', + ShipAddress: '89 Jefferson Way Suite 2', + ShipCity: 'Portland', + ShipRegion: 'OR', + ShipPostalCode: '97201', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10806, + CustomerID: 'VICTE', + EmployeeID: 3, + OrderDate: '2019-12-31T00:00:00', + RequiredDate: '2020-01-28T00:00:00', + ShippedDate: '2020-01-05T00:00:00', + ShipVia: 2, + Freight: 22.1100, + ShipName: 'Victuailles en stock', + ShipAddress: '2, rue du Commerce', + ShipCity: 'Lyon', + ShipRegion: null, + ShipPostalCode: '69004', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10807, + CustomerID: 'FRANS', + EmployeeID: 4, + OrderDate: '2019-12-31T00:00:00', + RequiredDate: '2020-01-28T00:00:00', + ShippedDate: '2020-01-30T00:00:00', + ShipVia: 1, + Freight: 1.3600, + ShipName: 'Franchi S.p.A.', + ShipAddress: 'Via Monte Bianco 34', + ShipCity: 'Torino', + ShipRegion: null, + ShipPostalCode: '10100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10808, + CustomerID: 'OLDWO', + EmployeeID: 2, + OrderDate: '2020-01-01T00:00:00', + RequiredDate: '2020-01-29T00:00:00', + ShippedDate: '2020-01-09T00:00:00', + ShipVia: 3, + Freight: 45.5300, + ShipName: 'Old World Delicatessen', + ShipAddress: '2743 Bering St.', + ShipCity: 'Anchorage', + ShipRegion: 'AK', + ShipPostalCode: '99508', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10809, + CustomerID: 'WELLI', + EmployeeID: 7, + OrderDate: '2020-01-01T00:00:00', + RequiredDate: '2020-01-29T00:00:00', + ShippedDate: '2020-01-07T00:00:00', + ShipVia: 1, + Freight: 4.8700, + ShipName: 'Wellington Importadora', + ShipAddress: 'Rua do Mercado, 12', + ShipCity: 'Resende', + ShipRegion: 'SP', + ShipPostalCode: '08737-363', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10810, + CustomerID: 'LAUGB', + EmployeeID: 2, + OrderDate: '2020-01-01T00:00:00', + RequiredDate: '2020-01-29T00:00:00', + ShippedDate: '2020-01-07T00:00:00', + ShipVia: 3, + Freight: 4.3300, + ShipName: 'Laughing Bacchus Wine Cellars', + ShipAddress: '2319 Elm St.', + ShipCity: 'Vancouver', + ShipRegion: 'BC', + ShipPostalCode: 'V3F 2K1', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10811, + CustomerID: 'LINOD', + EmployeeID: 8, + OrderDate: '2020-01-02T00:00:00', + RequiredDate: '2020-01-30T00:00:00', + ShippedDate: '2020-01-08T00:00:00', + ShipVia: 1, + Freight: 31.2200, + ShipName: 'LINO-Delicateses', + ShipAddress: 'Ave. 5 de Mayo Porlamar', + ShipCity: 'I. de Margarita', + ShipRegion: 'Nueva Esparta', + ShipPostalCode: '4980', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10812, + CustomerID: 'REGGC', + EmployeeID: 5, + OrderDate: '2020-01-02T00:00:00', + RequiredDate: '2020-01-30T00:00:00', + ShippedDate: '2020-01-12T00:00:00', + ShipVia: 1, + Freight: 59.7800, + ShipName: 'Reggiani Caseifici', + ShipAddress: 'Strada Provinciale 124', + ShipCity: 'Reggio Emilia', + ShipRegion: null, + ShipPostalCode: '42100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10813, + CustomerID: 'RICAR', + EmployeeID: 1, + OrderDate: '2020-01-05T00:00:00', + RequiredDate: '2020-02-02T00:00:00', + ShippedDate: '2020-01-09T00:00:00', + ShipVia: 1, + Freight: 47.3800, + ShipName: 'Ricardo Adocicados', + ShipAddress: 'Av. Copacabana, 267', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-890', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10814, + CustomerID: 'VICTE', + EmployeeID: 3, + OrderDate: '2020-01-05T00:00:00', + RequiredDate: '2020-02-02T00:00:00', + ShippedDate: '2020-01-14T00:00:00', + ShipVia: 3, + Freight: 130.9400, + ShipName: 'Victuailles en stock', + ShipAddress: '2, rue du Commerce', + ShipCity: 'Lyon', + ShipRegion: null, + ShipPostalCode: '69004', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10815, + CustomerID: 'SAVEA', + EmployeeID: 2, + OrderDate: '2020-01-05T00:00:00', + RequiredDate: '2020-02-02T00:00:00', + ShippedDate: '2020-01-14T00:00:00', + ShipVia: 3, + Freight: 14.6200, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10816, + CustomerID: 'GREAL', + EmployeeID: 4, + OrderDate: '2020-01-06T00:00:00', + RequiredDate: '2020-02-03T00:00:00', + ShippedDate: '2020-02-04T00:00:00', + ShipVia: 2, + Freight: 719.7800, + ShipName: 'Great Lakes Food Market', + ShipAddress: '2732 Baker Blvd.', + ShipCity: 'Eugene', + ShipRegion: 'OR', + ShipPostalCode: '97403', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10817, + CustomerID: 'KOENE', + EmployeeID: 3, + OrderDate: '2020-01-06T00:00:00', + RequiredDate: '2020-01-20T00:00:00', + ShippedDate: '2020-01-13T00:00:00', + ShipVia: 2, + Freight: 306.0700, + ShipName: 'Königlich Essen', + ShipAddress: 'Maubelstr. 90', + ShipCity: 'Brandenburg', + ShipRegion: null, + ShipPostalCode: '14776', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10818, + CustomerID: 'MAGAA', + EmployeeID: 7, + OrderDate: '2020-01-07T00:00:00', + RequiredDate: '2020-02-04T00:00:00', + ShippedDate: '2020-01-12T00:00:00', + ShipVia: 3, + Freight: 65.4800, + ShipName: 'Magazzini Alimentari Riuniti', + ShipAddress: 'Via Ludovico il Moro 22', + ShipCity: 'Bergamo', + ShipRegion: null, + ShipPostalCode: '24100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10819, + CustomerID: 'CACTU', + EmployeeID: 2, + OrderDate: '2020-01-07T00:00:00', + RequiredDate: '2020-02-04T00:00:00', + ShippedDate: '2020-01-16T00:00:00', + ShipVia: 3, + Freight: 19.7600, + ShipName: 'Cactus Comidas para llevar', + ShipAddress: 'Cerrito 333', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10820, + CustomerID: 'RATTC', + EmployeeID: 3, + OrderDate: '2020-01-07T00:00:00', + RequiredDate: '2020-02-04T00:00:00', + ShippedDate: '2020-01-13T00:00:00', + ShipVia: 2, + Freight: 37.5200, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10821, + CustomerID: 'SPLIR', + EmployeeID: 1, + OrderDate: '2020-01-08T00:00:00', + RequiredDate: '2020-02-05T00:00:00', + ShippedDate: '2020-01-15T00:00:00', + ShipVia: 1, + Freight: 36.6800, + ShipName: 'Split Rail Beer & Ale', + ShipAddress: 'P.O. Box 555', + ShipCity: 'Lander', + ShipRegion: 'WY', + ShipPostalCode: '82520', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10822, + CustomerID: 'TRAIH', + EmployeeID: 6, + OrderDate: '2020-01-08T00:00:00', + RequiredDate: '2020-02-05T00:00:00', + ShippedDate: '2020-01-16T00:00:00', + ShipVia: 3, + Freight: 7.0000, + ShipName: 'Trail\'s Head Gourmet Provisioners', + ShipAddress: '722 DaVinci Blvd.', + ShipCity: 'Kirkland', + ShipRegion: 'WA', + ShipPostalCode: '98034', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10823, + CustomerID: 'LILAS', + EmployeeID: 5, + OrderDate: '2020-01-09T00:00:00', + RequiredDate: '2020-02-06T00:00:00', + ShippedDate: '2020-01-13T00:00:00', + ShipVia: 2, + Freight: 163.9700, + ShipName: 'LILA-Supermercado', + ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', + ShipCity: 'Barquisimeto', + ShipRegion: 'Lara', + ShipPostalCode: '3508', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10824, + CustomerID: 'FOLKO', + EmployeeID: 8, + OrderDate: '2020-01-09T00:00:00', + RequiredDate: '2020-02-06T00:00:00', + ShippedDate: '2020-01-30T00:00:00', + ShipVia: 1, + Freight: 1.2300, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10825, + CustomerID: 'DRACD', + EmployeeID: 1, + OrderDate: '2020-01-09T00:00:00', + RequiredDate: '2020-02-06T00:00:00', + ShippedDate: '2020-01-14T00:00:00', + ShipVia: 1, + Freight: 79.2500, + ShipName: 'Drachenblut Delikatessen', + ShipAddress: 'Walserweg 21', + ShipCity: 'Aachen', + ShipRegion: null, + ShipPostalCode: '52066', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10826, + CustomerID: 'BLONP', + EmployeeID: 6, + OrderDate: '2020-01-12T00:00:00', + RequiredDate: '2020-02-09T00:00:00', + ShippedDate: '2020-02-06T00:00:00', + ShipVia: 1, + Freight: 7.0900, + ShipName: 'Blondel père et fils', + ShipAddress: '24, place Kléber', + ShipCity: 'Strasbourg', + ShipRegion: null, + ShipPostalCode: '67000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10827, + CustomerID: 'BONAP', + EmployeeID: 1, + OrderDate: '2020-01-12T00:00:00', + RequiredDate: '2020-01-26T00:00:00', + ShippedDate: '2020-02-06T00:00:00', + ShipVia: 2, + Freight: 63.5400, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10828, + CustomerID: 'RANCH', + EmployeeID: 9, + OrderDate: '2020-01-13T00:00:00', + RequiredDate: '2020-01-27T00:00:00', + ShippedDate: '2020-02-04T00:00:00', + ShipVia: 1, + Freight: 90.8500, + ShipName: 'Rancho grande', + ShipAddress: 'Av. del Libertador 900', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10829, + CustomerID: 'ISLAT', + EmployeeID: 9, + OrderDate: '2020-01-13T00:00:00', + RequiredDate: '2020-02-10T00:00:00', + ShippedDate: '2020-01-23T00:00:00', + ShipVia: 1, + Freight: 154.7200, + ShipName: 'Island Trading', + ShipAddress: 'Garden House Crowther Way', + ShipCity: 'Cowes', + ShipRegion: 'Isle of Wight', + ShipPostalCode: 'PO31 7PJ', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10830, + CustomerID: 'TRADH', + EmployeeID: 4, + OrderDate: '2020-01-13T00:00:00', + RequiredDate: '2020-02-24T00:00:00', + ShippedDate: '2020-01-21T00:00:00', + ShipVia: 2, + Freight: 81.8300, + ShipName: 'Tradiçao Hipermercados', + ShipAddress: 'Av. Inês de Castro, 414', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05634-030', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10831, + CustomerID: 'SANTG', + EmployeeID: 3, + OrderDate: '2020-01-14T00:00:00', + RequiredDate: '2020-02-11T00:00:00', + ShippedDate: '2020-01-23T00:00:00', + ShipVia: 2, + Freight: 72.1900, + ShipName: 'Santé Gourmet', + ShipAddress: 'Erling Skakkes gate 78', + ShipCity: 'Stavern', + ShipRegion: null, + ShipPostalCode: '4110', + ShipCountry: 'Norway', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10832, + CustomerID: 'LAMAI', + EmployeeID: 2, + OrderDate: '2020-01-14T00:00:00', + RequiredDate: '2020-02-11T00:00:00', + ShippedDate: '2020-01-19T00:00:00', + ShipVia: 2, + Freight: 43.2600, + ShipName: 'La maison d\'Asie', + ShipAddress: '1 rue Alsace-Lorraine', + ShipCity: 'Toulouse', + ShipRegion: null, + ShipPostalCode: '31000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10833, + CustomerID: 'OTTIK', + EmployeeID: 6, + OrderDate: '2020-01-15T00:00:00', + RequiredDate: '2020-02-12T00:00:00', + ShippedDate: '2020-01-23T00:00:00', + ShipVia: 2, + Freight: 71.4900, + ShipName: 'Ottilies Käseladen', + ShipAddress: 'Mehrheimerstr. 369', + ShipCity: 'Köln', + ShipRegion: null, + ShipPostalCode: '50739', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10834, + CustomerID: 'TRADH', + EmployeeID: 1, + OrderDate: '2020-01-15T00:00:00', + RequiredDate: '2020-02-12T00:00:00', + ShippedDate: '2020-01-19T00:00:00', + ShipVia: 3, + Freight: 29.7800, + ShipName: 'Tradiçao Hipermercados', + ShipAddress: 'Av. Inês de Castro, 414', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05634-030', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10835, + CustomerID: 'ALFKI', + EmployeeID: 1, + OrderDate: '2020-01-15T00:00:00', + RequiredDate: '2020-02-12T00:00:00', + ShippedDate: '2020-01-21T00:00:00', + ShipVia: 3, + Freight: 69.5300, + ShipName: 'Alfred\'s Futterkiste', + ShipAddress: 'Obere Str. 57', + ShipCity: 'Berlin', + ShipRegion: null, + ShipPostalCode: '12209', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10836, + CustomerID: 'ERNSH', + EmployeeID: 7, + OrderDate: '2020-01-16T00:00:00', + RequiredDate: '2020-02-13T00:00:00', + ShippedDate: '2020-01-21T00:00:00', + ShipVia: 1, + Freight: 411.8800, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10837, + CustomerID: 'BERGS', + EmployeeID: 9, + OrderDate: '2020-01-16T00:00:00', + RequiredDate: '2020-02-13T00:00:00', + ShippedDate: '2020-01-23T00:00:00', + ShipVia: 3, + Freight: 13.3200, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10838, + CustomerID: 'LINOD', + EmployeeID: 3, + OrderDate: '2020-01-19T00:00:00', + RequiredDate: '2020-02-16T00:00:00', + ShippedDate: '2020-01-23T00:00:00', + ShipVia: 3, + Freight: 59.2800, + ShipName: 'LINO-Delicateses', + ShipAddress: 'Ave. 5 de Mayo Porlamar', + ShipCity: 'I. de Margarita', + ShipRegion: 'Nueva Esparta', + ShipPostalCode: '4980', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10839, + CustomerID: 'TRADH', + EmployeeID: 3, + OrderDate: '2020-01-19T00:00:00', + RequiredDate: '2020-02-16T00:00:00', + ShippedDate: '2020-01-22T00:00:00', + ShipVia: 3, + Freight: 35.4300, + ShipName: 'Tradiçao Hipermercados', + ShipAddress: 'Av. Inês de Castro, 414', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05634-030', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10840, + CustomerID: 'LINOD', + EmployeeID: 4, + OrderDate: '2020-01-19T00:00:00', + RequiredDate: '2020-03-02T00:00:00', + ShippedDate: '2020-02-16T00:00:00', + ShipVia: 2, + Freight: 2.7100, + ShipName: 'LINO-Delicateses', + ShipAddress: 'Ave. 5 de Mayo Porlamar', + ShipCity: 'I. de Margarita', + ShipRegion: 'Nueva Esparta', + ShipPostalCode: '4980', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10841, + CustomerID: 'SUPRD', + EmployeeID: 5, + OrderDate: '2020-01-20T00:00:00', + RequiredDate: '2020-02-17T00:00:00', + ShippedDate: '2020-01-29T00:00:00', + ShipVia: 2, + Freight: 424.3000, + ShipName: 'Suprêmes délices', + ShipAddress: 'Boulevard Tirou, 255', + ShipCity: 'Charleroi', + ShipRegion: null, + ShipPostalCode: 'B-6000', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10842, + CustomerID: 'TORTU', + EmployeeID: 1, + OrderDate: '2020-01-20T00:00:00', + RequiredDate: '2020-02-17T00:00:00', + ShippedDate: '2020-01-29T00:00:00', + ShipVia: 3, + Freight: 54.4200, + ShipName: 'Tortuga Restaurante', + ShipAddress: 'Avda. Azteca 123', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10843, + CustomerID: 'VICTE', + EmployeeID: 4, + OrderDate: '2020-01-21T00:00:00', + RequiredDate: '2020-02-18T00:00:00', + ShippedDate: '2020-01-26T00:00:00', + ShipVia: 2, + Freight: 9.2600, + ShipName: 'Victuailles en stock', + ShipAddress: '2, rue du Commerce', + ShipCity: 'Lyon', + ShipRegion: null, + ShipPostalCode: '69004', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10844, + CustomerID: 'PICCO', + EmployeeID: 8, + OrderDate: '2020-01-21T00:00:00', + RequiredDate: '2020-02-18T00:00:00', + ShippedDate: '2020-01-26T00:00:00', + ShipVia: 2, + Freight: 25.2200, + ShipName: 'Piccolo und mehr', + ShipAddress: 'Geislweg 14', + ShipCity: 'Salzburg', + ShipRegion: null, + ShipPostalCode: '5020', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10845, + CustomerID: 'QUICK', + EmployeeID: 8, + OrderDate: '2020-01-21T00:00:00', + RequiredDate: '2020-02-04T00:00:00', + ShippedDate: '2020-01-30T00:00:00', + ShipVia: 1, + Freight: 212.9800, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10846, + CustomerID: 'SUPRD', + EmployeeID: 2, + OrderDate: '2020-01-22T00:00:00', + RequiredDate: '2020-03-05T00:00:00', + ShippedDate: '2020-01-23T00:00:00', + ShipVia: 3, + Freight: 56.4600, + ShipName: 'Suprêmes délices', + ShipAddress: 'Boulevard Tirou, 255', + ShipCity: 'Charleroi', + ShipRegion: null, + ShipPostalCode: 'B-6000', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10847, + CustomerID: 'SAVEA', + EmployeeID: 4, + OrderDate: '2020-01-22T00:00:00', + RequiredDate: '2020-02-05T00:00:00', + ShippedDate: '2020-02-10T00:00:00', + ShipVia: 3, + Freight: 487.5700, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10848, + CustomerID: 'CONSH', + EmployeeID: 7, + OrderDate: '2020-01-23T00:00:00', + RequiredDate: '2020-02-20T00:00:00', + ShippedDate: '2020-01-29T00:00:00', + ShipVia: 2, + Freight: 38.2400, + ShipName: 'Consolidated Holdings', + ShipAddress: 'Berkeley Gardens 12 Brewery', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'WX1 6LT', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10849, + CustomerID: 'KOENE', + EmployeeID: 9, + OrderDate: '2020-01-23T00:00:00', + RequiredDate: '2020-02-20T00:00:00', + ShippedDate: '2020-01-30T00:00:00', + ShipVia: 2, + Freight: 0.5600, + ShipName: 'Königlich Essen', + ShipAddress: 'Maubelstr. 90', + ShipCity: 'Brandenburg', + ShipRegion: null, + ShipPostalCode: '14776', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10850, + CustomerID: 'VICTE', + EmployeeID: 1, + OrderDate: '2020-01-23T00:00:00', + RequiredDate: '2020-03-06T00:00:00', + ShippedDate: '2020-01-30T00:00:00', + ShipVia: 1, + Freight: 49.1900, + ShipName: 'Victuailles en stock', + ShipAddress: '2, rue du Commerce', + ShipCity: 'Lyon', + ShipRegion: null, + ShipPostalCode: '69004', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10851, + CustomerID: 'RICAR', + EmployeeID: 5, + OrderDate: '2020-01-26T00:00:00', + RequiredDate: '2020-02-23T00:00:00', + ShippedDate: '2020-02-02T00:00:00', + ShipVia: 1, + Freight: 160.5500, + ShipName: 'Ricardo Adocicados', + ShipAddress: 'Av. Copacabana, 267', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-890', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10852, + CustomerID: 'RATTC', + EmployeeID: 8, + OrderDate: '2020-01-26T00:00:00', + RequiredDate: '2020-02-09T00:00:00', + ShippedDate: '2020-01-30T00:00:00', + ShipVia: 1, + Freight: 174.0500, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10853, + CustomerID: 'BLAUS', + EmployeeID: 9, + OrderDate: '2020-01-27T00:00:00', + RequiredDate: '2020-02-24T00:00:00', + ShippedDate: '2020-02-03T00:00:00', + ShipVia: 2, + Freight: 53.8300, + ShipName: 'Blauer See Delikatessen', + ShipAddress: 'Forsterstr. 57', + ShipCity: 'Mannheim', + ShipRegion: null, + ShipPostalCode: '68306', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10854, + CustomerID: 'ERNSH', + EmployeeID: 3, + OrderDate: '2020-01-27T00:00:00', + RequiredDate: '2020-02-24T00:00:00', + ShippedDate: '2020-02-05T00:00:00', + ShipVia: 2, + Freight: 100.2200, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10855, + CustomerID: 'OLDWO', + EmployeeID: 3, + OrderDate: '2020-01-27T00:00:00', + RequiredDate: '2020-02-24T00:00:00', + ShippedDate: '2020-02-04T00:00:00', + ShipVia: 1, + Freight: 170.9700, + ShipName: 'Old World Delicatessen', + ShipAddress: '2743 Bering St.', + ShipCity: 'Anchorage', + ShipRegion: 'AK', + ShipPostalCode: '99508', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10856, + CustomerID: 'ANTON', + EmployeeID: 3, + OrderDate: '2020-01-28T00:00:00', + RequiredDate: '2020-02-25T00:00:00', + ShippedDate: '2020-02-10T00:00:00', + ShipVia: 2, + Freight: 58.4300, + ShipName: 'Antonio Moreno Taquería', + ShipAddress: 'Mataderos 2312', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05023', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10857, + CustomerID: 'BERGS', + EmployeeID: 8, + OrderDate: '2020-01-28T00:00:00', + RequiredDate: '2020-02-25T00:00:00', + ShippedDate: '2020-02-06T00:00:00', + ShipVia: 2, + Freight: 188.8500, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10858, + CustomerID: 'LACOR', + EmployeeID: 2, + OrderDate: '2020-01-29T00:00:00', + RequiredDate: '2020-02-26T00:00:00', + ShippedDate: '2020-02-03T00:00:00', + ShipVia: 1, + Freight: 52.5100, + ShipName: 'La corne d\'abondance', + ShipAddress: '67, avenue de l\'Europe', + ShipCity: 'Versailles', + ShipRegion: null, + ShipPostalCode: '78000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10859, + CustomerID: 'FRANK', + EmployeeID: 1, + OrderDate: '2020-01-29T00:00:00', + RequiredDate: '2020-02-26T00:00:00', + ShippedDate: '2020-02-02T00:00:00', + ShipVia: 2, + Freight: 76.1000, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10860, + CustomerID: 'FRANR', + EmployeeID: 3, + OrderDate: '2020-01-29T00:00:00', + RequiredDate: '2020-02-26T00:00:00', + ShippedDate: '2020-02-04T00:00:00', + ShipVia: 3, + Freight: 19.2600, + ShipName: 'France restauration', + ShipAddress: '54, rue Royale', + ShipCity: 'Nantes', + ShipRegion: null, + ShipPostalCode: '44000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10861, + CustomerID: 'WHITC', + EmployeeID: 4, + OrderDate: '2020-01-30T00:00:00', + RequiredDate: '2020-02-27T00:00:00', + ShippedDate: '2020-02-17T00:00:00', + ShipVia: 2, + Freight: 14.9300, + ShipName: 'White Clover Markets', + ShipAddress: '1029 - 12th Ave. S.', + ShipCity: 'Seattle', + ShipRegion: 'WA', + ShipPostalCode: '98124', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10862, + CustomerID: 'LEHMS', + EmployeeID: 8, + OrderDate: '2020-01-30T00:00:00', + RequiredDate: '2020-03-13T00:00:00', + ShippedDate: '2020-02-02T00:00:00', + ShipVia: 2, + Freight: 53.2300, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10863, + CustomerID: 'HILAA', + EmployeeID: 4, + OrderDate: '2020-02-02T00:00:00', + RequiredDate: '2020-03-02T00:00:00', + ShippedDate: '2020-02-17T00:00:00', + ShipVia: 2, + Freight: 30.2600, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10864, + CustomerID: 'AROUT', + EmployeeID: 4, + OrderDate: '2020-02-02T00:00:00', + RequiredDate: '2020-03-02T00:00:00', + ShippedDate: '2020-02-09T00:00:00', + ShipVia: 2, + Freight: 3.0400, + ShipName: 'Around the Horn', + ShipAddress: 'Brook Farm Stratford St. Mary', + ShipCity: 'Colchester', + ShipRegion: 'Essex', + ShipPostalCode: 'CO7 6JX', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10865, + CustomerID: 'QUICK', + EmployeeID: 2, + OrderDate: '2020-02-02T00:00:00', + RequiredDate: '2020-02-16T00:00:00', + ShippedDate: '2020-02-12T00:00:00', + ShipVia: 1, + Freight: 348.1400, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10866, + CustomerID: 'BERGS', + EmployeeID: 5, + OrderDate: '2020-02-03T00:00:00', + RequiredDate: '2020-03-03T00:00:00', + ShippedDate: '2020-02-12T00:00:00', + ShipVia: 1, + Freight: 109.1100, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10867, + CustomerID: 'LONEP', + EmployeeID: 6, + OrderDate: '2020-02-03T00:00:00', + RequiredDate: '2020-03-17T00:00:00', + ShippedDate: '2020-02-11T00:00:00', + ShipVia: 1, + Freight: 1.9300, + ShipName: 'Lonesome Pine Restaurant', + ShipAddress: '89 Chiaroscuro Rd.', + ShipCity: 'Portland', + ShipRegion: 'OR', + ShipPostalCode: '97219', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10868, + CustomerID: 'QUEEN', + EmployeeID: 7, + OrderDate: '2020-02-04T00:00:00', + RequiredDate: '2020-03-04T00:00:00', + ShippedDate: '2020-02-23T00:00:00', + ShipVia: 2, + Freight: 191.2700, + ShipName: 'Queen Cozinha', + ShipAddress: 'Alameda dos Canàrios, 891', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05487-020', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10869, + CustomerID: 'SEVES', + EmployeeID: 5, + OrderDate: '2020-02-04T00:00:00', + RequiredDate: '2020-03-04T00:00:00', + ShippedDate: '2020-02-09T00:00:00', + ShipVia: 1, + Freight: 143.2800, + ShipName: 'Seven Seas Imports', + ShipAddress: '90 Wadhurst Rd.', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'OX15 4NB', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10870, + CustomerID: 'WOLZA', + EmployeeID: 5, + OrderDate: '2020-02-04T00:00:00', + RequiredDate: '2020-03-04T00:00:00', + ShippedDate: '2020-02-13T00:00:00', + ShipVia: 3, + Freight: 12.0400, + ShipName: 'Wolski Zajazd', + ShipAddress: 'ul. Filtrowa 68', + ShipCity: 'Warszawa', + ShipRegion: null, + ShipPostalCode: '01-012', + ShipCountry: 'Poland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10871, + CustomerID: 'BONAP', + EmployeeID: 9, + OrderDate: '2020-02-05T00:00:00', + RequiredDate: '2020-03-05T00:00:00', + ShippedDate: '2020-02-10T00:00:00', + ShipVia: 2, + Freight: 112.2700, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10872, + CustomerID: 'GODOS', + EmployeeID: 5, + OrderDate: '2020-02-05T00:00:00', + RequiredDate: '2020-03-05T00:00:00', + ShippedDate: '2020-02-09T00:00:00', + ShipVia: 2, + Freight: 175.3200, + ShipName: 'Godos Cocina Típica', + ShipAddress: 'C/ Romero, 33', + ShipCity: 'Sevilla', + ShipRegion: null, + ShipPostalCode: '41101', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10873, + CustomerID: 'WILMK', + EmployeeID: 4, + OrderDate: '2020-02-06T00:00:00', + RequiredDate: '2020-03-06T00:00:00', + ShippedDate: '2020-02-09T00:00:00', + ShipVia: 1, + Freight: 0.8200, + ShipName: 'Wilman Kala', + ShipAddress: 'Keskuskatu 45', + ShipCity: 'Helsinki', + ShipRegion: null, + ShipPostalCode: '21240', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10874, + CustomerID: 'GODOS', + EmployeeID: 5, + OrderDate: '2020-02-06T00:00:00', + RequiredDate: '2020-03-06T00:00:00', + ShippedDate: '2020-02-11T00:00:00', + ShipVia: 2, + Freight: 19.5800, + ShipName: 'Godos Cocina Típica', + ShipAddress: 'C/ Romero, 33', + ShipCity: 'Sevilla', + ShipRegion: null, + ShipPostalCode: '41101', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10875, + CustomerID: 'BERGS', + EmployeeID: 4, + OrderDate: '2020-02-06T00:00:00', + RequiredDate: '2020-03-06T00:00:00', + ShippedDate: '2020-03-03T00:00:00', + ShipVia: 2, + Freight: 32.3700, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10876, + CustomerID: 'BONAP', + EmployeeID: 7, + OrderDate: '2020-02-09T00:00:00', + RequiredDate: '2020-03-09T00:00:00', + ShippedDate: '2020-02-12T00:00:00', + ShipVia: 3, + Freight: 60.4200, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10877, + CustomerID: 'RICAR', + EmployeeID: 1, + OrderDate: '2020-02-09T00:00:00', + RequiredDate: '2020-03-09T00:00:00', + ShippedDate: '2020-02-19T00:00:00', + ShipVia: 1, + Freight: 38.0600, + ShipName: 'Ricardo Adocicados', + ShipAddress: 'Av. Copacabana, 267', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-890', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10878, + CustomerID: 'QUICK', + EmployeeID: 4, + OrderDate: '2020-02-10T00:00:00', + RequiredDate: '2020-03-10T00:00:00', + ShippedDate: '2020-02-12T00:00:00', + ShipVia: 1, + Freight: 46.6900, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10879, + CustomerID: 'WILMK', + EmployeeID: 3, + OrderDate: '2020-02-10T00:00:00', + RequiredDate: '2020-03-10T00:00:00', + ShippedDate: '2020-02-12T00:00:00', + ShipVia: 3, + Freight: 8.5000, + ShipName: 'Wilman Kala', + ShipAddress: 'Keskuskatu 45', + ShipCity: 'Helsinki', + ShipRegion: null, + ShipPostalCode: '21240', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10880, + CustomerID: 'FOLKO', + EmployeeID: 7, + OrderDate: '2020-02-10T00:00:00', + RequiredDate: '2020-03-24T00:00:00', + ShippedDate: '2020-02-18T00:00:00', + ShipVia: 1, + Freight: 88.0100, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10881, + CustomerID: 'CACTU', + EmployeeID: 4, + OrderDate: '2020-02-11T00:00:00', + RequiredDate: '2020-03-11T00:00:00', + ShippedDate: '2020-02-18T00:00:00', + ShipVia: 1, + Freight: 2.8400, + ShipName: 'Cactus Comidas para llevar', + ShipAddress: 'Cerrito 333', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10882, + CustomerID: 'SAVEA', + EmployeeID: 4, + OrderDate: '2020-02-11T00:00:00', + RequiredDate: '2020-03-11T00:00:00', + ShippedDate: '2020-02-20T00:00:00', + ShipVia: 3, + Freight: 23.1000, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10883, + CustomerID: 'LONEP', + EmployeeID: 8, + OrderDate: '2020-02-12T00:00:00', + RequiredDate: '2020-03-12T00:00:00', + ShippedDate: '2020-02-20T00:00:00', + ShipVia: 3, + Freight: 0.5300, + ShipName: 'Lonesome Pine Restaurant', + ShipAddress: '89 Chiaroscuro Rd.', + ShipCity: 'Portland', + ShipRegion: 'OR', + ShipPostalCode: '97219', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10884, + CustomerID: 'LETSS', + EmployeeID: 4, + OrderDate: '2020-02-12T00:00:00', + RequiredDate: '2020-03-12T00:00:00', + ShippedDate: '2020-02-13T00:00:00', + ShipVia: 2, + Freight: 90.9700, + ShipName: 'Let\'s Stop N Shop', + ShipAddress: '87 Polk St. Suite 5', + ShipCity: 'San Francisco', + ShipRegion: 'CA', + ShipPostalCode: '94117', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10885, + CustomerID: 'SUPRD', + EmployeeID: 6, + OrderDate: '2020-02-12T00:00:00', + RequiredDate: '2020-03-12T00:00:00', + ShippedDate: '2020-02-18T00:00:00', + ShipVia: 3, + Freight: 5.6400, + ShipName: 'Suprêmes délices', + ShipAddress: 'Boulevard Tirou, 255', + ShipCity: 'Charleroi', + ShipRegion: null, + ShipPostalCode: 'B-6000', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10886, + CustomerID: 'HANAR', + EmployeeID: 1, + OrderDate: '2020-02-13T00:00:00', + RequiredDate: '2020-03-13T00:00:00', + ShippedDate: '2020-03-02T00:00:00', + ShipVia: 1, + Freight: 4.9900, + ShipName: 'Hanari Carnes', + ShipAddress: 'Rua do Paço, 67', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '05454-876', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10887, + CustomerID: 'GALED', + EmployeeID: 8, + OrderDate: '2020-02-13T00:00:00', + RequiredDate: '2020-03-13T00:00:00', + ShippedDate: '2020-02-16T00:00:00', + ShipVia: 3, + Freight: 1.2500, + ShipName: 'Galería del gastronómo', + ShipAddress: 'Rambla de Cataluña, 23', + ShipCity: 'Barcelona', + ShipRegion: null, + ShipPostalCode: '8022', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10888, + CustomerID: 'GODOS', + EmployeeID: 1, + OrderDate: '2020-02-16T00:00:00', + RequiredDate: '2020-03-16T00:00:00', + ShippedDate: '2020-02-23T00:00:00', + ShipVia: 2, + Freight: 51.8700, + ShipName: 'Godos Cocina Típica', + ShipAddress: 'C/ Romero, 33', + ShipCity: 'Sevilla', + ShipRegion: null, + ShipPostalCode: '41101', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10889, + CustomerID: 'RATTC', + EmployeeID: 9, + OrderDate: '2020-02-16T00:00:00', + RequiredDate: '2020-03-16T00:00:00', + ShippedDate: '2020-02-23T00:00:00', + ShipVia: 3, + Freight: 280.6100, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10890, + CustomerID: 'DUMON', + EmployeeID: 7, + OrderDate: '2020-02-16T00:00:00', + RequiredDate: '2020-03-16T00:00:00', + ShippedDate: '2020-02-18T00:00:00', + ShipVia: 1, + Freight: 32.7600, + ShipName: 'Du monde entier', + ShipAddress: '67, rue des Cinquante Otages', + ShipCity: 'Nantes', + ShipRegion: null, + ShipPostalCode: '44000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10891, + CustomerID: 'LEHMS', + EmployeeID: 7, + OrderDate: '2020-02-17T00:00:00', + RequiredDate: '2020-03-17T00:00:00', + ShippedDate: '2020-02-19T00:00:00', + ShipVia: 2, + Freight: 20.3700, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10892, + CustomerID: 'MAISD', + EmployeeID: 4, + OrderDate: '2020-02-17T00:00:00', + RequiredDate: '2020-03-17T00:00:00', + ShippedDate: '2020-02-19T00:00:00', + ShipVia: 2, + Freight: 120.2700, + ShipName: 'Maison Dewey', + ShipAddress: 'Rue Joseph-Bens 532', + ShipCity: 'Bruxelles', + ShipRegion: null, + ShipPostalCode: 'B-1180', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10893, + CustomerID: 'KOENE', + EmployeeID: 9, + OrderDate: '2020-02-18T00:00:00', + RequiredDate: '2020-03-18T00:00:00', + ShippedDate: '2020-02-20T00:00:00', + ShipVia: 2, + Freight: 77.7800, + ShipName: 'Königlich Essen', + ShipAddress: 'Maubelstr. 90', + ShipCity: 'Brandenburg', + ShipRegion: null, + ShipPostalCode: '14776', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10894, + CustomerID: 'SAVEA', + EmployeeID: 1, + OrderDate: '2020-02-18T00:00:00', + RequiredDate: '2020-03-18T00:00:00', + ShippedDate: '2020-02-20T00:00:00', + ShipVia: 1, + Freight: 116.1300, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10895, + CustomerID: 'ERNSH', + EmployeeID: 3, + OrderDate: '2020-02-18T00:00:00', + RequiredDate: '2020-03-18T00:00:00', + ShippedDate: '2020-02-23T00:00:00', + ShipVia: 1, + Freight: 162.7500, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10896, + CustomerID: 'MAISD', + EmployeeID: 7, + OrderDate: '2020-02-19T00:00:00', + RequiredDate: '2020-03-19T00:00:00', + ShippedDate: '2020-02-27T00:00:00', + ShipVia: 3, + Freight: 32.4500, + ShipName: 'Maison Dewey', + ShipAddress: 'Rue Joseph-Bens 532', + ShipCity: 'Bruxelles', + ShipRegion: null, + ShipPostalCode: 'B-1180', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10897, + CustomerID: 'HUNGO', + EmployeeID: 3, + OrderDate: '2020-02-19T00:00:00', + RequiredDate: '2020-03-19T00:00:00', + ShippedDate: '2020-02-25T00:00:00', + ShipVia: 2, + Freight: 603.5400, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10898, + CustomerID: 'OCEAN', + EmployeeID: 4, + OrderDate: '2020-02-20T00:00:00', + RequiredDate: '2020-03-20T00:00:00', + ShippedDate: '2020-03-06T00:00:00', + ShipVia: 2, + Freight: 1.2700, + ShipName: 'Océano Atlántico Ltda.', + ShipAddress: 'Ing. Gustavo Moncada 8585 Piso 20-A', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10899, + CustomerID: 'LILAS', + EmployeeID: 5, + OrderDate: '2020-02-20T00:00:00', + RequiredDate: '2020-03-20T00:00:00', + ShippedDate: '2020-02-26T00:00:00', + ShipVia: 3, + Freight: 1.2100, + ShipName: 'LILA-Supermercado', + ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', + ShipCity: 'Barquisimeto', + ShipRegion: 'Lara', + ShipPostalCode: '3508', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10900, + CustomerID: 'WELLI', + EmployeeID: 1, + OrderDate: '2020-02-20T00:00:00', + RequiredDate: '2020-03-20T00:00:00', + ShippedDate: '2020-03-04T00:00:00', + ShipVia: 2, + Freight: 1.6600, + ShipName: 'Wellington Importadora', + ShipAddress: 'Rua do Mercado, 12', + ShipCity: 'Resende', + ShipRegion: 'SP', + ShipPostalCode: '08737-363', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10901, + CustomerID: 'HILAA', + EmployeeID: 4, + OrderDate: '2020-02-23T00:00:00', + RequiredDate: '2020-03-23T00:00:00', + ShippedDate: '2020-02-26T00:00:00', + ShipVia: 1, + Freight: 62.0900, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10902, + CustomerID: 'FOLKO', + EmployeeID: 1, + OrderDate: '2020-02-23T00:00:00', + RequiredDate: '2020-03-23T00:00:00', + ShippedDate: '2020-03-03T00:00:00', + ShipVia: 1, + Freight: 44.1500, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10903, + CustomerID: 'HANAR', + EmployeeID: 3, + OrderDate: '2020-02-24T00:00:00', + RequiredDate: '2020-03-24T00:00:00', + ShippedDate: '2020-03-04T00:00:00', + ShipVia: 3, + Freight: 36.7100, + ShipName: 'Hanari Carnes', + ShipAddress: 'Rua do Paço, 67', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '05454-876', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10904, + CustomerID: 'WHITC', + EmployeeID: 3, + OrderDate: '2020-02-24T00:00:00', + RequiredDate: '2020-03-24T00:00:00', + ShippedDate: '2020-02-27T00:00:00', + ShipVia: 3, + Freight: 162.9500, + ShipName: 'White Clover Markets', + ShipAddress: '1029 - 12th Ave. S.', + ShipCity: 'Seattle', + ShipRegion: 'WA', + ShipPostalCode: '98124', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10905, + CustomerID: 'WELLI', + EmployeeID: 9, + OrderDate: '2020-02-24T00:00:00', + RequiredDate: '2020-03-24T00:00:00', + ShippedDate: '2020-03-06T00:00:00', + ShipVia: 2, + Freight: 13.7200, + ShipName: 'Wellington Importadora', + ShipAddress: 'Rua do Mercado, 12', + ShipCity: 'Resende', + ShipRegion: 'SP', + ShipPostalCode: '08737-363', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10906, + CustomerID: 'WOLZA', + EmployeeID: 4, + OrderDate: '2020-02-25T00:00:00', + RequiredDate: '2020-03-11T00:00:00', + ShippedDate: '2020-03-03T00:00:00', + ShipVia: 3, + Freight: 26.2900, + ShipName: 'Wolski Zajazd', + ShipAddress: 'ul. Filtrowa 68', + ShipCity: 'Warszawa', + ShipRegion: null, + ShipPostalCode: '01-012', + ShipCountry: 'Poland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10907, + CustomerID: 'SPECD', + EmployeeID: 6, + OrderDate: '2020-02-25T00:00:00', + RequiredDate: '2020-03-25T00:00:00', + ShippedDate: '2020-02-27T00:00:00', + ShipVia: 3, + Freight: 9.1900, + ShipName: 'Spécialités du monde', + ShipAddress: '25, rue Lauriston', + ShipCity: 'Paris', + ShipRegion: null, + ShipPostalCode: '75016', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10908, + CustomerID: 'REGGC', + EmployeeID: 4, + OrderDate: '2020-02-26T00:00:00', + RequiredDate: '2020-03-26T00:00:00', + ShippedDate: '2020-03-06T00:00:00', + ShipVia: 2, + Freight: 32.9600, + ShipName: 'Reggiani Caseifici', + ShipAddress: 'Strada Provinciale 124', + ShipCity: 'Reggio Emilia', + ShipRegion: null, + ShipPostalCode: '42100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10909, + CustomerID: 'SANTG', + EmployeeID: 1, + OrderDate: '2020-02-26T00:00:00', + RequiredDate: '2020-03-26T00:00:00', + ShippedDate: '2020-03-10T00:00:00', + ShipVia: 2, + Freight: 53.0500, + ShipName: 'Santé Gourmet', + ShipAddress: 'Erling Skakkes gate 78', + ShipCity: 'Stavern', + ShipRegion: null, + ShipPostalCode: '4110', + ShipCountry: 'Norway', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10910, + CustomerID: 'WILMK', + EmployeeID: 1, + OrderDate: '2020-02-26T00:00:00', + RequiredDate: '2020-03-26T00:00:00', + ShippedDate: '2020-03-04T00:00:00', + ShipVia: 3, + Freight: 38.1100, + ShipName: 'Wilman Kala', + ShipAddress: 'Keskuskatu 45', + ShipCity: 'Helsinki', + ShipRegion: null, + ShipPostalCode: '21240', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10911, + CustomerID: 'GODOS', + EmployeeID: 3, + OrderDate: '2020-02-26T00:00:00', + RequiredDate: '2020-03-26T00:00:00', + ShippedDate: '2020-03-05T00:00:00', + ShipVia: 1, + Freight: 38.1900, + ShipName: 'Godos Cocina Típica', + ShipAddress: 'C/ Romero, 33', + ShipCity: 'Sevilla', + ShipRegion: null, + ShipPostalCode: '41101', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10912, + CustomerID: 'HUNGO', + EmployeeID: 2, + OrderDate: '2020-02-26T00:00:00', + RequiredDate: '2020-03-26T00:00:00', + ShippedDate: '2020-03-18T00:00:00', + ShipVia: 2, + Freight: 580.9100, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10913, + CustomerID: 'QUEEN', + EmployeeID: 4, + OrderDate: '2020-02-26T00:00:00', + RequiredDate: '2020-03-26T00:00:00', + ShippedDate: '2020-03-04T00:00:00', + ShipVia: 1, + Freight: 33.0500, + ShipName: 'Queen Cozinha', + ShipAddress: 'Alameda dos Canàrios, 891', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05487-020', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10914, + CustomerID: 'QUEEN', + EmployeeID: 6, + OrderDate: '2020-02-27T00:00:00', + RequiredDate: '2020-03-27T00:00:00', + ShippedDate: '2020-03-02T00:00:00', + ShipVia: 1, + Freight: 21.1900, + ShipName: 'Queen Cozinha', + ShipAddress: 'Alameda dos Canàrios, 891', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05487-020', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10915, + CustomerID: 'TORTU', + EmployeeID: 2, + OrderDate: '2020-02-27T00:00:00', + RequiredDate: '2020-03-27T00:00:00', + ShippedDate: '2020-03-02T00:00:00', + ShipVia: 2, + Freight: 3.5100, + ShipName: 'Tortuga Restaurante', + ShipAddress: 'Avda. Azteca 123', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10916, + CustomerID: 'RANCH', + EmployeeID: 1, + OrderDate: '2020-02-27T00:00:00', + RequiredDate: '2020-03-27T00:00:00', + ShippedDate: '2020-03-09T00:00:00', + ShipVia: 2, + Freight: 63.7700, + ShipName: 'Rancho grande', + ShipAddress: 'Av. del Libertador 900', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10917, + CustomerID: 'ROMEY', + EmployeeID: 4, + OrderDate: '2020-03-02T00:00:00', + RequiredDate: '2020-03-30T00:00:00', + ShippedDate: '2020-03-11T00:00:00', + ShipVia: 2, + Freight: 8.2900, + ShipName: 'Romero y tomillo', + ShipAddress: 'Gran Vía, 1', + ShipCity: 'Madrid', + ShipRegion: null, + ShipPostalCode: '28001', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10918, + CustomerID: 'BOTTM', + EmployeeID: 3, + OrderDate: '2020-03-02T00:00:00', + RequiredDate: '2020-03-30T00:00:00', + ShippedDate: '2020-03-11T00:00:00', + ShipVia: 3, + Freight: 48.8300, + ShipName: 'Bottom-Dollar Markets', + ShipAddress: '23 Tsawassen Blvd.', + ShipCity: 'Tsawassen', + ShipRegion: 'BC', + ShipPostalCode: 'T2F 8M4', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10919, + CustomerID: 'LINOD', + EmployeeID: 2, + OrderDate: '2020-03-02T00:00:00', + RequiredDate: '2020-03-30T00:00:00', + ShippedDate: '2020-03-04T00:00:00', + ShipVia: 2, + Freight: 19.8000, + ShipName: 'LINO-Delicateses', + ShipAddress: 'Ave. 5 de Mayo Porlamar', + ShipCity: 'I. de Margarita', + ShipRegion: 'Nueva Esparta', + ShipPostalCode: '4980', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10920, + CustomerID: 'AROUT', + EmployeeID: 4, + OrderDate: '2020-03-03T00:00:00', + RequiredDate: '2020-03-31T00:00:00', + ShippedDate: '2020-03-09T00:00:00', + ShipVia: 2, + Freight: 29.6100, + ShipName: 'Around the Horn', + ShipAddress: 'Brook Farm Stratford St. Mary', + ShipCity: 'Colchester', + ShipRegion: 'Essex', + ShipPostalCode: 'CO7 6JX', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10921, + CustomerID: 'VAFFE', + EmployeeID: 1, + OrderDate: '2020-03-03T00:00:00', + RequiredDate: '2020-04-14T00:00:00', + ShippedDate: '2020-03-09T00:00:00', + ShipVia: 1, + Freight: 176.4800, + ShipName: 'Vaffeljernet', + ShipAddress: 'Smagsloget 45', + ShipCity: 'Århus', + ShipRegion: null, + ShipPostalCode: '8200', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10922, + CustomerID: 'HANAR', + EmployeeID: 5, + OrderDate: '2020-03-03T00:00:00', + RequiredDate: '2020-03-31T00:00:00', + ShippedDate: '2020-03-05T00:00:00', + ShipVia: 3, + Freight: 62.7400, + ShipName: 'Hanari Carnes', + ShipAddress: 'Rua do Paço, 67', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '05454-876', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10923, + CustomerID: 'LAMAI', + EmployeeID: 7, + OrderDate: '2020-03-03T00:00:00', + RequiredDate: '2020-04-14T00:00:00', + ShippedDate: '2020-03-13T00:00:00', + ShipVia: 3, + Freight: 68.2600, + ShipName: 'La maison d\'Asie', + ShipAddress: '1 rue Alsace-Lorraine', + ShipCity: 'Toulouse', + ShipRegion: null, + ShipPostalCode: '31000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10924, + CustomerID: 'BERGS', + EmployeeID: 3, + OrderDate: '2020-03-04T00:00:00', + RequiredDate: '2020-04-01T00:00:00', + ShippedDate: '2020-04-08T00:00:00', + ShipVia: 2, + Freight: 151.5200, + ShipName: 'Berglunds snabbköp', + ShipAddress: 'Berguvsvägen 8', + ShipCity: 'Luleå', + ShipRegion: null, + ShipPostalCode: 'S-958 22', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10925, + CustomerID: 'HANAR', + EmployeeID: 3, + OrderDate: '2020-03-04T00:00:00', + RequiredDate: '2020-04-01T00:00:00', + ShippedDate: '2020-03-13T00:00:00', + ShipVia: 1, + Freight: 2.2700, + ShipName: 'Hanari Carnes', + ShipAddress: 'Rua do Paço, 67', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '05454-876', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10926, + CustomerID: 'ANATR', + EmployeeID: 4, + OrderDate: '2020-03-04T00:00:00', + RequiredDate: '2020-04-01T00:00:00', + ShippedDate: '2020-03-11T00:00:00', + ShipVia: 3, + Freight: 39.9200, + ShipName: 'Ana Trujillo Emparedados y helados', + ShipAddress: 'Avda. de la Constitución 2222', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05021', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10927, + CustomerID: 'LACOR', + EmployeeID: 4, + OrderDate: '2020-03-05T00:00:00', + RequiredDate: '2020-04-02T00:00:00', + ShippedDate: '2020-04-08T00:00:00', + ShipVia: 1, + Freight: 19.7900, + ShipName: 'La corne d\'abondance', + ShipAddress: '67, avenue de l\'Europe', + ShipCity: 'Versailles', + ShipRegion: null, + ShipPostalCode: '78000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10928, + CustomerID: 'GALED', + EmployeeID: 1, + OrderDate: '2020-03-05T00:00:00', + RequiredDate: '2020-04-02T00:00:00', + ShippedDate: '2020-03-18T00:00:00', + ShipVia: 1, + Freight: 1.3600, + ShipName: 'Galería del gastronómo', + ShipAddress: 'Rambla de Cataluña, 23', + ShipCity: 'Barcelona', + ShipRegion: null, + ShipPostalCode: '8022', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10929, + CustomerID: 'FRANK', + EmployeeID: 6, + OrderDate: '2020-03-05T00:00:00', + RequiredDate: '2020-04-02T00:00:00', + ShippedDate: '2020-03-12T00:00:00', + ShipVia: 1, + Freight: 33.9300, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10930, + CustomerID: 'SUPRD', + EmployeeID: 4, + OrderDate: '2020-03-06T00:00:00', + RequiredDate: '2020-04-17T00:00:00', + ShippedDate: '2020-03-18T00:00:00', + ShipVia: 3, + Freight: 15.5500, + ShipName: 'Suprêmes délices', + ShipAddress: 'Boulevard Tirou, 255', + ShipCity: 'Charleroi', + ShipRegion: null, + ShipPostalCode: 'B-6000', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10931, + CustomerID: 'RICSU', + EmployeeID: 4, + OrderDate: '2020-03-06T00:00:00', + RequiredDate: '2020-03-20T00:00:00', + ShippedDate: '2020-03-19T00:00:00', + ShipVia: 2, + Freight: 13.6000, + ShipName: 'Richter Supermarkt', + ShipAddress: 'Starenweg 5', + ShipCity: 'Genève', + ShipRegion: null, + ShipPostalCode: '1204', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10932, + CustomerID: 'BONAP', + EmployeeID: 8, + OrderDate: '2020-03-06T00:00:00', + RequiredDate: '2020-04-03T00:00:00', + ShippedDate: '2020-03-24T00:00:00', + ShipVia: 1, + Freight: 134.6400, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10933, + CustomerID: 'ISLAT', + EmployeeID: 6, + OrderDate: '2020-03-06T00:00:00', + RequiredDate: '2020-04-03T00:00:00', + ShippedDate: '2020-03-16T00:00:00', + ShipVia: 3, + Freight: 54.1500, + ShipName: 'Island Trading', + ShipAddress: 'Garden House Crowther Way', + ShipCity: 'Cowes', + ShipRegion: 'Isle of Wight', + ShipPostalCode: 'PO31 7PJ', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10934, + CustomerID: 'LEHMS', + EmployeeID: 3, + OrderDate: '2020-03-09T00:00:00', + RequiredDate: '2020-04-06T00:00:00', + ShippedDate: '2020-03-12T00:00:00', + ShipVia: 3, + Freight: 32.0100, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10935, + CustomerID: 'WELLI', + EmployeeID: 4, + OrderDate: '2020-03-09T00:00:00', + RequiredDate: '2020-04-06T00:00:00', + ShippedDate: '2020-03-18T00:00:00', + ShipVia: 3, + Freight: 47.5900, + ShipName: 'Wellington Importadora', + ShipAddress: 'Rua do Mercado, 12', + ShipCity: 'Resende', + ShipRegion: 'SP', + ShipPostalCode: '08737-363', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10936, + CustomerID: 'GREAL', + EmployeeID: 3, + OrderDate: '2020-03-09T00:00:00', + RequiredDate: '2020-04-06T00:00:00', + ShippedDate: '2020-03-18T00:00:00', + ShipVia: 2, + Freight: 33.6800, + ShipName: 'Great Lakes Food Market', + ShipAddress: '2732 Baker Blvd.', + ShipCity: 'Eugene', + ShipRegion: 'OR', + ShipPostalCode: '97403', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10937, + CustomerID: 'CACTU', + EmployeeID: 7, + OrderDate: '2020-03-10T00:00:00', + RequiredDate: '2020-03-24T00:00:00', + ShippedDate: '2020-03-13T00:00:00', + ShipVia: 3, + Freight: 31.5100, + ShipName: 'Cactus Comidas para llevar', + ShipAddress: 'Cerrito 333', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10938, + CustomerID: 'QUICK', + EmployeeID: 3, + OrderDate: '2020-03-10T00:00:00', + RequiredDate: '2020-04-07T00:00:00', + ShippedDate: '2020-03-16T00:00:00', + ShipVia: 2, + Freight: 31.8900, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10939, + CustomerID: 'MAGAA', + EmployeeID: 2, + OrderDate: '2020-03-10T00:00:00', + RequiredDate: '2020-04-07T00:00:00', + ShippedDate: '2020-03-13T00:00:00', + ShipVia: 2, + Freight: 76.3300, + ShipName: 'Magazzini Alimentari Riuniti', + ShipAddress: 'Via Ludovico il Moro 22', + ShipCity: 'Bergamo', + ShipRegion: null, + ShipPostalCode: '24100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10940, + CustomerID: 'BONAP', + EmployeeID: 8, + OrderDate: '2020-03-11T00:00:00', + RequiredDate: '2020-04-08T00:00:00', + ShippedDate: '2020-03-23T00:00:00', + ShipVia: 3, + Freight: 19.7700, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10941, + CustomerID: 'SAVEA', + EmployeeID: 7, + OrderDate: '2020-03-11T00:00:00', + RequiredDate: '2020-04-08T00:00:00', + ShippedDate: '2020-03-20T00:00:00', + ShipVia: 2, + Freight: 400.8100, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10942, + CustomerID: 'REGGC', + EmployeeID: 9, + OrderDate: '2020-03-11T00:00:00', + RequiredDate: '2020-04-08T00:00:00', + ShippedDate: '2020-03-18T00:00:00', + ShipVia: 3, + Freight: 17.9500, + ShipName: 'Reggiani Caseifici', + ShipAddress: 'Strada Provinciale 124', + ShipCity: 'Reggio Emilia', + ShipRegion: null, + ShipPostalCode: '42100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10943, + CustomerID: 'BSBEV', + EmployeeID: 4, + OrderDate: '2020-03-11T00:00:00', + RequiredDate: '2020-04-08T00:00:00', + ShippedDate: '2020-03-19T00:00:00', + ShipVia: 2, + Freight: 2.1700, + ShipName: 'B\'s Beverages', + ShipAddress: 'Fauntleroy Circus', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'EC2 5NT', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10944, + CustomerID: 'BOTTM', + EmployeeID: 6, + OrderDate: '2020-03-12T00:00:00', + RequiredDate: '2020-03-26T00:00:00', + ShippedDate: '2020-03-13T00:00:00', + ShipVia: 3, + Freight: 52.9200, + ShipName: 'Bottom-Dollar Markets', + ShipAddress: '23 Tsawassen Blvd.', + ShipCity: 'Tsawassen', + ShipRegion: 'BC', + ShipPostalCode: 'T2F 8M4', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10945, + CustomerID: 'MORGK', + EmployeeID: 4, + OrderDate: '2020-03-12T00:00:00', + RequiredDate: '2020-04-09T00:00:00', + ShippedDate: '2020-03-18T00:00:00', + ShipVia: 1, + Freight: 10.2200, + ShipName: 'Morgenstern Gesundkost', + ShipAddress: 'Heerstr. 22', + ShipCity: 'Leipzig', + ShipRegion: null, + ShipPostalCode: '04179', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10946, + CustomerID: 'VAFFE', + EmployeeID: 1, + OrderDate: '2020-03-12T00:00:00', + RequiredDate: '2020-04-09T00:00:00', + ShippedDate: '2020-03-19T00:00:00', + ShipVia: 2, + Freight: 27.2000, + ShipName: 'Vaffeljernet', + ShipAddress: 'Smagsloget 45', + ShipCity: 'Århus', + ShipRegion: null, + ShipPostalCode: '8200', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10947, + CustomerID: 'BSBEV', + EmployeeID: 3, + OrderDate: '2020-03-13T00:00:00', + RequiredDate: '2020-04-10T00:00:00', + ShippedDate: '2020-03-16T00:00:00', + ShipVia: 2, + Freight: 3.2600, + ShipName: 'B\'s Beverages', + ShipAddress: 'Fauntleroy Circus', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'EC2 5NT', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10948, + CustomerID: 'GODOS', + EmployeeID: 3, + OrderDate: '2020-03-13T00:00:00', + RequiredDate: '2020-04-10T00:00:00', + ShippedDate: '2020-03-19T00:00:00', + ShipVia: 3, + Freight: 23.3900, + ShipName: 'Godos Cocina Típica', + ShipAddress: 'C/ Romero, 33', + ShipCity: 'Sevilla', + ShipRegion: null, + ShipPostalCode: '41101', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10949, + CustomerID: 'BOTTM', + EmployeeID: 2, + OrderDate: '2020-03-13T00:00:00', + RequiredDate: '2020-04-10T00:00:00', + ShippedDate: '2020-03-17T00:00:00', + ShipVia: 3, + Freight: 74.4400, + ShipName: 'Bottom-Dollar Markets', + ShipAddress: '23 Tsawassen Blvd.', + ShipCity: 'Tsawassen', + ShipRegion: 'BC', + ShipPostalCode: 'T2F 8M4', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10950, + CustomerID: 'MAGAA', + EmployeeID: 1, + OrderDate: '2020-03-16T00:00:00', + RequiredDate: '2020-04-13T00:00:00', + ShippedDate: '2020-03-23T00:00:00', + ShipVia: 2, + Freight: 2.5000, + ShipName: 'Magazzini Alimentari Riuniti', + ShipAddress: 'Via Ludovico il Moro 22', + ShipCity: 'Bergamo', + ShipRegion: null, + ShipPostalCode: '24100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10951, + CustomerID: 'RICSU', + EmployeeID: 9, + OrderDate: '2020-03-16T00:00:00', + RequiredDate: '2020-04-27T00:00:00', + ShippedDate: '2020-04-07T00:00:00', + ShipVia: 2, + Freight: 30.8500, + ShipName: 'Richter Supermarkt', + ShipAddress: 'Starenweg 5', + ShipCity: 'Genève', + ShipRegion: null, + ShipPostalCode: '1204', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10952, + CustomerID: 'ALFKI', + EmployeeID: 1, + OrderDate: '2020-03-16T00:00:00', + RequiredDate: '2020-04-27T00:00:00', + ShippedDate: '2020-03-24T00:00:00', + ShipVia: 1, + Freight: 40.4200, + ShipName: 'Alfred\'s Futterkiste', + ShipAddress: 'Obere Str. 57', + ShipCity: 'Berlin', + ShipRegion: null, + ShipPostalCode: '12209', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10953, + CustomerID: 'AROUT', + EmployeeID: 9, + OrderDate: '2020-03-16T00:00:00', + RequiredDate: '2020-03-30T00:00:00', + ShippedDate: '2020-03-25T00:00:00', + ShipVia: 2, + Freight: 23.7200, + ShipName: 'Around the Horn', + ShipAddress: 'Brook Farm Stratford St. Mary', + ShipCity: 'Colchester', + ShipRegion: 'Essex', + ShipPostalCode: 'CO7 6JX', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10954, + CustomerID: 'LINOD', + EmployeeID: 5, + OrderDate: '2020-03-17T00:00:00', + RequiredDate: '2020-04-28T00:00:00', + ShippedDate: '2020-03-20T00:00:00', + ShipVia: 1, + Freight: 27.9100, + ShipName: 'LINO-Delicateses', + ShipAddress: 'Ave. 5 de Mayo Porlamar', + ShipCity: 'I. de Margarita', + ShipRegion: 'Nueva Esparta', + ShipPostalCode: '4980', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10955, + CustomerID: 'FOLKO', + EmployeeID: 8, + OrderDate: '2020-03-17T00:00:00', + RequiredDate: '2020-04-14T00:00:00', + ShippedDate: '2020-03-20T00:00:00', + ShipVia: 2, + Freight: 3.2600, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10956, + CustomerID: 'BLAUS', + EmployeeID: 6, + OrderDate: '2020-03-17T00:00:00', + RequiredDate: '2020-04-28T00:00:00', + ShippedDate: '2020-03-20T00:00:00', + ShipVia: 2, + Freight: 44.6500, + ShipName: 'Blauer See Delikatessen', + ShipAddress: 'Forsterstr. 57', + ShipCity: 'Mannheim', + ShipRegion: null, + ShipPostalCode: '68306', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10957, + CustomerID: 'HILAA', + EmployeeID: 8, + OrderDate: '2020-03-18T00:00:00', + RequiredDate: '2020-04-15T00:00:00', + ShippedDate: '2020-03-27T00:00:00', + ShipVia: 3, + Freight: 105.3600, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10958, + CustomerID: 'OCEAN', + EmployeeID: 7, + OrderDate: '2020-03-18T00:00:00', + RequiredDate: '2020-04-15T00:00:00', + ShippedDate: '2020-03-27T00:00:00', + ShipVia: 2, + Freight: 49.5600, + ShipName: 'Océano Atlántico Ltda.', + ShipAddress: 'Ing. Gustavo Moncada 8585 Piso 20-A', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10959, + CustomerID: 'GOURL', + EmployeeID: 6, + OrderDate: '2020-03-18T00:00:00', + RequiredDate: '2020-04-29T00:00:00', + ShippedDate: '2020-03-23T00:00:00', + ShipVia: 2, + Freight: 4.9800, + ShipName: 'Gourmet Lanchonetes', + ShipAddress: 'Av. Brasil, 442', + ShipCity: 'Campinas', + ShipRegion: 'SP', + ShipPostalCode: '04876-786', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10960, + CustomerID: 'HILAA', + EmployeeID: 3, + OrderDate: '2020-03-19T00:00:00', + RequiredDate: '2020-04-02T00:00:00', + ShippedDate: '2020-04-08T00:00:00', + ShipVia: 1, + Freight: 2.0800, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10961, + CustomerID: 'QUEEN', + EmployeeID: 8, + OrderDate: '2020-03-19T00:00:00', + RequiredDate: '2020-04-16T00:00:00', + ShippedDate: '2020-03-30T00:00:00', + ShipVia: 1, + Freight: 104.4700, + ShipName: 'Queen Cozinha', + ShipAddress: 'Alameda dos Canàrios, 891', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05487-020', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10962, + CustomerID: 'QUICK', + EmployeeID: 8, + OrderDate: '2020-03-19T00:00:00', + RequiredDate: '2020-04-16T00:00:00', + ShippedDate: '2020-03-23T00:00:00', + ShipVia: 2, + Freight: 275.7900, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10963, + CustomerID: 'FURIB', + EmployeeID: 9, + OrderDate: '2020-03-19T00:00:00', + RequiredDate: '2020-04-16T00:00:00', + ShippedDate: '2020-03-26T00:00:00', + ShipVia: 3, + Freight: 2.7000, + ShipName: 'Furia Bacalhau e Frutos do Mar', + ShipAddress: 'Jardim das rosas n. 32', + ShipCity: 'Lisboa', + ShipRegion: null, + ShipPostalCode: '1675', + ShipCountry: 'Portugal', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10964, + CustomerID: 'SPECD', + EmployeeID: 3, + OrderDate: '2020-03-20T00:00:00', + RequiredDate: '2020-04-17T00:00:00', + ShippedDate: '2020-03-24T00:00:00', + ShipVia: 2, + Freight: 87.3800, + ShipName: 'Spécialités du monde', + ShipAddress: '25, rue Lauriston', + ShipCity: 'Paris', + ShipRegion: null, + ShipPostalCode: '75016', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10965, + CustomerID: 'OLDWO', + EmployeeID: 6, + OrderDate: '2020-03-20T00:00:00', + RequiredDate: '2020-04-17T00:00:00', + ShippedDate: '2020-03-30T00:00:00', + ShipVia: 3, + Freight: 144.3800, + ShipName: 'Old World Delicatessen', + ShipAddress: '2743 Bering St.', + ShipCity: 'Anchorage', + ShipRegion: 'AK', + ShipPostalCode: '99508', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10966, + CustomerID: 'CHOPS', + EmployeeID: 4, + OrderDate: '2020-03-20T00:00:00', + RequiredDate: '2020-04-17T00:00:00', + ShippedDate: '2020-04-08T00:00:00', + ShipVia: 1, + Freight: 27.1900, + ShipName: 'Chop-suey Chinese', + ShipAddress: 'Hauptstr. 31', + ShipCity: 'Bern', + ShipRegion: null, + ShipPostalCode: '3012', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10967, + CustomerID: 'TOMSP', + EmployeeID: 2, + OrderDate: '2020-03-23T00:00:00', + RequiredDate: '2020-04-20T00:00:00', + ShippedDate: '2020-04-02T00:00:00', + ShipVia: 2, + Freight: 62.2200, + ShipName: 'Toms Spezialitäten', + ShipAddress: 'Luisenstr. 48', + ShipCity: 'Münster', + ShipRegion: null, + ShipPostalCode: '44087', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10968, + CustomerID: 'ERNSH', + EmployeeID: 1, + OrderDate: '2020-03-23T00:00:00', + RequiredDate: '2020-04-20T00:00:00', + ShippedDate: '2020-04-01T00:00:00', + ShipVia: 3, + Freight: 74.6000, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10969, + CustomerID: 'COMMI', + EmployeeID: 1, + OrderDate: '2020-03-23T00:00:00', + RequiredDate: '2020-04-20T00:00:00', + ShippedDate: '2020-03-30T00:00:00', + ShipVia: 2, + Freight: 0.2100, + ShipName: 'Comércio Mineiro', + ShipAddress: 'Av. dos Lusíadas, 23', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05432-043', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10970, + CustomerID: 'BOLID', + EmployeeID: 9, + OrderDate: '2020-03-24T00:00:00', + RequiredDate: '2020-04-07T00:00:00', + ShippedDate: '2020-04-24T00:00:00', + ShipVia: 1, + Freight: 16.1600, + ShipName: 'Bólido Comidas preparadas', + ShipAddress: 'C/ Araquil, 67', + ShipCity: 'Madrid', + ShipRegion: null, + ShipPostalCode: '28023', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10971, + CustomerID: 'FRANR', + EmployeeID: 2, + OrderDate: '2020-03-24T00:00:00', + RequiredDate: '2020-04-21T00:00:00', + ShippedDate: '2020-04-02T00:00:00', + ShipVia: 2, + Freight: 121.8200, + ShipName: 'France restauration', + ShipAddress: '54, rue Royale', + ShipCity: 'Nantes', + ShipRegion: null, + ShipPostalCode: '44000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10972, + CustomerID: 'LACOR', + EmployeeID: 4, + OrderDate: '2020-03-24T00:00:00', + RequiredDate: '2020-04-21T00:00:00', + ShippedDate: '2020-03-26T00:00:00', + ShipVia: 2, + Freight: 0.0200, + ShipName: 'La corne d\'abondance', + ShipAddress: '67, avenue de l\'Europe', + ShipCity: 'Versailles', + ShipRegion: null, + ShipPostalCode: '78000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10973, + CustomerID: 'LACOR', + EmployeeID: 6, + OrderDate: '2020-03-24T00:00:00', + RequiredDate: '2020-04-21T00:00:00', + ShippedDate: '2020-03-27T00:00:00', + ShipVia: 2, + Freight: 15.1700, + ShipName: 'La corne d\'abondance', + ShipAddress: '67, avenue de l\'Europe', + ShipCity: 'Versailles', + ShipRegion: null, + ShipPostalCode: '78000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10974, + CustomerID: 'SPLIR', + EmployeeID: 3, + OrderDate: '2020-03-25T00:00:00', + RequiredDate: '2020-04-08T00:00:00', + ShippedDate: '2020-04-03T00:00:00', + ShipVia: 3, + Freight: 12.9600, + ShipName: 'Split Rail Beer & Ale', + ShipAddress: 'P.O. Box 555', + ShipCity: 'Lander', + ShipRegion: 'WY', + ShipPostalCode: '82520', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10975, + CustomerID: 'BOTTM', + EmployeeID: 1, + OrderDate: '2020-03-25T00:00:00', + RequiredDate: '2020-04-22T00:00:00', + ShippedDate: '2020-03-27T00:00:00', + ShipVia: 3, + Freight: 32.2700, + ShipName: 'Bottom-Dollar Markets', + ShipAddress: '23 Tsawassen Blvd.', + ShipCity: 'Tsawassen', + ShipRegion: 'BC', + ShipPostalCode: 'T2F 8M4', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10976, + CustomerID: 'HILAA', + EmployeeID: 1, + OrderDate: '2020-03-25T00:00:00', + RequiredDate: '2020-05-06T00:00:00', + ShippedDate: '2020-04-03T00:00:00', + ShipVia: 1, + Freight: 37.9700, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10977, + CustomerID: 'FOLKO', + EmployeeID: 8, + OrderDate: '2020-03-26T00:00:00', + RequiredDate: '2020-04-23T00:00:00', + ShippedDate: '2020-04-10T00:00:00', + ShipVia: 3, + Freight: 208.5000, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10978, + CustomerID: 'MAISD', + EmployeeID: 9, + OrderDate: '2020-03-26T00:00:00', + RequiredDate: '2020-04-23T00:00:00', + ShippedDate: '2020-04-23T00:00:00', + ShipVia: 2, + Freight: 32.8200, + ShipName: 'Maison Dewey', + ShipAddress: 'Rue Joseph-Bens 532', + ShipCity: 'Bruxelles', + ShipRegion: null, + ShipPostalCode: 'B-1180', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10979, + CustomerID: 'ERNSH', + EmployeeID: 8, + OrderDate: '2020-03-26T00:00:00', + RequiredDate: '2020-04-23T00:00:00', + ShippedDate: '2020-03-31T00:00:00', + ShipVia: 2, + Freight: 353.0700, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10980, + CustomerID: 'FOLKO', + EmployeeID: 4, + OrderDate: '2020-03-27T00:00:00', + RequiredDate: '2020-05-08T00:00:00', + ShippedDate: '2020-04-17T00:00:00', + ShipVia: 1, + Freight: 1.2600, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10981, + CustomerID: 'HANAR', + EmployeeID: 1, + OrderDate: '2020-03-27T00:00:00', + RequiredDate: '2020-04-24T00:00:00', + ShippedDate: '2020-04-02T00:00:00', + ShipVia: 2, + Freight: 193.3700, + ShipName: 'Hanari Carnes', + ShipAddress: 'Rua do Paço, 67', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '05454-876', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10982, + CustomerID: 'BOTTM', + EmployeeID: 2, + OrderDate: '2020-03-27T00:00:00', + RequiredDate: '2020-04-24T00:00:00', + ShippedDate: '2020-04-08T00:00:00', + ShipVia: 1, + Freight: 14.0100, + ShipName: 'Bottom-Dollar Markets', + ShipAddress: '23 Tsawassen Blvd.', + ShipCity: 'Tsawassen', + ShipRegion: 'BC', + ShipPostalCode: 'T2F 8M4', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10983, + CustomerID: 'SAVEA', + EmployeeID: 2, + OrderDate: '2020-03-27T00:00:00', + RequiredDate: '2020-04-24T00:00:00', + ShippedDate: '2020-04-06T00:00:00', + ShipVia: 2, + Freight: 657.5400, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10984, + CustomerID: 'SAVEA', + EmployeeID: 1, + OrderDate: '2020-03-30T00:00:00', + RequiredDate: '2020-04-27T00:00:00', + ShippedDate: '2020-04-03T00:00:00', + ShipVia: 3, + Freight: 211.2200, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10985, + CustomerID: 'HUNGO', + EmployeeID: 2, + OrderDate: '2020-03-30T00:00:00', + RequiredDate: '2020-04-27T00:00:00', + ShippedDate: '2020-04-02T00:00:00', + ShipVia: 1, + Freight: 91.5100, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10986, + CustomerID: 'OCEAN', + EmployeeID: 8, + OrderDate: '2020-03-30T00:00:00', + RequiredDate: '2020-04-27T00:00:00', + ShippedDate: '2020-04-21T00:00:00', + ShipVia: 2, + Freight: 217.8600, + ShipName: 'Océano Atlántico Ltda.', + ShipAddress: 'Ing. Gustavo Moncada 8585 Piso 20-A', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10987, + CustomerID: 'EASTC', + EmployeeID: 8, + OrderDate: '2020-03-31T00:00:00', + RequiredDate: '2020-04-28T00:00:00', + ShippedDate: '2020-04-06T00:00:00', + ShipVia: 1, + Freight: 185.4800, + ShipName: 'Eastern Connection', + ShipAddress: '35 King George', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'WX3 6FW', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10988, + CustomerID: 'RATTC', + EmployeeID: 3, + OrderDate: '2020-03-31T00:00:00', + RequiredDate: '2020-04-28T00:00:00', + ShippedDate: '2020-04-10T00:00:00', + ShipVia: 2, + Freight: 61.1400, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10989, + CustomerID: 'QUEDE', + EmployeeID: 2, + OrderDate: '2020-03-31T00:00:00', + RequiredDate: '2020-04-28T00:00:00', + ShippedDate: '2020-04-02T00:00:00', + ShipVia: 1, + Freight: 34.7600, + ShipName: 'Que Delícia', + ShipAddress: 'Rua da Panificadora, 12', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-673', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10990, + CustomerID: 'ERNSH', + EmployeeID: 2, + OrderDate: '2020-04-01T00:00:00', + RequiredDate: '2020-05-13T00:00:00', + ShippedDate: '2020-04-07T00:00:00', + ShipVia: 3, + Freight: 117.6100, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10991, + CustomerID: 'QUICK', + EmployeeID: 1, + OrderDate: '2020-04-01T00:00:00', + RequiredDate: '2020-04-29T00:00:00', + ShippedDate: '2020-04-07T00:00:00', + ShipVia: 1, + Freight: 38.5100, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10992, + CustomerID: 'THEBI', + EmployeeID: 1, + OrderDate: '2020-04-01T00:00:00', + RequiredDate: '2020-04-29T00:00:00', + ShippedDate: '2020-04-03T00:00:00', + ShipVia: 3, + Freight: 4.2700, + ShipName: 'The Big Cheese', + ShipAddress: '89 Jefferson Way Suite 2', + ShipCity: 'Portland', + ShipRegion: 'OR', + ShipPostalCode: '97201', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10993, + CustomerID: 'FOLKO', + EmployeeID: 7, + OrderDate: '2020-04-01T00:00:00', + RequiredDate: '2020-04-29T00:00:00', + ShippedDate: '2020-04-10T00:00:00', + ShipVia: 3, + Freight: 8.8100, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10994, + CustomerID: 'VAFFE', + EmployeeID: 2, + OrderDate: '2020-04-02T00:00:00', + RequiredDate: '2020-04-16T00:00:00', + ShippedDate: '2020-04-09T00:00:00', + ShipVia: 3, + Freight: 65.5300, + ShipName: 'Vaffeljernet', + ShipAddress: 'Smagsloget 45', + ShipCity: 'Århus', + ShipRegion: null, + ShipPostalCode: '8200', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10995, + CustomerID: 'PERIC', + EmployeeID: 1, + OrderDate: '2020-04-02T00:00:00', + RequiredDate: '2020-04-30T00:00:00', + ShippedDate: '2020-04-06T00:00:00', + ShipVia: 3, + Freight: 46.0000, + ShipName: 'Pericles Comidas clásicas', + ShipAddress: 'Calle Dr. Jorge Cash 321', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10996, + CustomerID: 'QUICK', + EmployeeID: 4, + OrderDate: '2020-04-02T00:00:00', + RequiredDate: '2020-04-30T00:00:00', + ShippedDate: '2020-04-10T00:00:00', + ShipVia: 2, + Freight: 1.1200, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10997, + CustomerID: 'LILAS', + EmployeeID: 8, + OrderDate: '2020-04-03T00:00:00', + RequiredDate: '2020-05-15T00:00:00', + ShippedDate: '2020-04-13T00:00:00', + ShipVia: 2, + Freight: 73.9100, + ShipName: 'LILA-Supermercado', + ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', + ShipCity: 'Barquisimeto', + ShipRegion: 'Lara', + ShipPostalCode: '3508', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10998, + CustomerID: 'WOLZA', + EmployeeID: 8, + OrderDate: '2020-04-03T00:00:00', + RequiredDate: '2020-04-17T00:00:00', + ShippedDate: '2020-04-17T00:00:00', + ShipVia: 2, + Freight: 20.3100, + ShipName: 'Wolski Zajazd', + ShipAddress: 'ul. Filtrowa 68', + ShipCity: 'Warszawa', + ShipRegion: null, + ShipPostalCode: '01-012', + ShipCountry: 'Poland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 10999, + CustomerID: 'OTTIK', + EmployeeID: 6, + OrderDate: '2020-04-03T00:00:00', + RequiredDate: '2020-05-01T00:00:00', + ShippedDate: '2020-04-10T00:00:00', + ShipVia: 2, + Freight: 96.3500, + ShipName: 'Ottilies Käseladen', + ShipAddress: 'Mehrheimerstr. 369', + ShipCity: 'Köln', + ShipRegion: null, + ShipPostalCode: '50739', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11000, + CustomerID: 'RATTC', + EmployeeID: 2, + OrderDate: '2020-04-06T00:00:00', + RequiredDate: '2020-05-04T00:00:00', + ShippedDate: '2020-04-14T00:00:00', + ShipVia: 3, + Freight: 55.1200, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11001, + CustomerID: 'FOLKO', + EmployeeID: 2, + OrderDate: '2020-04-06T00:00:00', + RequiredDate: '2020-05-04T00:00:00', + ShippedDate: '2020-04-14T00:00:00', + ShipVia: 2, + Freight: 197.3000, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11002, + CustomerID: 'SAVEA', + EmployeeID: 4, + OrderDate: '2020-04-06T00:00:00', + RequiredDate: '2020-05-04T00:00:00', + ShippedDate: '2020-04-16T00:00:00', + ShipVia: 1, + Freight: 141.1600, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11003, + CustomerID: 'THECR', + EmployeeID: 3, + OrderDate: '2020-04-06T00:00:00', + RequiredDate: '2020-05-04T00:00:00', + ShippedDate: '2020-04-08T00:00:00', + ShipVia: 3, + Freight: 14.9100, + ShipName: 'The Cracker Box', + ShipAddress: '55 Grizzly Peak Rd.', + ShipCity: 'Butte', + ShipRegion: 'MT', + ShipPostalCode: '59801', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11004, + CustomerID: 'MAISD', + EmployeeID: 3, + OrderDate: '2020-04-07T00:00:00', + RequiredDate: '2020-05-05T00:00:00', + ShippedDate: '2020-04-20T00:00:00', + ShipVia: 1, + Freight: 44.8400, + ShipName: 'Maison Dewey', + ShipAddress: 'Rue Joseph-Bens 532', + ShipCity: 'Bruxelles', + ShipRegion: null, + ShipPostalCode: 'B-1180', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11005, + CustomerID: 'WILMK', + EmployeeID: 2, + OrderDate: '2020-04-07T00:00:00', + RequiredDate: '2020-05-05T00:00:00', + ShippedDate: '2020-04-10T00:00:00', + ShipVia: 1, + Freight: 0.7500, + ShipName: 'Wilman Kala', + ShipAddress: 'Keskuskatu 45', + ShipCity: 'Helsinki', + ShipRegion: null, + ShipPostalCode: '21240', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11006, + CustomerID: 'GREAL', + EmployeeID: 3, + OrderDate: '2020-04-07T00:00:00', + RequiredDate: '2020-05-05T00:00:00', + ShippedDate: '2020-04-15T00:00:00', + ShipVia: 2, + Freight: 25.1900, + ShipName: 'Great Lakes Food Market', + ShipAddress: '2732 Baker Blvd.', + ShipCity: 'Eugene', + ShipRegion: 'OR', + ShipPostalCode: '97403', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11007, + CustomerID: 'PRINI', + EmployeeID: 8, + OrderDate: '2020-04-08T00:00:00', + RequiredDate: '2020-05-06T00:00:00', + ShippedDate: '2020-04-13T00:00:00', + ShipVia: 2, + Freight: 202.2400, + ShipName: 'Princesa Isabel Vinhos', + ShipAddress: 'Estrada da saúde n. 58', + ShipCity: 'Lisboa', + ShipRegion: null, + ShipPostalCode: '1756', + ShipCountry: 'Portugal', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11008, + CustomerID: 'ERNSH', + EmployeeID: 7, + OrderDate: '2020-04-08T00:00:00', + RequiredDate: '2020-05-06T00:00:00', + ShippedDate: null, + ShipVia: 3, + Freight: 79.4600, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11009, + CustomerID: 'GODOS', + EmployeeID: 2, + OrderDate: '2020-04-08T00:00:00', + RequiredDate: '2020-05-06T00:00:00', + ShippedDate: '2020-04-10T00:00:00', + ShipVia: 1, + Freight: 59.1100, + ShipName: 'Godos Cocina Típica', + ShipAddress: 'C/ Romero, 33', + ShipCity: 'Sevilla', + ShipRegion: null, + ShipPostalCode: '41101', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11010, + CustomerID: 'REGGC', + EmployeeID: 2, + OrderDate: '2020-04-09T00:00:00', + RequiredDate: '2020-05-07T00:00:00', + ShippedDate: '2020-04-21T00:00:00', + ShipVia: 2, + Freight: 28.7100, + ShipName: 'Reggiani Caseifici', + ShipAddress: 'Strada Provinciale 124', + ShipCity: 'Reggio Emilia', + ShipRegion: null, + ShipPostalCode: '42100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11011, + CustomerID: 'ALFKI', + EmployeeID: 3, + OrderDate: '2020-04-09T00:00:00', + RequiredDate: '2020-05-07T00:00:00', + ShippedDate: '2020-04-13T00:00:00', + ShipVia: 1, + Freight: 1.2100, + ShipName: 'Alfred\'s Futterkiste', + ShipAddress: 'Obere Str. 57', + ShipCity: 'Berlin', + ShipRegion: null, + ShipPostalCode: '12209', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11012, + CustomerID: 'FRANK', + EmployeeID: 1, + OrderDate: '2020-04-09T00:00:00', + RequiredDate: '2020-04-23T00:00:00', + ShippedDate: '2020-04-17T00:00:00', + ShipVia: 3, + Freight: 242.9500, + ShipName: 'Frankenversand', + ShipAddress: 'Berliner Platz 43', + ShipCity: 'München', + ShipRegion: null, + ShipPostalCode: '80805', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11013, + CustomerID: 'ROMEY', + EmployeeID: 2, + OrderDate: '2020-04-09T00:00:00', + RequiredDate: '2020-05-07T00:00:00', + ShippedDate: '2020-04-10T00:00:00', + ShipVia: 1, + Freight: 32.9900, + ShipName: 'Romero y tomillo', + ShipAddress: 'Gran Vía, 1', + ShipCity: 'Madrid', + ShipRegion: null, + ShipPostalCode: '28001', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11014, + CustomerID: 'LINOD', + EmployeeID: 2, + OrderDate: '2020-04-10T00:00:00', + RequiredDate: '2020-05-08T00:00:00', + ShippedDate: '2020-04-15T00:00:00', + ShipVia: 3, + Freight: 23.6000, + ShipName: 'LINO-Delicateses', + ShipAddress: 'Ave. 5 de Mayo Porlamar', + ShipCity: 'I. de Margarita', + ShipRegion: 'Nueva Esparta', + ShipPostalCode: '4980', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11015, + CustomerID: 'SANTG', + EmployeeID: 2, + OrderDate: '2020-04-10T00:00:00', + RequiredDate: '2020-04-24T00:00:00', + ShippedDate: '2020-04-20T00:00:00', + ShipVia: 2, + Freight: 4.6200, + ShipName: 'Santé Gourmet', + ShipAddress: 'Erling Skakkes gate 78', + ShipCity: 'Stavern', + ShipRegion: null, + ShipPostalCode: '4110', + ShipCountry: 'Norway', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11016, + CustomerID: 'AROUT', + EmployeeID: 9, + OrderDate: '2020-04-10T00:00:00', + RequiredDate: '2020-05-08T00:00:00', + ShippedDate: '2020-04-13T00:00:00', + ShipVia: 2, + Freight: 33.8000, + ShipName: 'Around the Horn', + ShipAddress: 'Brook Farm Stratford St. Mary', + ShipCity: 'Colchester', + ShipRegion: 'Essex', + ShipPostalCode: 'CO7 6JX', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11017, + CustomerID: 'ERNSH', + EmployeeID: 9, + OrderDate: '2020-04-13T00:00:00', + RequiredDate: '2020-05-11T00:00:00', + ShippedDate: '2020-04-20T00:00:00', + ShipVia: 2, + Freight: 754.2600, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11018, + CustomerID: 'LONEP', + EmployeeID: 4, + OrderDate: '2020-04-13T00:00:00', + RequiredDate: '2020-05-11T00:00:00', + ShippedDate: '2020-04-16T00:00:00', + ShipVia: 2, + Freight: 11.6500, + ShipName: 'Lonesome Pine Restaurant', + ShipAddress: '89 Chiaroscuro Rd.', + ShipCity: 'Portland', + ShipRegion: 'OR', + ShipPostalCode: '97219', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11019, + CustomerID: 'RANCH', + EmployeeID: 6, + OrderDate: '2020-04-13T00:00:00', + RequiredDate: '2020-05-11T00:00:00', + ShippedDate: null, + ShipVia: 3, + Freight: 3.1700, + ShipName: 'Rancho grande', + ShipAddress: 'Av. del Libertador 900', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11020, + CustomerID: 'OTTIK', + EmployeeID: 2, + OrderDate: '2020-04-14T00:00:00', + RequiredDate: '2020-05-12T00:00:00', + ShippedDate: '2020-04-16T00:00:00', + ShipVia: 2, + Freight: 43.3000, + ShipName: 'Ottilies Käseladen', + ShipAddress: 'Mehrheimerstr. 369', + ShipCity: 'Köln', + ShipRegion: null, + ShipPostalCode: '50739', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11021, + CustomerID: 'QUICK', + EmployeeID: 3, + OrderDate: '2020-04-14T00:00:00', + RequiredDate: '2020-05-12T00:00:00', + ShippedDate: '2020-04-21T00:00:00', + ShipVia: 1, + Freight: 297.1800, + ShipName: 'QUICK-Stop', + ShipAddress: 'Taucherstraße 10', + ShipCity: 'Cunewalde', + ShipRegion: null, + ShipPostalCode: '01307', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11022, + CustomerID: 'HANAR', + EmployeeID: 9, + OrderDate: '2020-04-14T00:00:00', + RequiredDate: '2020-05-12T00:00:00', + ShippedDate: '2020-05-04T00:00:00', + ShipVia: 2, + Freight: 6.2700, + ShipName: 'Hanari Carnes', + ShipAddress: 'Rua do Paço, 67', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '05454-876', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11023, + CustomerID: 'BSBEV', + EmployeeID: 1, + OrderDate: '2020-04-14T00:00:00', + RequiredDate: '2020-04-28T00:00:00', + ShippedDate: '2020-04-24T00:00:00', + ShipVia: 2, + Freight: 123.8300, + ShipName: 'B\'s Beverages', + ShipAddress: 'Fauntleroy Circus', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'EC2 5NT', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11024, + CustomerID: 'EASTC', + EmployeeID: 4, + OrderDate: '2020-04-15T00:00:00', + RequiredDate: '2020-05-13T00:00:00', + ShippedDate: '2020-04-20T00:00:00', + ShipVia: 1, + Freight: 74.3600, + ShipName: 'Eastern Connection', + ShipAddress: '35 King George', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'WX3 6FW', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11025, + CustomerID: 'WARTH', + EmployeeID: 6, + OrderDate: '2020-04-15T00:00:00', + RequiredDate: '2020-05-13T00:00:00', + ShippedDate: '2020-04-24T00:00:00', + ShipVia: 3, + Freight: 29.1700, + ShipName: 'Wartian Herkku', + ShipAddress: 'Torikatu 38', + ShipCity: 'Oulu', + ShipRegion: null, + ShipPostalCode: '90110', + ShipCountry: 'Finland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11026, + CustomerID: 'FRANS', + EmployeeID: 4, + OrderDate: '2020-04-15T00:00:00', + RequiredDate: '2020-05-13T00:00:00', + ShippedDate: '2020-04-28T00:00:00', + ShipVia: 1, + Freight: 47.0900, + ShipName: 'Franchi S.p.A.', + ShipAddress: 'Via Monte Bianco 34', + ShipCity: 'Torino', + ShipRegion: null, + ShipPostalCode: '10100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11027, + CustomerID: 'BOTTM', + EmployeeID: 1, + OrderDate: '2020-04-16T00:00:00', + RequiredDate: '2020-05-14T00:00:00', + ShippedDate: '2020-04-20T00:00:00', + ShipVia: 1, + Freight: 52.5200, + ShipName: 'Bottom-Dollar Markets', + ShipAddress: '23 Tsawassen Blvd.', + ShipCity: 'Tsawassen', + ShipRegion: 'BC', + ShipPostalCode: 'T2F 8M4', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11028, + CustomerID: 'KOENE', + EmployeeID: 2, + OrderDate: '2020-04-16T00:00:00', + RequiredDate: '2020-05-14T00:00:00', + ShippedDate: '2020-04-22T00:00:00', + ShipVia: 1, + Freight: 29.5900, + ShipName: 'Königlich Essen', + ShipAddress: 'Maubelstr. 90', + ShipCity: 'Brandenburg', + ShipRegion: null, + ShipPostalCode: '14776', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11029, + CustomerID: 'CHOPS', + EmployeeID: 4, + OrderDate: '2020-04-16T00:00:00', + RequiredDate: '2020-05-14T00:00:00', + ShippedDate: '2020-04-27T00:00:00', + ShipVia: 1, + Freight: 47.8400, + ShipName: 'Chop-suey Chinese', + ShipAddress: 'Hauptstr. 31', + ShipCity: 'Bern', + ShipRegion: null, + ShipPostalCode: '3012', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11030, + CustomerID: 'SAVEA', + EmployeeID: 7, + OrderDate: '2020-04-17T00:00:00', + RequiredDate: '2020-05-15T00:00:00', + ShippedDate: '2020-04-27T00:00:00', + ShipVia: 2, + Freight: 830.7500, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11031, + CustomerID: 'SAVEA', + EmployeeID: 6, + OrderDate: '2020-04-17T00:00:00', + RequiredDate: '2020-05-15T00:00:00', + ShippedDate: '2020-04-24T00:00:00', + ShipVia: 2, + Freight: 227.2200, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11032, + CustomerID: 'WHITC', + EmployeeID: 2, + OrderDate: '2020-04-17T00:00:00', + RequiredDate: '2020-05-15T00:00:00', + ShippedDate: '2020-04-23T00:00:00', + ShipVia: 3, + Freight: 606.1900, + ShipName: 'White Clover Markets', + ShipAddress: '1029 - 12th Ave. S.', + ShipCity: 'Seattle', + ShipRegion: 'WA', + ShipPostalCode: '98124', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11033, + CustomerID: 'RICSU', + EmployeeID: 7, + OrderDate: '2020-04-17T00:00:00', + RequiredDate: '2020-05-15T00:00:00', + ShippedDate: '2020-04-23T00:00:00', + ShipVia: 3, + Freight: 84.7400, + ShipName: 'Richter Supermarkt', + ShipAddress: 'Starenweg 5', + ShipCity: 'Genève', + ShipRegion: null, + ShipPostalCode: '1204', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11034, + CustomerID: 'OLDWO', + EmployeeID: 8, + OrderDate: '2020-04-20T00:00:00', + RequiredDate: '2020-06-01T00:00:00', + ShippedDate: '2020-04-27T00:00:00', + ShipVia: 1, + Freight: 40.3200, + ShipName: 'Old World Delicatessen', + ShipAddress: '2743 Bering St.', + ShipCity: 'Anchorage', + ShipRegion: 'AK', + ShipPostalCode: '99508', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11035, + CustomerID: 'SUPRD', + EmployeeID: 2, + OrderDate: '2020-04-20T00:00:00', + RequiredDate: '2020-05-18T00:00:00', + ShippedDate: '2020-04-24T00:00:00', + ShipVia: 2, + Freight: 0.1700, + ShipName: 'Suprêmes délices', + ShipAddress: 'Boulevard Tirou, 255', + ShipCity: 'Charleroi', + ShipRegion: null, + ShipPostalCode: 'B-6000', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11036, + CustomerID: 'DRACD', + EmployeeID: 8, + OrderDate: '2020-04-20T00:00:00', + RequiredDate: '2020-05-18T00:00:00', + ShippedDate: '2020-04-22T00:00:00', + ShipVia: 3, + Freight: 149.4700, + ShipName: 'Drachenblut Delikatessen', + ShipAddress: 'Walserweg 21', + ShipCity: 'Aachen', + ShipRegion: null, + ShipPostalCode: '52066', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11037, + CustomerID: 'GODOS', + EmployeeID: 7, + OrderDate: '2020-04-21T00:00:00', + RequiredDate: '2020-05-19T00:00:00', + ShippedDate: '2020-04-27T00:00:00', + ShipVia: 1, + Freight: 3.2000, + ShipName: 'Godos Cocina Típica', + ShipAddress: 'C/ Romero, 33', + ShipCity: 'Sevilla', + ShipRegion: null, + ShipPostalCode: '41101', + ShipCountry: 'Spain', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11038, + CustomerID: 'SUPRD', + EmployeeID: 1, + OrderDate: '2020-04-21T00:00:00', + RequiredDate: '2020-05-19T00:00:00', + ShippedDate: '2020-04-30T00:00:00', + ShipVia: 2, + Freight: 29.5900, + ShipName: 'Suprêmes délices', + ShipAddress: 'Boulevard Tirou, 255', + ShipCity: 'Charleroi', + ShipRegion: null, + ShipPostalCode: 'B-6000', + ShipCountry: 'Belgium', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11039, + CustomerID: 'LINOD', + EmployeeID: 1, + OrderDate: '2020-04-21T00:00:00', + RequiredDate: '2020-05-19T00:00:00', + ShippedDate: null, + ShipVia: 2, + Freight: 65.0000, + ShipName: 'LINO-Delicateses', + ShipAddress: 'Ave. 5 de Mayo Porlamar', + ShipCity: 'I. de Margarita', + ShipRegion: 'Nueva Esparta', + ShipPostalCode: '4980', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11040, + CustomerID: 'GREAL', + EmployeeID: 4, + OrderDate: '2020-04-22T00:00:00', + RequiredDate: '2020-05-20T00:00:00', + ShippedDate: null, + ShipVia: 3, + Freight: 18.8400, + ShipName: 'Great Lakes Food Market', + ShipAddress: '2732 Baker Blvd.', + ShipCity: 'Eugene', + ShipRegion: 'OR', + ShipPostalCode: '97403', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11041, + CustomerID: 'CHOPS', + EmployeeID: 3, + OrderDate: '2020-04-22T00:00:00', + RequiredDate: '2020-05-20T00:00:00', + ShippedDate: '2020-04-28T00:00:00', + ShipVia: 2, + Freight: 48.2200, + ShipName: 'Chop-suey Chinese', + ShipAddress: 'Hauptstr. 31', + ShipCity: 'Bern', + ShipRegion: null, + ShipPostalCode: '3012', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11042, + CustomerID: 'COMMI', + EmployeeID: 2, + OrderDate: '2020-04-22T00:00:00', + RequiredDate: '2020-05-06T00:00:00', + ShippedDate: '2020-05-01T00:00:00', + ShipVia: 1, + Freight: 29.9900, + ShipName: 'Comércio Mineiro', + ShipAddress: 'Av. dos Lusíadas, 23', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05432-043', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11043, + CustomerID: 'SPECD', + EmployeeID: 5, + OrderDate: '2020-04-22T00:00:00', + RequiredDate: '2020-05-20T00:00:00', + ShippedDate: '2020-04-29T00:00:00', + ShipVia: 2, + Freight: 8.8000, + ShipName: 'Spécialités du monde', + ShipAddress: '25, rue Lauriston', + ShipCity: 'Paris', + ShipRegion: null, + ShipPostalCode: '75016', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11044, + CustomerID: 'WOLZA', + EmployeeID: 4, + OrderDate: '2020-04-23T00:00:00', + RequiredDate: '2020-05-21T00:00:00', + ShippedDate: '2020-05-01T00:00:00', + ShipVia: 1, + Freight: 8.7200, + ShipName: 'Wolski Zajazd', + ShipAddress: 'ul. Filtrowa 68', + ShipCity: 'Warszawa', + ShipRegion: null, + ShipPostalCode: '01-012', + ShipCountry: 'Poland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11045, + CustomerID: 'BOTTM', + EmployeeID: 6, + OrderDate: '2020-04-23T00:00:00', + RequiredDate: '2020-05-21T00:00:00', + ShippedDate: null, + ShipVia: 2, + Freight: 70.5800, + ShipName: 'Bottom-Dollar Markets', + ShipAddress: '23 Tsawassen Blvd.', + ShipCity: 'Tsawassen', + ShipRegion: 'BC', + ShipPostalCode: 'T2F 8M4', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11046, + CustomerID: 'WANDK', + EmployeeID: 8, + OrderDate: '2020-04-23T00:00:00', + RequiredDate: '2020-05-21T00:00:00', + ShippedDate: '2020-04-24T00:00:00', + ShipVia: 2, + Freight: 71.6400, + ShipName: 'Die Wandernde Kuh', + ShipAddress: 'Adenauerallee 900', + ShipCity: 'Stuttgart', + ShipRegion: null, + ShipPostalCode: '70563', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11047, + CustomerID: 'EASTC', + EmployeeID: 7, + OrderDate: '2020-04-24T00:00:00', + RequiredDate: '2020-05-22T00:00:00', + ShippedDate: '2020-05-01T00:00:00', + ShipVia: 3, + Freight: 46.6200, + ShipName: 'Eastern Connection', + ShipAddress: '35 King George', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'WX3 6FW', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11048, + CustomerID: 'BOTTM', + EmployeeID: 7, + OrderDate: '2020-04-24T00:00:00', + RequiredDate: '2020-05-22T00:00:00', + ShippedDate: '2020-04-30T00:00:00', + ShipVia: 3, + Freight: 24.1200, + ShipName: 'Bottom-Dollar Markets', + ShipAddress: '23 Tsawassen Blvd.', + ShipCity: 'Tsawassen', + ShipRegion: 'BC', + ShipPostalCode: 'T2F 8M4', + ShipCountry: 'Canada', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11049, + CustomerID: 'GOURL', + EmployeeID: 3, + OrderDate: '2020-04-24T00:00:00', + RequiredDate: '2020-05-22T00:00:00', + ShippedDate: '2020-05-04T00:00:00', + ShipVia: 1, + Freight: 8.3400, + ShipName: 'Gourmet Lanchonetes', + ShipAddress: 'Av. Brasil, 442', + ShipCity: 'Campinas', + ShipRegion: 'SP', + ShipPostalCode: '04876-786', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11050, + CustomerID: 'FOLKO', + EmployeeID: 8, + OrderDate: '2020-04-27T00:00:00', + RequiredDate: '2020-05-25T00:00:00', + ShippedDate: '2020-05-05T00:00:00', + ShipVia: 2, + Freight: 59.4100, + ShipName: 'Folk och fä HB', + ShipAddress: 'Åkergatan 24', + ShipCity: 'Bräcke', + ShipRegion: null, + ShipPostalCode: 'S-844 67', + ShipCountry: 'Sweden', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11051, + CustomerID: 'LAMAI', + EmployeeID: 7, + OrderDate: '2020-04-27T00:00:00', + RequiredDate: '2020-05-25T00:00:00', + ShippedDate: null, + ShipVia: 3, + Freight: 2.7900, + ShipName: 'La maison d\'Asie', + ShipAddress: '1 rue Alsace-Lorraine', + ShipCity: 'Toulouse', + ShipRegion: null, + ShipPostalCode: '31000', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11052, + CustomerID: 'HANAR', + EmployeeID: 3, + OrderDate: '2020-04-27T00:00:00', + RequiredDate: '2020-05-25T00:00:00', + ShippedDate: '2020-05-01T00:00:00', + ShipVia: 1, + Freight: 67.2600, + ShipName: 'Hanari Carnes', + ShipAddress: 'Rua do Paço, 67', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '05454-876', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11053, + CustomerID: 'PICCO', + EmployeeID: 2, + OrderDate: '2020-04-27T00:00:00', + RequiredDate: '2020-05-25T00:00:00', + ShippedDate: '2020-04-29T00:00:00', + ShipVia: 2, + Freight: 53.0500, + ShipName: 'Piccolo und mehr', + ShipAddress: 'Geislweg 14', + ShipCity: 'Salzburg', + ShipRegion: null, + ShipPostalCode: '5020', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11054, + CustomerID: 'CACTU', + EmployeeID: 8, + OrderDate: '2020-04-28T00:00:00', + RequiredDate: '2020-05-26T00:00:00', + ShippedDate: null, + ShipVia: 1, + Freight: 0.3300, + ShipName: 'Cactus Comidas para llevar', + ShipAddress: 'Cerrito 333', + ShipCity: 'Buenos Aires', + ShipRegion: null, + ShipPostalCode: '1010', + ShipCountry: 'Argentina', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11055, + CustomerID: 'HILAA', + EmployeeID: 7, + OrderDate: '2020-04-28T00:00:00', + RequiredDate: '2020-05-26T00:00:00', + ShippedDate: '2020-05-05T00:00:00', + ShipVia: 2, + Freight: 120.9200, + ShipName: 'HILARION-Abastos', + ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', + ShipCity: 'San Cristóbal', + ShipRegion: 'Táchira', + ShipPostalCode: '5022', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11056, + CustomerID: 'EASTC', + EmployeeID: 8, + OrderDate: '2020-04-28T00:00:00', + RequiredDate: '2020-05-12T00:00:00', + ShippedDate: '2020-05-01T00:00:00', + ShipVia: 2, + Freight: 278.9600, + ShipName: 'Eastern Connection', + ShipAddress: '35 King George', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'WX3 6FW', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11057, + CustomerID: 'NORTS', + EmployeeID: 3, + OrderDate: '2020-04-29T00:00:00', + RequiredDate: '2020-05-27T00:00:00', + ShippedDate: '2020-05-01T00:00:00', + ShipVia: 3, + Freight: 4.1300, + ShipName: 'North/South', + ShipAddress: 'South House 300 Queensbridge', + ShipCity: 'London', + ShipRegion: null, + ShipPostalCode: 'SW7 1RZ', + ShipCountry: 'UK', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11058, + CustomerID: 'BLAUS', + EmployeeID: 9, + OrderDate: '2020-04-29T00:00:00', + RequiredDate: '2020-05-27T00:00:00', + ShippedDate: null, + ShipVia: 3, + Freight: 31.1400, + ShipName: 'Blauer See Delikatessen', + ShipAddress: 'Forsterstr. 57', + ShipCity: 'Mannheim', + ShipRegion: null, + ShipPostalCode: '68306', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11059, + CustomerID: 'RICAR', + EmployeeID: 2, + OrderDate: '2020-04-29T00:00:00', + RequiredDate: '2020-06-10T00:00:00', + ShippedDate: null, + ShipVia: 2, + Freight: 85.8000, + ShipName: 'Ricardo Adocicados', + ShipAddress: 'Av. Copacabana, 267', + ShipCity: 'Rio de Janeiro', + ShipRegion: 'RJ', + ShipPostalCode: '02389-890', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11060, + CustomerID: 'FRANS', + EmployeeID: 2, + OrderDate: '2020-04-30T00:00:00', + RequiredDate: '2020-05-28T00:00:00', + ShippedDate: '2020-05-04T00:00:00', + ShipVia: 2, + Freight: 10.9800, + ShipName: 'Franchi S.p.A.', + ShipAddress: 'Via Monte Bianco 34', + ShipCity: 'Torino', + ShipRegion: null, + ShipPostalCode: '10100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11061, + CustomerID: 'GREAL', + EmployeeID: 4, + OrderDate: '2020-04-30T00:00:00', + RequiredDate: '2020-06-11T00:00:00', + ShippedDate: null, + ShipVia: 3, + Freight: 14.0100, + ShipName: 'Great Lakes Food Market', + ShipAddress: '2732 Baker Blvd.', + ShipCity: 'Eugene', + ShipRegion: 'OR', + ShipPostalCode: '97403', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11062, + CustomerID: 'REGGC', + EmployeeID: 4, + OrderDate: '2020-04-30T00:00:00', + RequiredDate: '2020-05-28T00:00:00', + ShippedDate: null, + ShipVia: 2, + Freight: 29.9300, + ShipName: 'Reggiani Caseifici', + ShipAddress: 'Strada Provinciale 124', + ShipCity: 'Reggio Emilia', + ShipRegion: null, + ShipPostalCode: '42100', + ShipCountry: 'Italy', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11063, + CustomerID: 'HUNGO', + EmployeeID: 3, + OrderDate: '2020-04-30T00:00:00', + RequiredDate: '2020-05-28T00:00:00', + ShippedDate: '2020-05-06T00:00:00', + ShipVia: 2, + Freight: 81.7300, + ShipName: 'Hungry Owl All-Night Grocers', + ShipAddress: '8 Johnstown Road', + ShipCity: 'Cork', + ShipRegion: 'Co. Cork', + ShipPostalCode: null, + ShipCountry: 'Ireland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11064, + CustomerID: 'SAVEA', + EmployeeID: 1, + OrderDate: '2020-05-01T00:00:00', + RequiredDate: '2020-05-29T00:00:00', + ShippedDate: '2020-05-04T00:00:00', + ShipVia: 1, + Freight: 30.0900, + ShipName: 'Save-a-lot Markets', + ShipAddress: '187 Suffolk Ln.', + ShipCity: 'Boise', + ShipRegion: 'ID', + ShipPostalCode: '83720', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11065, + CustomerID: 'LILAS', + EmployeeID: 8, + OrderDate: '2020-05-01T00:00:00', + RequiredDate: '2020-05-29T00:00:00', + ShippedDate: null, + ShipVia: 1, + Freight: 12.9100, + ShipName: 'LILA-Supermercado', + ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', + ShipCity: 'Barquisimeto', + ShipRegion: 'Lara', + ShipPostalCode: '3508', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11066, + CustomerID: 'WHITC', + EmployeeID: 7, + OrderDate: '2020-05-01T00:00:00', + RequiredDate: '2020-05-29T00:00:00', + ShippedDate: '2020-05-04T00:00:00', + ShipVia: 2, + Freight: 44.7200, + ShipName: 'White Clover Markets', + ShipAddress: '1029 - 12th Ave. S.', + ShipCity: 'Seattle', + ShipRegion: 'WA', + ShipPostalCode: '98124', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11067, + CustomerID: 'DRACD', + EmployeeID: 1, + OrderDate: '2020-05-04T00:00:00', + RequiredDate: '2020-05-18T00:00:00', + ShippedDate: '2020-05-06T00:00:00', + ShipVia: 2, + Freight: 7.9800, + ShipName: 'Drachenblut Delikatessen', + ShipAddress: 'Walserweg 21', + ShipCity: 'Aachen', + ShipRegion: null, + ShipPostalCode: '52066', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11068, + CustomerID: 'QUEEN', + EmployeeID: 8, + OrderDate: '2020-05-04T00:00:00', + RequiredDate: '2020-06-01T00:00:00', + ShippedDate: null, + ShipVia: 2, + Freight: 81.7500, + ShipName: 'Queen Cozinha', + ShipAddress: 'Alameda dos Canàrios, 891', + ShipCity: 'Sao Paulo', + ShipRegion: 'SP', + ShipPostalCode: '05487-020', + ShipCountry: 'Brazil', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11069, + CustomerID: 'TORTU', + EmployeeID: 1, + OrderDate: '2020-05-04T00:00:00', + RequiredDate: '2020-06-01T00:00:00', + ShippedDate: '2020-05-06T00:00:00', + ShipVia: 2, + Freight: 15.6700, + ShipName: 'Tortuga Restaurante', + ShipAddress: 'Avda. Azteca 123', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11070, + CustomerID: 'LEHMS', + EmployeeID: 2, + OrderDate: '2020-05-05T00:00:00', + RequiredDate: '2020-06-02T00:00:00', + ShippedDate: null, + ShipVia: 1, + Freight: 136.0000, + ShipName: 'Lehmanns Marktstand', + ShipAddress: 'Magazinweg 7', + ShipCity: 'Frankfurt a.M.', + ShipRegion: null, + ShipPostalCode: '60528', + ShipCountry: 'Germany', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11071, + CustomerID: 'LILAS', + EmployeeID: 1, + OrderDate: '2020-05-05T00:00:00', + RequiredDate: '2020-06-02T00:00:00', + ShippedDate: null, + ShipVia: 1, + Freight: 0.9300, + ShipName: 'LILA-Supermercado', + ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', + ShipCity: 'Barquisimeto', + ShipRegion: 'Lara', + ShipPostalCode: '3508', + ShipCountry: 'Venezuela', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11072, + CustomerID: 'ERNSH', + EmployeeID: 4, + OrderDate: '2020-05-05T00:00:00', + RequiredDate: '2020-06-02T00:00:00', + ShippedDate: null, + ShipVia: 2, + Freight: 258.6400, + ShipName: 'Ernst Handel', + ShipAddress: 'Kirchgasse 6', + ShipCity: 'Graz', + ShipRegion: null, + ShipPostalCode: '8010', + ShipCountry: 'Austria', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11073, + CustomerID: 'PERIC', + EmployeeID: 2, + OrderDate: '2020-05-05T00:00:00', + RequiredDate: '2020-06-02T00:00:00', + ShippedDate: null, + ShipVia: 2, + Freight: 24.9500, + ShipName: 'Pericles Comidas clásicas', + ShipAddress: 'Calle Dr. Jorge Cash 321', + ShipCity: 'México D.F.', + ShipRegion: null, + ShipPostalCode: '05033', + ShipCountry: 'Mexico', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11074, + CustomerID: 'SIMOB', + EmployeeID: 7, + OrderDate: '2020-05-06T00:00:00', + RequiredDate: '2020-06-03T00:00:00', + ShippedDate: null, + ShipVia: 2, + Freight: 18.4400, + ShipName: 'Simons bistro', + ShipAddress: 'Vinbæltet 34', + ShipCity: 'Kobenhavn', + ShipRegion: null, + ShipPostalCode: '1734', + ShipCountry: 'Denmark', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11075, + CustomerID: 'RICSU', + EmployeeID: 8, + OrderDate: '2020-05-06T00:00:00', + RequiredDate: '2020-06-03T00:00:00', + ShippedDate: null, + ShipVia: 2, + Freight: 6.1900, + ShipName: 'Richter Supermarkt', + ShipAddress: 'Starenweg 5', + ShipCity: 'Genève', + ShipRegion: null, + ShipPostalCode: '1204', + ShipCountry: 'Switzerland', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11076, + CustomerID: 'BONAP', + EmployeeID: 4, + OrderDate: '2020-05-06T00:00:00', + RequiredDate: '2020-06-03T00:00:00', + ShippedDate: null, + ShipVia: 2, + Freight: 38.2800, + ShipName: 'Bon app\'', + ShipAddress: '12, rue des Bouchers', + ShipCity: 'Marseille', + ShipRegion: null, + ShipPostalCode: '13008', + ShipCountry: 'France', + Customer: null, + Employee: null, + Shipper: null, + }, + { + OrderID: 11077, + CustomerID: 'RATTC', + EmployeeID: 1, + OrderDate: '2020-05-06T00:00:00', + RequiredDate: '2020-06-03T00:00:00', + ShippedDate: null, + ShipVia: 2, + Freight: 8.5300, + ShipName: 'Rattlesnake Canyon Grocery', + ShipAddress: '2817 Milton Dr.', + ShipCity: 'Albuquerque', + ShipRegion: 'NM', + ShipPostalCode: '87110', + ShipCountry: 'USA', + Customer: null, + Employee: null, + Shipper: null, + }, +]; From 6986b54250751bb3993d460d58444e4fd0b3c45c Mon Sep 17 00:00:00 2001 From: Artem Kurchenko Date: Sat, 4 Oct 2025 23:20:42 +0400 Subject: [PATCH 03/10] implement react --- React/package-lock.json | 8000 ++++++----------- React/package.json | 7 +- React/src/App.tsx | 110 +- .../GroupRowSelection/GroupRowComponent.css | 13 + .../GroupRowSelection/GroupRowComponent.tsx | 87 + .../GroupRowSelectionHelper.tsx | 138 + React/src/hooks.ts | 22 + 7 files changed, 2996 insertions(+), 5381 deletions(-) create mode 100644 React/src/GroupRowSelection/GroupRowComponent.css create mode 100644 React/src/GroupRowSelection/GroupRowComponent.tsx create mode 100644 React/src/GroupRowSelection/GroupRowSelectionHelper.tsx create mode 100644 React/src/hooks.ts diff --git a/React/package-lock.json b/React/package-lock.json index bd6f0e8..926f545 100644 --- a/React/package-lock.json +++ b/React/package-lock.json @@ -9,6 +9,7 @@ "version": "0.0.0", "dependencies": { "devextreme": "25.1.3", + "devextreme-aspnet-data-nojquery": "^5.1.0", "devextreme-react": "25.1.3", "react": "^18.2.0", "react-dom": "^18.2.0" @@ -534,149 +535,6 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-syntax-private-property-in-object": { "version": "7.14.5", "dev": true, @@ -691,38 +549,6 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.24.7", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-transform-react-jsx-self": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", @@ -1477,562 +1303,314 @@ "dev": true, "license": "BSD-3-Clause" }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", "dev": true, - "license": "ISC", - "optional": true, - "peer": true, - "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { - "version": "1.0.10", + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "sprintf-js": "~1.0.2" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { - "version": "5.3.1", + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "engines": { - "node": ">=6" + "node": ">=6.0.0" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { - "version": "4.1.0", + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } + "license": "MIT" }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { - "version": "3.14.1", + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { - "version": "5.0.0", + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "p-locate": "^4.1.0" + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" }, "engines": { - "node": ">=8" + "node": ">= 8" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { - "version": "2.3.0", + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", "dev": true, "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "p-try": "^2.0.0" - }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 8" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { - "version": "4.1.0", + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "p-limit": "^2.2.0" + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" }, "engines": { - "node": ">=8" + "node": ">= 8" } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { - "version": "5.0.0", - "dev": true, + "node_modules/@preact/signals-core": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/@preact/signals-core/-/signals-core-1.11.0.tgz", + "integrity": "sha512-jglbibeWHuFRzEWVFY/TT7wB1PppJxmcSfUHcK+2J9vBRtiooMfw6tAPttojNYrrpdGViqAYCbPpmWYlMm+eMQ==", "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/preact" } }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.19", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.19.tgz", + "integrity": "sha512-3FL3mnMbPu0muGOCaKAhhFEYmqv9eTfPSJRJmANrCwtgK8VuxpsZDGK+m0LYAGoyO8+0j5uRe4PeyPDK1yA/hA==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } + "license": "MIT" }, - "node_modules/@jest/console": { - "version": "27.5.1", + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.45.0.tgz", + "integrity": "sha512-2o/FgACbji4tW1dzXOqAV15Eu7DdgbKsF2QKcxfG4xbh5iwU7yr5RRP5/U+0asQliSYv5M4o7BevlGIoSL0LXg==", + "cpu": [ + "arm" + ], "dev": true, "license": "MIT", "optional": true, - "peer": true, - "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^27.5.1", - "jest-util": "^27.5.1", - "slash": "^3.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } + "os": [ + "android" + ] }, - "node_modules/@jest/core": { - "version": "27.5.1", + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.45.0.tgz", + "integrity": "sha512-PSZ0SvMOjEAxwZeTx32eI/j5xSYtDCRxGu5k9zvzoY77xUNssZM+WV6HYBLROpY5CkXsbQjvz40fBb7WPwDqtQ==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", "optional": true, - "peer": true, - "dependencies": { - "@jest/console": "^27.5.1", - "@jest/reporters": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.8.1", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^27.5.1", - "jest-config": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-resolve-dependencies": "^27.5.1", - "jest-runner": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "jest-watcher": "^27.5.1", - "micromatch": "^4.0.4", - "rimraf": "^3.0.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } + "os": [ + "android" + ] }, - "node_modules/@jest/environment": { - "version": "27.5.1", + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.45.0.tgz", + "integrity": "sha512-BA4yPIPssPB2aRAWzmqzQ3y2/KotkLyZukVB7j3psK/U3nVJdceo6qr9pLM2xN6iRP/wKfxEbOb1yrlZH6sYZg==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", "optional": true, - "peer": true, - "dependencies": { - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } + "os": [ + "darwin" + ] }, - "node_modules/@jest/fake-timers": { - "version": "27.5.1", + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.45.0.tgz", + "integrity": "sha512-Pr2o0lvTwsiG4HCr43Zy9xXrHspyMvsvEw4FwKYqhli4FuLE5FjcZzuQ4cfPe0iUFCvSQG6lACI0xj74FDZKRA==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", "optional": true, - "peer": true, - "dependencies": { - "@jest/types": "^27.5.1", - "@sinonjs/fake-timers": "^8.0.1", - "@types/node": "*", - "jest-message-util": "^27.5.1", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } + "os": [ + "darwin" + ] }, - "node_modules/@jest/globals": { - "version": "27.5.1", + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.45.0.tgz", + "integrity": "sha512-lYE8LkE5h4a/+6VnnLiL14zWMPnx6wNbDG23GcYFpRW1V9hYWHAw9lBZ6ZUIrOaoK7NliF1sdwYGiVmziUF4vA==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", "optional": true, - "peer": true, - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/types": "^27.5.1", - "expect": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } + "os": [ + "freebsd" + ] }, - "node_modules/@jest/reporters": { - "version": "27.5.1", + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.45.0.tgz", + "integrity": "sha512-PVQWZK9sbzpvqC9Q0GlehNNSVHR+4m7+wET+7FgSnKG3ci5nAMgGmr9mGBXzAuE5SvguCKJ6mHL6vq1JaJ/gvw==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", "optional": true, - "peer": true, - "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.2", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-haste-map": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "slash": "^3.0.0", - "source-map": "^0.6.0", - "string-length": "^4.0.1", - "terminal-link": "^2.0.0", - "v8-to-istanbul": "^8.1.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } + "os": [ + "freebsd" + ] }, - "node_modules/@jest/reporters/node_modules/source-map": { - "version": "0.6.1", + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.45.0.tgz", + "integrity": "sha512-hLrmRl53prCcD+YXTfNvXd776HTxNh8wPAMllusQ+amcQmtgo3V5i/nkhPN6FakW+QVLoUUr2AsbtIRPFU3xIA==", + "cpu": [ + "arm" + ], "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "optional": true, - "peer": true, - "engines": { - "node": ">=0.10.0" - } + "os": [ + "linux" + ] }, - "node_modules/@jest/source-map": { - "version": "27.5.1", + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.45.0.tgz", + "integrity": "sha512-XBKGSYcrkdiRRjl+8XvrUR3AosXU0NvF7VuqMsm7s5nRy+nt58ZMB19Jdp1RdqewLcaYnpk8zeVs/4MlLZEJxw==", + "cpu": [ + "arm" + ], "dev": true, "license": "MIT", "optional": true, - "peer": true, - "dependencies": { - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9", - "source-map": "^0.6.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } + "os": [ + "linux" + ] }, - "node_modules/@jest/source-map/node_modules/source-map": { - "version": "0.6.1", + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.45.0.tgz", + "integrity": "sha512-fRvZZPUiBz7NztBE/2QnCS5AtqLVhXmUOPj9IHlfGEXkapgImf4W9+FSkL8cWqoAjozyUzqFmSc4zh2ooaeF6g==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "optional": true, - "peer": true, - "engines": { - "node": ">=0.10.0" - } + "os": [ + "linux" + ] }, - "node_modules/@jest/test-result": { - "version": "27.5.1", + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.45.0.tgz", + "integrity": "sha512-Btv2WRZOcUGi8XU80XwIvzTg4U6+l6D0V6sZTrZx214nrwxw5nAi8hysaXj/mctyClWgesyuxbeLylCBNauimg==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", "optional": true, - "peer": true, - "dependencies": { - "@jest/console": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } + "os": [ + "linux" + ] }, - "node_modules/@jest/test-sequencer": { - "version": "27.5.1", + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.45.0.tgz", + "integrity": "sha512-Li0emNnwtUZdLwHjQPBxn4VWztcrw/h7mgLyHiEI5Z0MhpeFGlzaiBHpSNVOMB/xucjXTTcO+dhv469Djr16KA==", + "cpu": [ + "loong64" + ], "dev": true, "license": "MIT", "optional": true, - "peer": true, - "dependencies": { - "@jest/test-result": "^27.5.1", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-runtime": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } + "os": [ + "linux" + ] }, - "node_modules/@jest/transform": { - "version": "27.5.1", + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.45.0.tgz", + "integrity": "sha512-sB8+pfkYx2kvpDCfd63d5ScYT0Fz1LO6jIb2zLZvmK9ob2D8DeVqrmBDE0iDK8KlBVmsTNzrjr3G1xV4eUZhSw==", + "cpu": [ + "ppc64" + ], "dev": true, "license": "MIT", "optional": true, - "peer": true, - "dependencies": { - "@babel/core": "^7.1.0", - "@jest/types": "^27.5.1", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-util": "^27.5.1", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "^3.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } + "os": [ + "linux" + ] }, - "node_modules/@jest/transform/node_modules/convert-source-map": { - "version": "1.9.0", + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.45.0.tgz", + "integrity": "sha512-5GQ6PFhh7E6jQm70p1aW05G2cap5zMOvO0se5JMecHeAdj5ZhWEHbJ4hiKpfi1nnnEdTauDXxPgXae/mqjow9w==", + "cpu": [ + "riscv64" + ], "dev": true, "license": "MIT", "optional": true, - "peer": true + "os": [ + "linux" + ] }, - "node_modules/@jest/transform/node_modules/source-map": { - "version": "0.6.1", + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.45.0.tgz", + "integrity": "sha512-N/euLsBd1rekWcuduakTo/dJw6U6sBP3eUq+RXM9RNfPuWTvG2w/WObDkIvJ2KChy6oxZmOSC08Ak2OJA0UiAA==", + "cpu": [ + "riscv64" + ], "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "optional": true, - "peer": true, - "engines": { - "node": ">=0.10.0" - } + "os": [ + "linux" + ] }, - "node_modules/@jest/types": { - "version": "27.5.1", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.12", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", - "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.5.0", - "@jridgewell/trace-mapping": "^0.3.24" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", - "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.29", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", - "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@preact/signals-core": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@preact/signals-core/-/signals-core-1.11.0.tgz", - "integrity": "sha512-jglbibeWHuFRzEWVFY/TT7wB1PppJxmcSfUHcK+2J9vBRtiooMfw6tAPttojNYrrpdGViqAYCbPpmWYlMm+eMQ==", - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/preact" - } - }, - "node_modules/@rolldown/pluginutils": { - "version": "1.0.0-beta.19", - "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.19.tgz", - "integrity": "sha512-3FL3mnMbPu0muGOCaKAhhFEYmqv9eTfPSJRJmANrCwtgK8VuxpsZDGK+m0LYAGoyO8+0j5uRe4PeyPDK1yA/hA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.45.0.tgz", - "integrity": "sha512-2o/FgACbji4tW1dzXOqAV15Eu7DdgbKsF2QKcxfG4xbh5iwU7yr5RRP5/U+0asQliSYv5M4o7BevlGIoSL0LXg==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.45.0.tgz", - "integrity": "sha512-PSZ0SvMOjEAxwZeTx32eI/j5xSYtDCRxGu5k9zvzoY77xUNssZM+WV6HYBLROpY5CkXsbQjvz40fBb7WPwDqtQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.45.0.tgz", - "integrity": "sha512-BA4yPIPssPB2aRAWzmqzQ3y2/KotkLyZukVB7j3psK/U3nVJdceo6qr9pLM2xN6iRP/wKfxEbOb1yrlZH6sYZg==", - "cpu": [ - "arm64" - ], + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.45.0.tgz", + "integrity": "sha512-2l9sA7d7QdikL0xQwNMO3xURBUNEWyHVHfAsHsUdq+E/pgLTUcCE+gih5PCdmyHmfTDeXUWVhqL0WZzg0nua3g==", + "cpu": [ + "s390x" + ], "dev": true, "license": "MIT", "optional": true, "os": [ - "darwin" + "linux" ] }, - "node_modules/@rollup/rollup-darwin-x64": { + "node_modules/@rollup/rollup-linux-x64-gnu": { "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.45.0.tgz", - "integrity": "sha512-Pr2o0lvTwsiG4HCr43Zy9xXrHspyMvsvEw4FwKYqhli4FuLE5FjcZzuQ4cfPe0iUFCvSQG6lACI0xj74FDZKRA==", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.45.0.tgz", + "integrity": "sha512-XZdD3fEEQcwG2KrJDdEQu7NrHonPxxaV0/w2HpvINBdcqebz1aL+0vM2WFJq4DeiAVT6F5SUQas65HY5JDqoPw==", "cpu": [ "x64" ], @@ -2040,274 +1618,86 @@ "license": "MIT", "optional": true, "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.45.0.tgz", - "integrity": "sha512-lYE8LkE5h4a/+6VnnLiL14zWMPnx6wNbDG23GcYFpRW1V9hYWHAw9lBZ6ZUIrOaoK7NliF1sdwYGiVmziUF4vA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" + "linux" ] }, - "node_modules/@rollup/rollup-freebsd-x64": { + "node_modules/@rollup/rollup-linux-x64-musl": { "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.45.0.tgz", - "integrity": "sha512-PVQWZK9sbzpvqC9Q0GlehNNSVHR+4m7+wET+7FgSnKG3ci5nAMgGmr9mGBXzAuE5SvguCKJ6mHL6vq1JaJ/gvw==", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.45.0.tgz", + "integrity": "sha512-7ayfgvtmmWgKWBkCGg5+xTQ0r5V1owVm67zTrsEY1008L5ro7mCyGYORomARt/OquB9KY7LpxVBZes+oSniAAQ==", "cpu": [ "x64" ], "dev": true, "license": "MIT", "optional": true, - "os": [ - "freebsd" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.45.0.tgz", - "integrity": "sha512-hLrmRl53prCcD+YXTfNvXd776HTxNh8wPAMllusQ+amcQmtgo3V5i/nkhPN6FakW+QVLoUUr2AsbtIRPFU3xIA==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, "os": [ "linux" ] }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "node_modules/@rollup/rollup-win32-arm64-msvc": { "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.45.0.tgz", - "integrity": "sha512-XBKGSYcrkdiRRjl+8XvrUR3AosXU0NvF7VuqMsm7s5nRy+nt58ZMB19Jdp1RdqewLcaYnpk8zeVs/4MlLZEJxw==", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.45.0.tgz", + "integrity": "sha512-B+IJgcBnE2bm93jEW5kHisqvPITs4ddLOROAcOc/diBgrEiQJJ6Qcjby75rFSmH5eMGrqJryUgJDhrfj942apQ==", "cpu": [ - "arm" + "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ - "linux" + "win32" ] }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { + "node_modules/@rollup/rollup-win32-ia32-msvc": { "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.45.0.tgz", - "integrity": "sha512-fRvZZPUiBz7NztBE/2QnCS5AtqLVhXmUOPj9IHlfGEXkapgImf4W9+FSkL8cWqoAjozyUzqFmSc4zh2ooaeF6g==", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.45.0.tgz", + "integrity": "sha512-+CXwwG66g0/FpWOnP/v1HnrGVSOygK/osUbu3wPRy8ECXjoYKjRAyfxYpDQOfghC5qPJYLPH0oN4MCOjwgdMug==", "cpu": [ - "arm64" + "ia32" ], "dev": true, "license": "MIT", "optional": true, "os": [ - "linux" + "win32" ] }, - "node_modules/@rollup/rollup-linux-arm64-musl": { + "node_modules/@rollup/rollup-win32-x64-msvc": { "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.45.0.tgz", - "integrity": "sha512-Btv2WRZOcUGi8XU80XwIvzTg4U6+l6D0V6sZTrZx214nrwxw5nAi8hysaXj/mctyClWgesyuxbeLylCBNauimg==", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.45.0.tgz", + "integrity": "sha512-SRf1cytG7wqcHVLrBc9VtPK4pU5wxiB/lNIkNmW2ApKXIg+RpqwHfsaEK+e7eH4A1BpI6BX/aBWXxZCIrJg3uA==", "cpu": [ - "arm64" + "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ - "linux" + "win32" ] }, - "node_modules/@rollup/rollup-linux-loongarch64-gnu": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.45.0.tgz", - "integrity": "sha512-Li0emNnwtUZdLwHjQPBxn4VWztcrw/h7mgLyHiEI5Z0MhpeFGlzaiBHpSNVOMB/xucjXTTcO+dhv469Djr16KA==", - "cpu": [ - "loong64" - ], + "node_modules/@testing-library/dom": { + "version": "10.1.0", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.3.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=18" + } }, - "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.45.0.tgz", - "integrity": "sha512-sB8+pfkYx2kvpDCfd63d5ScYT0Fz1LO6jIb2zLZvmK9ob2D8DeVqrmBDE0iDK8KlBVmsTNzrjr3G1xV4eUZhSw==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.45.0.tgz", - "integrity": "sha512-5GQ6PFhh7E6jQm70p1aW05G2cap5zMOvO0se5JMecHeAdj5ZhWEHbJ4hiKpfi1nnnEdTauDXxPgXae/mqjow9w==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.45.0.tgz", - "integrity": "sha512-N/euLsBd1rekWcuduakTo/dJw6U6sBP3eUq+RXM9RNfPuWTvG2w/WObDkIvJ2KChy6oxZmOSC08Ak2OJA0UiAA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.45.0.tgz", - "integrity": "sha512-2l9sA7d7QdikL0xQwNMO3xURBUNEWyHVHfAsHsUdq+E/pgLTUcCE+gih5PCdmyHmfTDeXUWVhqL0WZzg0nua3g==", - "cpu": [ - "s390x" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.45.0.tgz", - "integrity": "sha512-XZdD3fEEQcwG2KrJDdEQu7NrHonPxxaV0/w2HpvINBdcqebz1aL+0vM2WFJq4DeiAVT6F5SUQas65HY5JDqoPw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.45.0.tgz", - "integrity": "sha512-7ayfgvtmmWgKWBkCGg5+xTQ0r5V1owVm67zTrsEY1008L5ro7mCyGYORomARt/OquB9KY7LpxVBZes+oSniAAQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.45.0.tgz", - "integrity": "sha512-B+IJgcBnE2bm93jEW5kHisqvPITs4ddLOROAcOc/diBgrEiQJJ6Qcjby75rFSmH5eMGrqJryUgJDhrfj942apQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.45.0.tgz", - "integrity": "sha512-+CXwwG66g0/FpWOnP/v1HnrGVSOygK/osUbu3wPRy8ECXjoYKjRAyfxYpDQOfghC5qPJYLPH0oN4MCOjwgdMug==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.45.0.tgz", - "integrity": "sha512-SRf1cytG7wqcHVLrBc9VtPK4pU5wxiB/lNIkNmW2ApKXIg+RpqwHfsaEK+e7eH4A1BpI6BX/aBWXxZCIrJg3uA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@sinonjs/commons": { - "version": "1.8.6", - "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "peer": true, - "dependencies": { - "type-detect": "4.0.8" - } - }, - "node_modules/@sinonjs/fake-timers": { - "version": "8.1.0", - "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "peer": true, - "dependencies": { - "@sinonjs/commons": "^1.7.0" - } - }, - "node_modules/@testing-library/dom": { - "version": "10.1.0", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^5.0.1", - "aria-query": "5.3.0", - "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.5.0", - "pretty-format": "^27.0.2" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/@testing-library/jest-dom": { - "version": "5.17.0", + "node_modules/@testing-library/jest-dom": { + "version": "5.17.0", "dev": true, "license": "MIT", "dependencies": { @@ -2322,2363 +1712,1017 @@ "redent": "^3.0.0" }, "engines": { - "node": ">=8", - "npm": ">=6", - "yarn": ">=1" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/chalk": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/react": { - "version": "14.3.1", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-14.3.1.tgz", - "integrity": "sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.12.5", - "@testing-library/dom": "^9.0.0", - "@types/react-dom": "^18.0.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/@testing-library/react/node_modules/@testing-library/dom": { - "version": "9.3.4", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-9.3.4.tgz", - "integrity": "sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^5.0.1", - "aria-query": "5.1.3", - "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.5.0", - "pretty-format": "^27.0.2" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@testing-library/react/node_modules/aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "deep-equal": "^2.0.5" - } - }, - "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" - }, - "peerDependencies": { - "@testing-library/dom": ">=7.21.4" - } - }, - "node_modules/@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@tsconfig/node10": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", - "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", - "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, - "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, - "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, - "license": "MIT" - }, - "node_modules/@types/aria-query": { - "version": "5.0.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/babel__core": { - "version": "7.20.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.6.8", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.4.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.20.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.20.7" - } - }, - "node_modules/@types/estree": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", - "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/graceful-fs": { - "version": "4.1.9", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.6", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true - }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.3", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@types/istanbul-lib-coverage": "*" - } - }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.4", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@types/istanbul-lib-report": "*" - } - }, - "node_modules/@types/jest": { - "version": "27.5.2", - "dev": true, - "license": "MIT", - "dependencies": { - "jest-matcher-utils": "^27.0.0", - "pretty-format": "^27.0.0" - } - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/@types/minimist": { - "version": "1.2.5", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/node": { - "version": "24.0.14", - "resolved": "https://registry.npmjs.org/@types/node/-/node-24.0.14.tgz", - "integrity": "sha512-4zXMWD91vBLGRtHK3YbIoFMia+1nqEz72coM42C5ETjnNCa/heoj7NT1G67iAfOqMmcfhuCZ4uNpyz8EjlAejw==", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "undici-types": "~7.8.0" - } - }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/prettier": { - "version": "2.7.3", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true - }, - "node_modules/@types/prop-types": { - "version": "15.7.12", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/react": { - "version": "18.3.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/prop-types": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-dom": { - "version": "18.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/semver": { - "version": "7.5.8", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/@types/stack-utils": { - "version": "2.0.3", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true - }, - "node_modules/@types/testing-library__jest-dom": { - "version": "5.14.9", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/jest": "*" - } - }, - "node_modules/@types/yargs": { - "version": "16.0.9", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@types/yargs-parser": { - "version": "21.0.3", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true - }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.62.0", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.62.0", - "@typescript-eslint/type-utils": "5.62.0", - "@typescript-eslint/utils": "5.62.0", - "debug": "^4.3.4", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "5.62.0", - "dev": true, - "license": "BSD-2-Clause", - "peer": true, - "dependencies": { - "@typescript-eslint/scope-manager": "5.62.0", - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/typescript-estree": "5.62.0", - "debug": "^4.3.4" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/project-service": { - "version": "8.37.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.37.0.tgz", - "integrity": "sha512-BIUXYsbkl5A1aJDdYJCBAo8rCEbAvdquQ8AnLb6z5Lp1u3x5PNgSSx9A/zqYc++Xnr/0DVpls8iQ2cJs/izTXA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/tsconfig-utils": "^8.37.0", - "@typescript-eslint/types": "^8.37.0", - "debug": "^4.3.4" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "typescript": ">=4.8.4 <5.9.0" - } - }, - "node_modules/@typescript-eslint/project-service/node_modules/@typescript-eslint/types": { - "version": "8.37.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.37.0.tgz", - "integrity": "sha512-ax0nv7PUF9NOVPs+lmQ7yIE7IQmAf8LGcXbMvHX5Gm+YJUYNAl340XkGnrimxZ0elXyoQJuN5sbg6C4evKA4SQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "5.62.0", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/visitor-keys": "5.62.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/tsconfig-utils": { - "version": "8.37.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.37.0.tgz", - "integrity": "sha512-1/YHvAVTimMM9mmlPvTec9NP4bobA1RkDbMydxG8omqwJJLEW/Iy2C4adsAESIXU3WGLXFHSZUU+C9EoFWl4Zg==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "typescript": ">=4.8.4 <5.9.0" - } - }, - "node_modules/@typescript-eslint/type-utils": { - "version": "5.62.0", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "5.62.0", - "@typescript-eslint/utils": "5.62.0", - "debug": "^4.3.4", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/types": { - "version": "5.62.0", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.62.0", - "dev": true, - "license": "BSD-2-Clause", - "peer": true, - "dependencies": { - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/visitor-keys": "5.62.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/utils": { - "version": "5.62.0", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.62.0", - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/typescript-estree": "5.62.0", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.62.0", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@typescript-eslint/types": "5.62.0", - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "dev": true, - "license": "ISC" - }, - "node_modules/@vitejs/plugin-react": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.6.0.tgz", - "integrity": "sha512-5Kgff+m8e2PB+9j51eGHEpn5kUzRKH2Ry0qGoe8ItJg7pqnkPrYPkDQZGgGmTa0EGarHrkjLvOdU3b1fzI8otQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.27.4", - "@babel/plugin-transform-react-jsx-self": "^7.27.1", - "@babel/plugin-transform-react-jsx-source": "^7.27.1", - "@rolldown/pluginutils": "1.0.0-beta.19", - "@types/babel__core": "^7.20.5", - "react-refresh": "^0.17.0" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0" - } - }, - "node_modules/@vitejs/plugin-react/node_modules/react-refresh": { - "version": "0.17.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", - "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@vitest/coverage-v8": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-1.6.1.tgz", - "integrity": "sha512-6YeRZwuO4oTGKxD3bijok756oktHSIm3eczVVzNe3scqzuhLwltIF3S9ZL/vwOVIpURmU6SnZhziXXAfw8/Qlw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@ampproject/remapping": "^2.2.1", - "@bcoe/v8-coverage": "^0.2.3", - "debug": "^4.3.4", - "istanbul-lib-coverage": "^3.2.2", - "istanbul-lib-report": "^3.0.1", - "istanbul-lib-source-maps": "^5.0.4", - "istanbul-reports": "^3.1.6", - "magic-string": "^0.30.5", - "magicast": "^0.3.3", - "picocolors": "^1.0.0", - "std-env": "^3.5.0", - "strip-literal": "^2.0.0", - "test-exclude": "^6.0.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - }, - "peerDependencies": { - "vitest": "1.6.1" - } - }, - "node_modules/@vitest/coverage-v8/node_modules/istanbul-lib-source-maps": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-5.0.6.tgz", - "integrity": "sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.23", - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@vitest/coverage-v8/node_modules/magic-string": { - "version": "0.30.17", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", - "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.5.0" - } - }, - "node_modules/@vitest/expect": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-1.6.1.tgz", - "integrity": "sha512-jXL+9+ZNIJKruofqXuuTClf44eSpcHlgj3CiuNihUF3Ioujtmc0zIa3UJOW5RjDK1YLBJZnWBlPuqhYycLioog==", - "dev": true, - "license": "MIT", - "dependencies": { - "@vitest/spy": "1.6.1", - "@vitest/utils": "1.6.1", - "chai": "^4.3.10" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/@vitest/runner": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-1.6.1.tgz", - "integrity": "sha512-3nSnYXkVkf3mXFfE7vVyPmi3Sazhb/2cfZGGs0JRzFsPFvAMBEcrweV1V1GsrstdXeKCTXlJbvnQwGWgEIHmOA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@vitest/utils": "1.6.1", - "p-limit": "^5.0.0", - "pathe": "^1.1.1" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/@vitest/runner/node_modules/p-limit": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-5.0.0.tgz", - "integrity": "sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "yocto-queue": "^1.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@vitest/runner/node_modules/yocto-queue": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.1.tgz", - "integrity": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@vitest/snapshot": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-1.6.1.tgz", - "integrity": "sha512-WvidQuWAzU2p95u8GAKlRMqMyN1yOJkGHnx3M1PL9Raf7AQ1kwLKg04ADlCa3+OXUZE7BceOhVZiuWAbzCKcUQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "magic-string": "^0.30.5", - "pathe": "^1.1.1", - "pretty-format": "^29.7.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/@vitest/snapshot/node_modules/@jest/schemas": { - "version": "29.6.3", - "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" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@vitest/snapshot/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, - "license": "MIT" - }, - "node_modules/@vitest/snapshot/node_modules/ansi-styles": { - "version": "5.2.0", - "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" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@vitest/snapshot/node_modules/magic-string": { - "version": "0.30.17", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", - "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.5.0" - } - }, - "node_modules/@vitest/snapshot/node_modules/pretty-format": { - "version": "29.7.0", - "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", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@vitest/snapshot/node_modules/react-is": { - "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, - "license": "MIT" - }, - "node_modules/@vitest/spy": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-1.6.1.tgz", - "integrity": "sha512-MGcMmpGkZebsMZhbQKkAf9CX5zGvjkBTqf8Zx3ApYWXr3wG+QvEu2eXWfnIIWYSJExIp4V9FCKDEeygzkYrXMw==", - "dev": true, - "license": "MIT", - "dependencies": { - "tinyspy": "^2.2.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/@vitest/utils": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-1.6.1.tgz", - "integrity": "sha512-jOrrUvXM4Av9ZWiG1EajNto0u96kWAhJ1LmPmJhXXQx/32MecEKd10pOLYgS2BQx1TgkGhloPU1ArDW2vvaY6g==", - "dev": true, - "license": "MIT", - "dependencies": { - "diff-sequences": "^29.6.3", - "estree-walker": "^3.0.3", - "loupe": "^2.3.7", - "pretty-format": "^29.7.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } - }, - "node_modules/@vitest/utils/node_modules/@jest/schemas": { - "version": "29.6.3", - "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" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@vitest/utils/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, - "license": "MIT" - }, - "node_modules/@vitest/utils/node_modules/ansi-styles": { - "version": "5.2.0", - "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" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@vitest/utils/node_modules/diff-sequences": { - "version": "29.6.3", - "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" - } - }, - "node_modules/@vitest/utils/node_modules/estree-walker": { - "version": "3.0.3", - "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" - } - }, - "node_modules/@vitest/utils/node_modules/pretty-format": { - "version": "29.7.0", - "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", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@vitest/utils/node_modules/react-is": { - "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, - "license": "MIT" - }, - "node_modules/abab": { - "version": "2.0.6", - "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "peer": true - }, - "node_modules/acorn": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", - "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-globals": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" - } - }, - "node_modules/acorn-globals/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-globals/node_modules/acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "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==", - "dev": true, - "license": "MIT", - "dependencies": { - "acorn": "^8.11.0" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/agent-base": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", - "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 14" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "0.21.3", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "optional": true, - "peer": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "dev": true, - "license": "ISC", - "optional": true, - "peer": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "dev": true, - "license": "Python-2.0" - }, - "node_modules/aria-query": { - "version": "5.3.0", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "dequal": "^2.0.3" - } - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "is-array-buffer": "^3.0.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-includes": { - "version": "3.1.8", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0", - "get-intrinsic": "^1.2.4", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/array.prototype.findlastindex": { - "version": "1.2.5", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.3", - "dev": true, - "license": "MIT", - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.2.1", - "get-intrinsic": "^1.2.3", - "is-array-buffer": "^3.0.4", - "is-shared-array-buffer": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/arrify": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/assertion-error": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", - "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", - "dev": true, - "license": "MIT", - "engines": { - "node": "*" + "node": ">=8", + "npm": ">=6", + "yarn": ">=1" } }, - "node_modules/ast-types-flow": { - "version": "0.0.8", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/astral-regex": { - "version": "2.0.0", + "node_modules/@testing-library/jest-dom/node_modules/chalk": { + "version": "3.0.0", "dev": true, "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { "node": ">=8" } }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", + "node_modules/@testing-library/react": { + "version": "14.3.1", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-14.3.1.tgz", + "integrity": "sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==", "dev": true, "license": "MIT", "dependencies": { - "possible-typed-array-names": "^1.0.0" + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^9.0.0", + "@types/react-dom": "^18.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=14" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/axe-core": { - "version": "4.7.0", + "node_modules/@testing-library/react/node_modules/@testing-library/dom": { + "version": "9.3.4", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-9.3.4.tgz", + "integrity": "sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==", "dev": true, - "license": "MPL-2.0", - "peer": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.1.3", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, "engines": { - "node": ">=4" + "node": ">=14" } }, - "node_modules/axobject-query": { - "version": "3.2.1", + "node_modules/@testing-library/react/node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", "dev": true, "license": "Apache-2.0", - "peer": true, "dependencies": { - "dequal": "^2.0.3" + "deep-equal": "^2.0.5" } }, - "node_modules/babel-jest": { - "version": "27.5.1", + "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", - "optional": true, - "peer": true, - "dependencies": { - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=12", + "npm": ">=6" }, "peerDependencies": { - "@babel/core": "^7.8.0" + "@testing-library/dom": ">=7.21.4" } }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", + "node_modules/@tsconfig/node10": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", + "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "peer": 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, + "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, + "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, + "license": "MIT" + }, + "node_modules/@types/aria-query": { + "version": "5.0.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - }, - "engines": { - "node": ">=8" + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" } }, - "node_modules/babel-plugin-jest-hoist": { - "version": "27.5.1", + "node_modules/@types/babel__generator": { + "version": "7.6.8", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.0.0", - "@types/babel__traverse": "^7.0.6" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "@babel/types": "^7.0.0" } }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", + "node_modules/@types/babel__template": { + "version": "7.4.4", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" } }, - "node_modules/babel-preset-jest": { - "version": "27.5.1", + "node_modules/@types/babel__traverse": { + "version": "7.20.6", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "babel-plugin-jest-hoist": "^27.5.1", - "babel-preset-current-node-syntax": "^1.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "@babel/types": "^7.20.7" } }, - "node_modules/balanced-match": { - "version": "1.0.2", + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", "dev": true, "license": "MIT" }, - "node_modules/brace-expansion": { - "version": "1.1.11", + "node_modules/@types/jest": { + "version": "27.5.2", "dev": true, "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "jest-matcher-utils": "^27.0.0", + "pretty-format": "^27.0.0" } }, - "node_modules/braces": { - "version": "3.0.3", + "node_modules/@types/json-schema": { + "version": "7.0.15", "dev": true, "license": "MIT", - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" - } + "peer": true }, - "node_modules/browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "node_modules/@types/json5": { + "version": "0.0.29", "dev": true, - "license": "BSD-2-Clause", - "optional": true, + "license": "MIT", "peer": true }, - "node_modules/browserslist": { - "version": "4.25.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.1.tgz", - "integrity": "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==", + "node_modules/@types/minimist": { + "version": "1.2.5", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "caniuse-lite": "^1.0.30001726", - "electron-to-chromium": "^1.5.173", - "node-releases": "^2.0.19", - "update-browserslist-db": "^1.1.3" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } + "license": "MIT" }, - "node_modules/bser": { - "version": "2.1.1", + "node_modules/@types/node": { + "version": "24.0.14", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.0.14.tgz", + "integrity": "sha512-4zXMWD91vBLGRtHK3YbIoFMia+1nqEz72coM42C5ETjnNCa/heoj7NT1G67iAfOqMmcfhuCZ4uNpyz8EjlAejw==", "dev": true, - "license": "Apache-2.0", - "optional": true, + "license": "MIT", "peer": true, "dependencies": { - "node-int64": "^0.4.0" + "undici-types": "~7.8.0" } }, - "node_modules/buffer-from": { - "version": "1.1.2", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true - }, - "node_modules/cac": { - "version": "6.7.14", - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } + "license": "MIT" }, - "node_modules/call-bind": { - "version": "1.0.7", + "node_modules/@types/prop-types": { + "version": "15.7.12", "dev": true, - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "license": "MIT" }, - "node_modules/call-bind-apply-helpers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", - "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "node_modules/@types/react": { + "version": "18.3.3", "dev": true, "license": "MIT", "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" + "@types/prop-types": "*", + "csstype": "^3.0.2" } }, - "node_modules/call-bound": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", - "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "node_modules/@types/react-dom": { + "version": "18.3.0", "dev": true, "license": "MIT", "dependencies": { - "call-bind-apply-helpers": "^1.0.2", - "get-intrinsic": "^1.3.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "@types/react": "*" } }, - "node_modules/callsites": { - "version": "3.1.0", + "node_modules/@types/semver": { + "version": "7.5.8", "dev": true, "license": "MIT", - "engines": { - "node": ">=6" - } + "peer": true }, - "node_modules/camelcase": { - "version": "6.3.0", + "node_modules/@types/testing-library__jest-dom": { + "version": "5.14.9", "dev": true, "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@types/jest": "*" } }, - "node_modules/camelcase-keys": { - "version": "7.0.2", + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", "dev": true, "license": "MIT", + "peer": true, "dependencies": { - "camelcase": "^6.3.0", - "map-obj": "^4.1.0", - "quick-lru": "^5.1.1", - "type-fest": "^1.2.1" + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" }, "engines": { - "node": ">=12" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/camelcase-keys/node_modules/type-fest": { - "version": "1.4.0", + "node_modules/@typescript-eslint/parser": { + "version": "5.62.0", "dev": true, - "license": "(MIT OR CC0-1.0)", + "license": "BSD-2-Clause", + "peer": true, + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001727", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001727.tgz", - "integrity": "sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true } - ], - "license": "CC-BY-4.0" + } }, - "node_modules/chai": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/chai/-/chai-4.5.0.tgz", - "integrity": "sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==", + "node_modules/@typescript-eslint/project-service": { + "version": "8.37.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.37.0.tgz", + "integrity": "sha512-BIUXYsbkl5A1aJDdYJCBAo8rCEbAvdquQ8AnLb6z5Lp1u3x5PNgSSx9A/zqYc++Xnr/0DVpls8iQ2cJs/izTXA==", "dev": true, "license": "MIT", "dependencies": { - "assertion-error": "^1.1.0", - "check-error": "^1.0.3", - "deep-eql": "^4.1.3", - "get-func-name": "^2.0.2", - "loupe": "^2.3.6", - "pathval": "^1.1.1", - "type-detect": "^4.1.0" + "@typescript-eslint/tsconfig-utils": "^8.37.0", + "@typescript-eslint/types": "^8.37.0", + "debug": "^4.3.4" }, "engines": { - "node": ">=4" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <5.9.0" } }, - "node_modules/chai/node_modules/type-detect": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.1.0.tgz", - "integrity": "sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==", + "node_modules/@typescript-eslint/project-service/node_modules/@typescript-eslint/types": { + "version": "8.37.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.37.0.tgz", + "integrity": "sha512-ax0nv7PUF9NOVPs+lmQ7yIE7IQmAf8LGcXbMvHX5Gm+YJUYNAl340XkGnrimxZ0elXyoQJuN5sbg6C4evKA4SQ==", "dev": true, "license": "MIT", "engines": { - "node": ">=4" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/chalk": { - "version": "4.1.2", + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", "dev": true, "license": "MIT", + "peer": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" }, "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/char-regex": { - "version": "1.0.2", + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.37.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.37.0.tgz", + "integrity": "sha512-1/YHvAVTimMM9mmlPvTec9NP4bobA1RkDbMydxG8omqwJJLEW/Iy2C4adsAESIXU3WGLXFHSZUU+C9EoFWl4Zg==", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "engines": { - "node": ">=10" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <5.9.0" } }, - "node_modules/check-error": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz", - "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==", + "node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", "dev": true, "license": "MIT", + "peer": true, "dependencies": { - "get-func-name": "^2.0.2" + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" }, "engines": { - "node": "*" - } - }, - "node_modules/ci-info": { - "version": "3.9.0", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true } - ], - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=8" } }, - "node_modules/cjs-module-lexer": { - "version": "1.3.1", + "node_modules/@typescript-eslint/types": { + "version": "5.62.0", "dev": true, "license": "MIT", - "optional": true, - "peer": true - }, - "node_modules/cliui": { - "version": "7.0.4", - "dev": true, - "license": "ISC", - "optional": true, "peer": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/co": { - "version": "4.6.0", + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", "dev": true, - "license": "MIT", - "optional": true, + "license": "BSD-2-Clause", "peer": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/collect-v8-coverage": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true - }, - "node_modules/color-convert": { - "version": "2.0.1", + "node_modules/@typescript-eslint/utils": { + "version": "5.62.0", "dev": true, "license": "MIT", + "peer": true, "dependencies": { - "color-name": "~1.1.4" + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" }, "engines": { - "node": ">=7.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/colord": { - "version": "2.9.3", - "dev": true, - "license": "MIT" - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", "dev": true, "license": "MIT", + "peer": true, "dependencies": { - "delayed-stream": "~1.0.0" + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" }, "engines": { - "node": ">= 0.8" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/confbox": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz", - "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==", - "dev": true, - "license": "MIT" - }, - "node_modules/confusing-browser-globals": { - "version": "1.0.11", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/core-js": { - "version": "3.37.1", - "hasInstallScript": true, - "license": "MIT", + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/core-js" + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "license": "MIT" - }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", "dev": true, - "license": "MIT" + "license": "ISC" }, - "node_modules/cross-spawn": { - "version": "7.0.3", + "node_modules/@vitejs/plugin-react": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.6.0.tgz", + "integrity": "sha512-5Kgff+m8e2PB+9j51eGHEpn5kUzRKH2Ry0qGoe8ItJg7pqnkPrYPkDQZGgGmTa0EGarHrkjLvOdU3b1fzI8otQ==", "dev": true, "license": "MIT", "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "@babel/core": "^7.27.4", + "@babel/plugin-transform-react-jsx-self": "^7.27.1", + "@babel/plugin-transform-react-jsx-source": "^7.27.1", + "@rolldown/pluginutils": "1.0.0-beta.19", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.17.0" }, "engines": { - "node": ">= 8" + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0" } }, - "node_modules/css-functions-list": { - "version": "3.2.2", + "node_modules/@vitejs/plugin-react/node_modules/react-refresh": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", + "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", "dev": true, "license": "MIT", "engines": { - "node": ">=12 || >=16" + "node": ">=0.10.0" } }, - "node_modules/css-tree": { - "version": "2.3.1", + "node_modules/@vitest/coverage-v8": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-1.6.1.tgz", + "integrity": "sha512-6YeRZwuO4oTGKxD3bijok756oktHSIm3eczVVzNe3scqzuhLwltIF3S9ZL/vwOVIpURmU6SnZhziXXAfw8/Qlw==", "dev": true, "license": "MIT", "dependencies": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" + "@ampproject/remapping": "^2.2.1", + "@bcoe/v8-coverage": "^0.2.3", + "debug": "^4.3.4", + "istanbul-lib-coverage": "^3.2.2", + "istanbul-lib-report": "^3.0.1", + "istanbul-lib-source-maps": "^5.0.4", + "istanbul-reports": "^3.1.6", + "magic-string": "^0.30.5", + "magicast": "^0.3.3", + "picocolors": "^1.0.0", + "std-env": "^3.5.0", + "strip-literal": "^2.0.0", + "test-exclude": "^6.0.0" }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "vitest": "1.6.1" } }, - "node_modules/css.escape": { - "version": "1.5.1", - "dev": true, - "license": "MIT" - }, - "node_modules/cssesc": { - "version": "3.0.0", + "node_modules/@vitest/coverage-v8/node_modules/istanbul-lib-source-maps": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-5.0.6.tgz", + "integrity": "sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==", "dev": true, - "license": "MIT", - "bin": { - "cssesc": "bin/cssesc" + "license": "BSD-3-Clause", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.23", + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=10" } }, - "node_modules/cssom": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "node_modules/@vitest/coverage-v8/node_modules/magic-string": { + "version": "0.30.17", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", + "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", "dev": true, "license": "MIT", - "optional": true, - "peer": true + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } }, - "node_modules/cssstyle": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.6.0.tgz", - "integrity": "sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==", + "node_modules/@vitest/expect": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-1.6.1.tgz", + "integrity": "sha512-jXL+9+ZNIJKruofqXuuTClf44eSpcHlgj3CiuNihUF3Ioujtmc0zIa3UJOW5RjDK1YLBJZnWBlPuqhYycLioog==", "dev": true, "license": "MIT", "dependencies": { - "@asamuzakjp/css-color": "^3.2.0", - "rrweb-cssom": "^0.8.0" + "@vitest/spy": "1.6.1", + "@vitest/utils": "1.6.1", + "chai": "^4.3.10" }, - "engines": { - "node": ">=18" - } - }, - "node_modules/cssstyle/node_modules/rrweb-cssom": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz", - "integrity": "sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==", - "dev": true, - "license": "MIT" - }, - "node_modules/csstype": { - "version": "3.1.3", - "license": "MIT" - }, - "node_modules/damerau-levenshtein": { - "version": "1.0.8", - "dev": true, - "license": "BSD-2-Clause", - "peer": true + "funding": { + "url": "https://opencollective.com/vitest" + } }, - "node_modules/data-urls": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz", - "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==", + "node_modules/@vitest/runner": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-1.6.1.tgz", + "integrity": "sha512-3nSnYXkVkf3mXFfE7vVyPmi3Sazhb/2cfZGGs0JRzFsPFvAMBEcrweV1V1GsrstdXeKCTXlJbvnQwGWgEIHmOA==", "dev": true, "license": "MIT", "dependencies": { - "whatwg-mimetype": "^4.0.0", - "whatwg-url": "^14.0.0" + "@vitest/utils": "1.6.1", + "p-limit": "^5.0.0", + "pathe": "^1.1.1" }, - "engines": { - "node": ">=18" + "funding": { + "url": "https://opencollective.com/vitest" } }, - "node_modules/data-view-buffer": { - "version": "1.0.1", + "node_modules/@vitest/runner/node_modules/p-limit": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-5.0.0.tgz", + "integrity": "sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" + "yocto-queue": "^1.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=18" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/data-view-byte-length": { - "version": "1.0.1", + "node_modules/@vitest/runner/node_modules/yocto-queue": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.1.tgz", + "integrity": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==", "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, "engines": { - "node": ">= 0.4" + "node": ">=12.20" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/data-view-byte-offset": { - "version": "1.0.0", + "node_modules/@vitest/snapshot": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-1.6.1.tgz", + "integrity": "sha512-WvidQuWAzU2p95u8GAKlRMqMyN1yOJkGHnx3M1PL9Raf7AQ1kwLKg04ADlCa3+OXUZE7BceOhVZiuWAbzCKcUQ==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" + "magic-string": "^0.30.5", + "pathe": "^1.1.1", + "pretty-format": "^29.7.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/vitest" } }, - "node_modules/debug": { - "version": "4.3.5", + "node_modules/@vitest/snapshot/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, "license": "MIT", "dependencies": { - "ms": "2.1.2" + "@sinclair/typebox": "^0.27.8" }, "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/decamelize": { - "version": "5.0.1", + "node_modules/@vitest/snapshot/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, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "license": "MIT" }, - "node_modules/decamelize-keys": { - "version": "1.1.1", + "node_modules/@vitest/snapshot/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "license": "MIT", - "dependencies": { - "decamelize": "^1.1.0", - "map-obj": "^1.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/decamelize-keys/node_modules/decamelize": { - "version": "1.2.0", + "node_modules/@vitest/snapshot/node_modules/magic-string": { + "version": "0.30.17", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", + "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", "dev": true, "license": "MIT", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" } }, - "node_modules/decamelize-keys/node_modules/map-obj": { - "version": "1.0.1", + "node_modules/@vitest/snapshot/node_modules/pretty-format": { + "version": "29.7.0", + "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", + "react-is": "^18.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/decimal.js": { - "version": "10.4.3", + "node_modules/@vitest/snapshot/node_modules/react-is": { + "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, "license": "MIT" }, - "node_modules/dedent": { - "version": "0.7.0", + "node_modules/@vitest/spy": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-1.6.1.tgz", + "integrity": "sha512-MGcMmpGkZebsMZhbQKkAf9CX5zGvjkBTqf8Zx3ApYWXr3wG+QvEu2eXWfnIIWYSJExIp4V9FCKDEeygzkYrXMw==", "dev": true, "license": "MIT", - "optional": true, - "peer": true + "dependencies": { + "tinyspy": "^2.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } }, - "node_modules/deep-eql": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.4.tgz", - "integrity": "sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==", + "node_modules/@vitest/utils": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-1.6.1.tgz", + "integrity": "sha512-jOrrUvXM4Av9ZWiG1EajNto0u96kWAhJ1LmPmJhXXQx/32MecEKd10pOLYgS2BQx1TgkGhloPU1ArDW2vvaY6g==", "dev": true, "license": "MIT", "dependencies": { - "type-detect": "^4.0.0" + "diff-sequences": "^29.6.3", + "estree-walker": "^3.0.3", + "loupe": "^2.3.7", + "pretty-format": "^29.7.0" }, - "engines": { - "node": ">=6" + "funding": { + "url": "https://opencollective.com/vitest" } }, - "node_modules/deep-equal": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.3.tgz", - "integrity": "sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==", + "node_modules/@vitest/utils/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, "license": "MIT", "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.5", - "es-get-iterator": "^1.1.3", - "get-intrinsic": "^1.2.2", - "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.2", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "isarray": "^2.0.5", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.1", - "side-channel": "^1.0.4", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.13" + "@sinclair/typebox": "^0.27.8" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/deep-equal/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "node_modules/@vitest/utils/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, "license": "MIT" }, - "node_modules/deep-is": { - "version": "0.1.4", + "node_modules/@vitest/utils/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "node_modules/deepmerge": { - "version": "4.3.1", + "node_modules/@vitest/utils/node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/define-data-property": { - "version": "1.1.4", + "node_modules/@vitest/utils/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", "dev": true, "license": "MIT", "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "@types/estree": "^1.0.0" } }, - "node_modules/define-properties": { - "version": "1.2.1", + "node_modules/@vitest/utils/node_modules/pretty-format": { + "version": "29.7.0", + "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": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "node_modules/@vitest/utils/node_modules/react-is": { + "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, + "license": "MIT" + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "dev": true, "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, "engines": { "node": ">=0.4.0" } }, - "node_modules/dequal": { - "version": "2.0.3", + "node_modules/acorn-jsx": { + "version": "5.3.2", "dev": true, "license": "MIT", - "engines": { - "node": ">=6" + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/detect-newline": { - "version": "3.1.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==", "dev": true, "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/devexpress-diagram": { - "version": "2.2.18", - "resolved": "https://registry.npmjs.org/devexpress-diagram/-/devexpress-diagram-2.2.18.tgz", - "integrity": "sha512-zHWkrBbGDBbMBgK4fFsNlaMzcngf1DrTvbs0IHNHfBSsIDrNy8t3BXRgrLXWgFr8UCsYpkYx2aHGZ6kvsN/kWg==", - "license": "SEE LICENSE IN README.md", - "dependencies": { - "@devexpress/utils": "^1.4.3", - "es6-object-assign": "^1.1.0" - } - }, - "node_modules/devexpress-gantt": { - "version": "4.1.62", - "resolved": "https://registry.npmjs.org/devexpress-gantt/-/devexpress-gantt-4.1.62.tgz", - "integrity": "sha512-8ULKoAyStlFnATNkkYFZWB7eQHrxJPallq04+HHiu9fn1TIRz0SgYlQdZuXoOmEhcRhaNwk5d+38sJ6OMC0HnQ==", - "license": "SEE LICENSE IN README.md", - "dependencies": { - "@devexpress/utils": "^1.4.3", - "tslib": "2.3.1" - } - }, - "node_modules/devextreme": { - "version": "25.1.3", - "resolved": "https://registry.npmjs.org/devextreme/-/devextreme-25.1.3.tgz", - "integrity": "sha512-72J3vL+QbQWEfUTzNuPTEsyN/+Nnb4jI/BwymcUHcBUKKp4vf3m72KviteHxutobblcfzvZmxLQCEvn01T/EqA==", - "license": "SEE LICENSE IN README.md", "dependencies": { - "@babel/runtime": "^7.12.1", - "@preact/signals-core": "^1.8.0", - "devexpress-diagram": "2.2.18", - "devexpress-gantt": "4.1.62", - "devextreme-quill": "1.7.3", - "inferno": "^8.2.3", - "inferno-create-element": "^8.2.3", - "inferno-hydrate": "^8.2.3", - "jszip": "^3.10.1", - "rrule": "^2.7.1" + "acorn": "^8.11.0" }, - "bin": { - "devextreme-bundler": "bin/bundler.js", - "devextreme-bundler-init": "bin/bundler-init.js" + "engines": { + "node": ">=0.4.0" } }, - "node_modules/devextreme-quill": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/devextreme-quill/-/devextreme-quill-1.7.3.tgz", - "integrity": "sha512-YPE9e8UOOByf/QUBAGZRmCDHFzQDnM+hyPet6vFNFGm2UsJAIz4xkL6gDhfan/a6otInQUB5wLsbPZqldZrliQ==", - "license": "BSD-3-Clause", - "dependencies": { - "core-js": "^3.34.0", - "eventemitter3": "^4.0.7", - "lodash.clonedeep": "^4.5.0", - "lodash.merge": "^4.6.2", - "parchment": "^2.0.1", - "quill-delta": "^5.0.0" + "node_modules/agent-base": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", + "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14" } }, - "node_modules/devextreme-react": { - "version": "25.1.3", - "resolved": "https://registry.npmjs.org/devextreme-react/-/devextreme-react-25.1.3.tgz", - "integrity": "sha512-reTLUl9tC1KFb5bjY60G6Cyy8svXHTrTYeiYtx/kiaZq+NjyQ0ez67dALWyzKAVbzTWqoUWO/E/z9iwzNjcsUA==", + "node_modules/ajv": { + "version": "6.12.6", + "dev": true, "license": "MIT", "dependencies": { - "prop-types": "^15.8.1" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, - "peerDependencies": { - "devextreme": "25.1.3", - "react": "^16.2.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "react-dom": "^16.2.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" - } - }, - "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/diff-sequences": { - "version": "27.5.1", + "node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, "license": "MIT", "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=8" } }, - "node_modules/dir-glob": { - "version": "3.0.1", + "node_modules/ansi-styles": { + "version": "4.3.0", "dev": true, "license": "MIT", "dependencies": { - "path-type": "^4.0.0" + "color-convert": "^2.0.1" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/doctrine": { - "version": "3.0.0", + "node_modules/argparse": { + "version": "2.0.1", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/aria-query": { + "version": "5.3.0", "dev": true, "license": "Apache-2.0", "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" + "dequal": "^2.0.3" } }, - "node_modules/dom-accessibility-api": { - "version": "0.5.16", + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/domexception": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", - "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", - "deprecated": "Use your platform's native DOMException instead", + "node_modules/array-includes": { + "version": "3.1.8", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "webidl-conversions": "^5.0.0" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "is-string": "^1.0.7" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/domexception/node_modules/webidl-conversions": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "node_modules/array-union": { + "version": "2.1.0", "dev": true, - "license": "BSD-2-Clause", - "optional": true, - "peer": true, + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/dunder-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", - "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "node_modules/array.prototype.findlastindex": { + "version": "1.2.5", "dev": true, "license": "MIT", + "peer": true, "dependencies": { - "call-bind-apply-helpers": "^1.0.1", + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", "es-errors": "^1.3.0", - "gopd": "^1.2.0" + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/electron-to-chromium": { - "version": "1.5.183", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.183.tgz", - "integrity": "sha512-vCrDBYjQCAEefWGjlK3EpoSKfKbT10pR4XXPdn65q7snuNOZnthoVpBfZPykmDapOKfoD+MMIPG8ZjKyyc9oHA==", - "dev": true, - "license": "ISC" - }, - "node_modules/emittery": { - "version": "0.8.1", + "node_modules/array.prototype.flat": { + "version": "1.3.2", "dev": true, "license": "MIT", - "optional": true, - "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/error-ex": { + "node_modules/array.prototype.flatmap": { "version": "1.3.2", "dev": true, "license": "MIT", "dependencies": { - "is-arrayish": "^0.2.1" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es-abstract": { - "version": "1.23.3", + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", "dev": true, "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.1", - "arraybuffer.prototype.slice": "^1.0.3", - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "data-view-buffer": "^1.0.1", - "data-view-byte-length": "^1.0.1", - "data-view-byte-offset": "^1.0.0", - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-set-tostringtag": "^2.0.3", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.4", - "get-symbol-description": "^1.0.2", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "hasown": "^2.0.2", - "internal-slot": "^1.0.7", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", "is-array-buffer": "^3.0.4", - "is-callable": "^1.2.7", - "is-data-view": "^1.0.1", - "is-negative-zero": "^2.0.3", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.3", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.13", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.5", - "regexp.prototype.flags": "^1.5.2", - "safe-array-concat": "^1.1.2", - "safe-regex-test": "^1.0.3", - "string.prototype.trim": "^1.2.9", - "string.prototype.trimend": "^1.0.8", - "string.prototype.trimstart": "^1.0.8", - "typed-array-buffer": "^1.0.2", - "typed-array-byte-length": "^1.0.1", - "typed-array-byte-offset": "^1.0.2", - "typed-array-length": "^1.0.6", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.15" + "is-shared-array-buffer": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -4687,122 +2731,155 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es-define-property": { + "node_modules/arrify": { "version": "1.0.1", - "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" + "node": ">=0.10.0" } }, - "node_modules/es-errors": { - "version": "1.3.0", + "node_modules/assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.4" + "node": "*" } }, - "node_modules/es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "node_modules/ast-types-flow": { + "version": "0.0.8", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es-get-iterator/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "node_modules/axe-core": { + "version": "4.7.0", + "dev": true, + "license": "MPL-2.0", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "3.2.1", + "dev": true, + "license": "Apache-2.0", + "peer": true, + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", "dev": true, "license": "MIT" }, - "node_modules/es-iterator-helpers": { - "version": "1.0.19", + "node_modules/brace-expansion": { + "version": "1.1.11", "dev": true, "license": "MIT", - "peer": true, "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.3", - "es-errors": "^1.3.0", - "es-set-tostringtag": "^2.0.3", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.7", - "iterator.prototype": "^1.1.2", - "safe-array-concat": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "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==", + "node_modules/braces": { + "version": "3.0.3", "dev": true, "license": "MIT", "dependencies": { - "es-errors": "^1.3.0" + "fill-range": "^7.1.1" }, "engines": { - "node": ">= 0.4" + "node": ">=8" } }, - "node_modules/es-set-tostringtag": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", - "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "node_modules/browserslist": { + "version": "4.25.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.1.tgz", + "integrity": "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "license": "MIT", "dependencies": { - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.6", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.2" + "caniuse-lite": "^1.0.30001726", + "electron-to-chromium": "^1.5.173", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" + }, + "bin": { + "browserslist": "cli.js" }, "engines": { - "node": ">= 0.4" + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.2", + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", "dev": true, "license": "MIT", - "dependencies": { - "hasown": "^2.0.0" + "engines": { + "node": ">=8" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", + "node_modules/call-bind": { + "version": "1.0.7", "dev": true, "license": "MIT", "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" }, "engines": { "node": ">= 0.4" @@ -4811,66 +2888,47 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es6-object-assign": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz", - "integrity": "sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==", - "license": "MIT" + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "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" + }, + "engines": { + "node": ">= 0.4" + } }, - "node_modules/esbuild": { - "version": "0.25.6", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.6.tgz", - "integrity": "sha512-GVuzuUwtdsghE3ocJ9Bs8PNoF13HNQ5TXbEi2AhvVb8xU1Iwt9Fos9FEamfoee+u/TOsn7GUWc04lz46n2bbTg==", + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", "dev": true, - "hasInstallScript": true, "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" }, "engines": { - "node": ">=18" + "node": ">= 0.4" }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.25.6", - "@esbuild/android-arm": "0.25.6", - "@esbuild/android-arm64": "0.25.6", - "@esbuild/android-x64": "0.25.6", - "@esbuild/darwin-arm64": "0.25.6", - "@esbuild/darwin-x64": "0.25.6", - "@esbuild/freebsd-arm64": "0.25.6", - "@esbuild/freebsd-x64": "0.25.6", - "@esbuild/linux-arm": "0.25.6", - "@esbuild/linux-arm64": "0.25.6", - "@esbuild/linux-ia32": "0.25.6", - "@esbuild/linux-loong64": "0.25.6", - "@esbuild/linux-mips64el": "0.25.6", - "@esbuild/linux-ppc64": "0.25.6", - "@esbuild/linux-riscv64": "0.25.6", - "@esbuild/linux-s390x": "0.25.6", - "@esbuild/linux-x64": "0.25.6", - "@esbuild/netbsd-arm64": "0.25.6", - "@esbuild/netbsd-x64": "0.25.6", - "@esbuild/openbsd-arm64": "0.25.6", - "@esbuild/openbsd-x64": "0.25.6", - "@esbuild/openharmony-arm64": "0.25.6", - "@esbuild/sunos-x64": "0.25.6", - "@esbuild/win32-arm64": "0.25.6", - "@esbuild/win32-ia32": "0.25.6", - "@esbuild/win32-x64": "0.25.6" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/escalade": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "node_modules/callsites": { + "version": "3.1.0", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", + "node_modules/camelcase": { + "version": "6.3.0", "dev": true, "license": "MIT", "engines": { @@ -4880,795 +2938,907 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "node_modules/camelcase-keys": { + "version": "7.0.2", "dev": true, - "license": "BSD-2-Clause", - "optional": true, - "peer": true, + "license": "MIT", "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" + "camelcase": "^6.3.0", + "map-obj": "^4.1.0", + "quick-lru": "^5.1.1", + "type-fest": "^1.2.1" }, "engines": { - "node": ">=6.0" + "node": ">=12" }, - "optionalDependencies": { - "source-map": "~0.6.1" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/escodegen/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==", + "node_modules/camelcase-keys/node_modules/type-fest": { + "version": "1.4.0", "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "peer": true, + "license": "(MIT OR CC0-1.0)", "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint": { - "version": "8.57.0", + "node_modules/caniuse-lite": { + "version": "1.0.30001727", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001727.tgz", + "integrity": "sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chai": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.5.0.tgz", + "integrity": "sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==", "dev": true, "license": "MIT", "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" + "assertion-error": "^1.1.0", + "check-error": "^1.0.3", + "deep-eql": "^4.1.3", + "get-func-name": "^2.0.2", + "loupe": "^2.3.6", + "pathval": "^1.1.1", + "type-detect": "^4.1.0" }, - "bin": { - "eslint": "bin/eslint.js" + "engines": { + "node": ">=4" + } + }, + "node_modules/chai/node_modules/type-detect": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.1.0.tgz", + "integrity": "sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=10" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/eslint-config-airbnb-base": { - "version": "15.0.0", + "node_modules/check-error": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz", + "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { - "confusing-browser-globals": "^1.0.10", - "object.assign": "^4.1.2", - "object.entries": "^1.1.5", - "semver": "^6.3.0" + "get-func-name": "^2.0.2" }, "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "peerDependencies": { - "eslint": "^7.32.0 || ^8.2.0", - "eslint-plugin-import": "^2.25.2" + "node": "*" } }, - "node_modules/eslint-config-airbnb-base/node_modules/semver": { - "version": "6.3.1", + "node_modules/color-convert": { + "version": "2.0.1", "dev": true, - "license": "ISC", - "peer": true, - "bin": { - "semver": "bin/semver.js" + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/eslint-config-airbnb-typescript": { - "version": "17.1.0", + "node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/colord": { + "version": "2.9.3", + "dev": true, + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { - "eslint-config-airbnb-base": "^15.0.0" + "delayed-stream": "~1.0.0" }, - "peerDependencies": { - "@typescript-eslint/eslint-plugin": "^5.13.0 || ^6.0.0", - "@typescript-eslint/parser": "^5.0.0 || ^6.0.0", - "eslint": "^7.32.0 || ^8.2.0", - "eslint-plugin-import": "^2.25.3" + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/confbox": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz", + "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/core-js": { + "version": "3.37.1", + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/eslint-config-devextreme": { - "version": "1.1.4", + "node_modules/core-util-is": { + "version": "1.0.3", + "license": "MIT" + }, + "node_modules/create-require": { + "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, - "license": "MIT", - "peerDependencies": { - "@typescript-eslint/eslint-plugin": "^5.53.0", - "eslint": "^8.35.0", - "eslint-config-airbnb-base": "^15.0.0", - "eslint-config-airbnb-typescript": "^17.0.0", - "eslint-plugin-import": "^2.27.5", - "eslint-plugin-jest": "^27.2.1", - "eslint-plugin-jest-formatting": "^3.1.0", - "eslint-plugin-jsx-a11y": "^6.7.1", - "eslint-plugin-qunit": "^7.3.4", - "eslint-plugin-rulesdir": "^0.2.2", - "eslint-plugin-spellcheck": "^0.0.20", - "stylelint": "^15.6.1", - "stylelint-config-standard": "^33.0.0" - } + "license": "MIT" }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.9", + "node_modules/cross-spawn": { + "version": "7.0.3", "dev": true, "license": "MIT", - "peer": true, "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", + "node_modules/css-functions-list": { + "version": "3.2.2", "dev": true, "license": "MIT", - "peer": true, - "dependencies": { - "ms": "^2.1.1" + "engines": { + "node": ">=12 || >=16" } }, - "node_modules/eslint-module-utils": { - "version": "2.8.1", + "node_modules/css-tree": { + "version": "2.3.1", "dev": true, "license": "MIT", - "peer": true, "dependencies": { - "debug": "^3.2.7" + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" }, "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", + "node_modules/css.escape": { + "version": "1.5.1", "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "ms": "^2.1.1" - } + "license": "MIT" }, - "node_modules/eslint-plugin-import": { - "version": "2.29.1", + "node_modules/cssesc": { + "version": "3.0.0", "dev": true, "license": "MIT", - "peer": true, - "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlastindex": "^1.2.3", - "array.prototype.flat": "^1.3.2", - "array.prototype.flatmap": "^1.3.2", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.8.0", - "hasown": "^2.0.0", - "is-core-module": "^2.13.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.7", - "object.groupby": "^1.0.1", - "object.values": "^1.1.7", - "semver": "^6.3.1", - "tsconfig-paths": "^3.15.0" + "bin": { + "cssesc": "bin/cssesc" }, "engines": { "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", + "node_modules/cssstyle": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.6.0.tgz", + "integrity": "sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { - "ms": "^2.1.1" + "@asamuzakjp/css-color": "^3.2.0", + "rrweb-cssom": "^0.8.0" + }, + "engines": { + "node": ">=18" } }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", + "node_modules/cssstyle/node_modules/rrweb-cssom": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz", + "integrity": "sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==", "dev": true, - "license": "Apache-2.0", - "peer": true, + "license": "MIT" + }, + "node_modules/csstype": { + "version": "3.1.3", + "license": "MIT" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "dev": true, + "license": "BSD-2-Clause", + "peer": true + }, + "node_modules/data-urls": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz", + "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==", + "dev": true, + "license": "MIT", "dependencies": { - "esutils": "^2.0.2" + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^14.0.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/semver": { - "version": "6.3.1", - "dev": true, - "license": "ISC", - "peer": true, - "bin": { - "semver": "bin/semver.js" + "node": ">=18" } }, - "node_modules/eslint-plugin-jest": { - "version": "27.9.0", + "node_modules/data-view-buffer": { + "version": "1.0.1", "dev": true, "license": "MIT", - "peer": true, "dependencies": { - "@typescript-eslint/utils": "^5.10.0" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@typescript-eslint/eslint-plugin": "^5.0.0 || ^6.0.0 || ^7.0.0", - "eslint": "^7.0.0 || ^8.0.0", - "jest": "*" + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "@typescript-eslint/eslint-plugin": { - "optional": true - }, - "jest": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-jest-formatting": { - "version": "3.1.0", + "node_modules/data-view-byte-length": { + "version": "1.0.1", "dev": true, "license": "MIT", - "peer": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 0.4" }, - "peerDependencies": { - "eslint": ">=0.8.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.8.0", + "node_modules/data-view-byte-offset": { + "version": "1.0.0", "dev": true, "license": "MIT", - "peer": true, "dependencies": { - "@babel/runtime": "^7.23.2", - "aria-query": "^5.3.0", - "array-includes": "^3.1.7", - "array.prototype.flatmap": "^1.3.2", - "ast-types-flow": "^0.0.8", - "axe-core": "=4.7.0", - "axobject-query": "^3.2.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "es-iterator-helpers": "^1.0.15", - "hasown": "^2.0.0", - "jsx-ast-utils": "^3.3.5", - "language-tags": "^1.0.9", - "minimatch": "^3.1.2", - "object.entries": "^1.1.7", - "object.fromentries": "^2.0.7" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { - "node": ">=4.0" + "node": ">= 0.4" }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-no-only-tests": { - "version": "2.6.0", + "node_modules/debug": { + "version": "4.3.5", "dev": true, "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, "engines": { - "node": ">=4.0.0" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/eslint-plugin-qunit": { - "version": "7.3.4", + "node_modules/decamelize": { + "version": "5.0.1", "dev": true, "license": "MIT", - "peer": true, - "dependencies": { - "eslint-utils": "^3.0.0", - "requireindex": "^1.2.0" - }, "engines": { - "node": "12.x || 14.x || >=16.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-react": { - "version": "7.31.10", + "node_modules/decamelize-keys": { + "version": "1.1.1", "dev": true, "license": "MIT", "dependencies": { - "array-includes": "^3.1.5", - "array.prototype.flatmap": "^1.3.0", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.5", - "object.fromentries": "^2.0.5", - "object.hasown": "^1.1.1", - "object.values": "^1.1.5", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.3", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.7" + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" }, "engines": { - "node": ">=4" + "node": ">=0.10.0" }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-react-hooks": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz", - "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==", + "node_modules/decamelize-keys/node_modules/decamelize": { + "version": "1.2.0", "dev": true, "license": "MIT", "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + "node": ">=0.10.0" } }, - "node_modules/eslint-plugin-react-perf": { - "version": "3.3.2", + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", "dev": true, "license": "MIT", "engines": { - "node": ">=6.9.1" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0" + "node": ">=0.10.0" } }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", + "node_modules/decimal.js": { + "version": "10.4.3", "dev": true, - "license": "Apache-2.0", + "license": "MIT" + }, + "node_modules/deep-eql": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.4.tgz", + "integrity": "sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==", + "dev": true, + "license": "MIT", "dependencies": { - "esutils": "^2.0.2" + "type-detect": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.5", + "node_modules/deep-equal": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.3.tgz", + "integrity": "sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==", "dev": true, "license": "MIT", "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.5", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.2", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.13" }, - "bin": { - "resolve": "bin/resolve" + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.1", + "node_modules/deep-equal/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } + "license": "MIT" }, - "node_modules/eslint-plugin-rulesdir": { - "version": "0.2.2", + "node_modules/deep-is": { + "version": "0.1.4", "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=4.0.0" - } + "license": "MIT" }, - "node_modules/eslint-plugin-spellcheck": { - "version": "0.0.20", + "node_modules/define-data-property": { + "version": "1.1.4", "dev": true, "license": "MIT", - "peer": true, "dependencies": { - "globals": "^13.0.0", - "hunspell-spellchecker": "^1.0.2", - "lodash": "^4.17.15" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" }, - "peerDependencies": { - "eslint": ">=0.8.0" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-spellcheck/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "node_modules/define-properties": { + "version": "1.2.1", "dev": true, "license": "MIT", - "peer": true, "dependencies": { - "type-fest": "^0.20.2" + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-scope": { - "version": "5.1.1", + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "dev": true, - "license": "BSD-2-Clause", - "peer": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, + "license": "MIT", "engines": { - "node": ">=8.0.0" + "node": ">=0.4.0" } }, - "node_modules/eslint-scope/node_modules/estraverse": { - "version": "4.3.0", + "node_modules/dequal": { + "version": "2.0.3", "dev": true, - "license": "BSD-2-Clause", - "peer": true, + "license": "MIT", "engines": { - "node": ">=4.0" + "node": ">=6" } }, - "node_modules/eslint-utils": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "peer": true, + "node_modules/devexpress-diagram": { + "version": "2.2.18", + "resolved": "https://registry.npmjs.org/devexpress-diagram/-/devexpress-diagram-2.2.18.tgz", + "integrity": "sha512-zHWkrBbGDBbMBgK4fFsNlaMzcngf1DrTvbs0IHNHfBSsIDrNy8t3BXRgrLXWgFr8UCsYpkYx2aHGZ6kvsN/kWg==", + "license": "SEE LICENSE IN README.md", "dependencies": { - "eslint-visitor-keys": "^2.0.0" - }, - "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" + "@devexpress/utils": "^1.4.3", + "es6-object-assign": "^1.1.0" + } + }, + "node_modules/devexpress-gantt": { + "version": "4.1.62", + "resolved": "https://registry.npmjs.org/devexpress-gantt/-/devexpress-gantt-4.1.62.tgz", + "integrity": "sha512-8ULKoAyStlFnATNkkYFZWB7eQHrxJPallq04+HHiu9fn1TIRz0SgYlQdZuXoOmEhcRhaNwk5d+38sJ6OMC0HnQ==", + "license": "SEE LICENSE IN README.md", + "dependencies": { + "@devexpress/utils": "^1.4.3", + "tslib": "2.3.1" + } + }, + "node_modules/devextreme": { + "version": "25.1.3", + "resolved": "https://registry.npmjs.org/devextreme/-/devextreme-25.1.3.tgz", + "integrity": "sha512-72J3vL+QbQWEfUTzNuPTEsyN/+Nnb4jI/BwymcUHcBUKKp4vf3m72KviteHxutobblcfzvZmxLQCEvn01T/EqA==", + "license": "SEE LICENSE IN README.md", + "dependencies": { + "@babel/runtime": "^7.12.1", + "@preact/signals-core": "^1.8.0", + "devexpress-diagram": "2.2.18", + "devexpress-gantt": "4.1.62", + "devextreme-quill": "1.7.3", + "inferno": "^8.2.3", + "inferno-create-element": "^8.2.3", + "inferno-hydrate": "^8.2.3", + "jszip": "^3.10.1", + "rrule": "^2.7.1" }, + "bin": { + "devextreme-bundler": "bin/bundler.js", + "devextreme-bundler-init": "bin/bundler-init.js" + } + }, + "node_modules/devextreme-aspnet-data-nojquery": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/devextreme-aspnet-data-nojquery/-/devextreme-aspnet-data-nojquery-5.1.0.tgz", + "integrity": "sha512-YJ7HxOLJTzz6bmpp1uOjXdhUL71THR6IidVONjJRF1R1loTyNVesa6s86gU+mUeNN044UnJKQhtCADc0+TmARQ==", + "license": "MIT", "peerDependencies": { - "eslint": ">=5" + "devextreme": ">=18.1.0" } }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "dev": true, - "license": "Apache-2.0", - "peer": true, - "engines": { - "node": ">=10" + "node_modules/devextreme-quill": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/devextreme-quill/-/devextreme-quill-1.7.3.tgz", + "integrity": "sha512-YPE9e8UOOByf/QUBAGZRmCDHFzQDnM+hyPet6vFNFGm2UsJAIz4xkL6gDhfan/a6otInQUB5wLsbPZqldZrliQ==", + "license": "BSD-3-Clause", + "dependencies": { + "core-js": "^3.34.0", + "eventemitter3": "^4.0.7", + "lodash.clonedeep": "^4.5.0", + "lodash.merge": "^4.6.2", + "parchment": "^2.0.1", + "quill-delta": "^5.0.0" + } + }, + "node_modules/devextreme-react": { + "version": "25.1.3", + "resolved": "https://registry.npmjs.org/devextreme-react/-/devextreme-react-25.1.3.tgz", + "integrity": "sha512-reTLUl9tC1KFb5bjY60G6Cyy8svXHTrTYeiYtx/kiaZq+NjyQ0ez67dALWyzKAVbzTWqoUWO/E/z9iwzNjcsUA==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.8.1" + }, + "peerDependencies": { + "devextreme": "25.1.3", + "react": "^16.2.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.2.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true, - "license": "Apache-2.0", + "license": "BSD-3-Clause", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=0.3.1" } }, - "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.2.2", + "node_modules/diff-sequences": { + "version": "27.5.1", "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, + "license": "MIT", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/eslint/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "node_modules/dir-glob": { + "version": "3.0.1", "dev": true, "license": "MIT", "dependencies": { - "type-fest": "^0.20.2" + "path-type": "^4.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/espree": { - "version": "9.6.1", + "node_modules/doctrine": { + "version": "3.0.0", "dev": true, - "license": "BSD-2-Clause", + "license": "Apache-2.0", "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" + "esutils": "^2.0.2" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=6.0.0" } }, - "node_modules/esprima": { - "version": "4.0.1", + "node_modules/dom-accessibility-api": { + "version": "0.5.16", "dev": true, - "license": "BSD-2-Clause", - "optional": true, - "peer": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } + "license": "MIT" }, - "node_modules/esquery": { - "version": "1.5.0", + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "dependencies": { - "estraverse": "^5.1.0" + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" }, "engines": { - "node": ">=0.10" + "node": ">= 0.4" } }, - "node_modules/esrecurse": { - "version": "4.3.0", + "node_modules/electron-to-chromium": { + "version": "1.5.183", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.183.tgz", + "integrity": "sha512-vCrDBYjQCAEefWGjlK3EpoSKfKbT10pR4XXPdn65q7snuNOZnthoVpBfZPykmDapOKfoD+MMIPG8ZjKyyc9oHA==", "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } + "license": "ISC" }, - "node_modules/estraverse": { - "version": "5.3.0", + "node_modules/emoji-regex": { + "version": "9.2.2", "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } + "license": "MIT", + "peer": true }, - "node_modules/esutils": { - "version": "2.0.3", + "node_modules/error-ex": { + "version": "1.3.2", "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.10.0" + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" } }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "license": "MIT" - }, - "node_modules/execa": { - "version": "5.1.1", + "node_modules/es-abstract": { + "version": "1.23.3", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/exit": { - "version": "0.1.2", + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "dev": true, - "optional": true, - "peer": true, + "license": "MIT", "engines": { - "node": ">= 0.8.0" + "node": ">= 0.4" } }, - "node_modules/expect": { - "version": "27.5.1", + "node_modules/es-errors": { + "version": "1.3.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "@jest/types": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", + "node_modules/es-get-iterator/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "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==", - "license": "Apache-2.0" - }, - "node_modules/fast-glob": { - "version": "3.3.2", + "node_modules/es-iterator-helpers": { + "version": "1.0.19", "dev": true, "license": "MIT", + "peer": true, "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.1.2" }, "engines": { - "node": ">=8.6.0" + "node": ">= 0.4" } }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", + "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": "ISC", + "license": "MIT", "dependencies": { - "is-glob": "^4.0.1" + "es-errors": "^1.3.0" }, "engines": { - "node": ">= 6" + "node": ">= 0.4" } }, - "node_modules/fast-json-stable-stringify": { + "node_modules/es-set-tostringtag": { "version": "2.1.0", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "dev": true, - "license": "MIT" - }, - "node_modules/fastest-levenshtein": { - "version": "1.0.16", + "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", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, "engines": { - "node": ">= 4.9.1" + "node": ">= 0.4" } }, - "node_modules/fastq": { - "version": "1.17.1", + "node_modules/es-shim-unscopables": { + "version": "1.0.2", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "reusify": "^1.0.4" + "hasown": "^2.0.0" } }, - "node_modules/fb-watchman": { - "version": "2.0.2", + "node_modules/es-to-primitive": { + "version": "1.2.1", "dev": true, - "license": "Apache-2.0", - "optional": true, - "peer": true, + "license": "MIT", "dependencies": { - "bser": "2.1.1" + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/file-entry-cache": { - "version": "6.0.1", + "node_modules/es6-object-assign": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz", + "integrity": "sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==", + "license": "MIT" + }, + "node_modules/esbuild": { + "version": "0.25.6", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.6.tgz", + "integrity": "sha512-GVuzuUwtdsghE3ocJ9Bs8PNoF13HNQ5TXbEi2AhvVb8xU1Iwt9Fos9FEamfoee+u/TOsn7GUWc04lz46n2bbTg==", "dev": true, + "hasInstallScript": true, "license": "MIT", - "dependencies": { - "flat-cache": "^3.0.4" + "bin": { + "esbuild": "bin/esbuild" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.6", + "@esbuild/android-arm": "0.25.6", + "@esbuild/android-arm64": "0.25.6", + "@esbuild/android-x64": "0.25.6", + "@esbuild/darwin-arm64": "0.25.6", + "@esbuild/darwin-x64": "0.25.6", + "@esbuild/freebsd-arm64": "0.25.6", + "@esbuild/freebsd-x64": "0.25.6", + "@esbuild/linux-arm": "0.25.6", + "@esbuild/linux-arm64": "0.25.6", + "@esbuild/linux-ia32": "0.25.6", + "@esbuild/linux-loong64": "0.25.6", + "@esbuild/linux-mips64el": "0.25.6", + "@esbuild/linux-ppc64": "0.25.6", + "@esbuild/linux-riscv64": "0.25.6", + "@esbuild/linux-s390x": "0.25.6", + "@esbuild/linux-x64": "0.25.6", + "@esbuild/netbsd-arm64": "0.25.6", + "@esbuild/netbsd-x64": "0.25.6", + "@esbuild/openbsd-arm64": "0.25.6", + "@esbuild/openbsd-x64": "0.25.6", + "@esbuild/openharmony-arm64": "0.25.6", + "@esbuild/sunos-x64": "0.25.6", + "@esbuild/win32-arm64": "0.25.6", + "@esbuild/win32-ia32": "0.25.6", + "@esbuild/win32-x64": "0.25.6" } }, - "node_modules/fill-range": { - "version": "7.1.1", + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/find-up": { - "version": "5.0.0", + "node_modules/escape-string-regexp": { + "version": "4.0.0", "dev": true, "license": "MIT", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, "engines": { "node": ">=10" }, @@ -5676,738 +3846,773 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/flat-cache": { - "version": "3.2.0", + "node_modules/eslint": { + "version": "8.57.0", "dev": true, "license": "MIT", "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-airbnb-base": { + "version": "15.0.0", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.5", + "semver": "^6.3.0" }, "engines": { "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "eslint": "^7.32.0 || ^8.2.0", + "eslint-plugin-import": "^2.25.2" } }, - "node_modules/flatted": { - "version": "3.3.1", + "node_modules/eslint-config-airbnb-base/node_modules/semver": { + "version": "6.3.1", "dev": true, - "license": "ISC" + "license": "ISC", + "peer": true, + "bin": { + "semver": "bin/semver.js" + } }, - "node_modules/for-each": { - "version": "0.3.3", + "node_modules/eslint-config-airbnb-typescript": { + "version": "17.1.0", "dev": true, "license": "MIT", + "peer": true, "dependencies": { - "is-callable": "^1.1.3" + "eslint-config-airbnb-base": "^15.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^5.13.0 || ^6.0.0", + "@typescript-eslint/parser": "^5.0.0 || ^6.0.0", + "eslint": "^7.32.0 || ^8.2.0", + "eslint-plugin-import": "^2.25.3" } }, - "node_modules/form-data": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.3.tgz", - "integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==", + "node_modules/eslint-config-devextreme": { + "version": "1.1.4", "dev": true, "license": "MIT", + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^5.53.0", + "eslint": "^8.35.0", + "eslint-config-airbnb-base": "^15.0.0", + "eslint-config-airbnb-typescript": "^17.0.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-jest": "^27.2.1", + "eslint-plugin-jest-formatting": "^3.1.0", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-qunit": "^7.3.4", + "eslint-plugin-rulesdir": "^0.2.2", + "eslint-plugin-spellcheck": "^0.0.20", + "stylelint": "^15.6.1", + "stylelint-config-standard": "^33.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "dev": true, + "license": "MIT", + "peer": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "es-set-tostringtag": "^2.1.0", - "hasown": "^2.0.2", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" } }, - "node_modules/fs.realpath": { - "version": "1.0.0", + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", "dev": true, - "license": "ISC" + "license": "MIT", + "peer": true, + "dependencies": { + "ms": "^2.1.1" + } }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "node_modules/eslint-module-utils": { + "version": "2.8.1", "dev": true, - "hasInstallScript": true, "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], + "peer": true, + "dependencies": { + "debug": "^3.2.7" + }, "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } } }, - "node_modules/function-bind": { - "version": "1.1.2", + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", "dev": true, "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peer": true, + "dependencies": { + "ms": "^2.1.1" } }, - "node_modules/function.prototype.name": { - "version": "1.1.6", + "node_modules/eslint-plugin-import": { + "version": "2.29.1", "dev": true, "license": "MIT", + "peer": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" }, "engines": { - "node": ">= 0.4" + "node": ">=4" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, - "node_modules/functions-have-names": { - "version": "1.2.3", + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", "dev": true, "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peer": true, + "dependencies": { + "ms": "^2.1.1" } }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", "dev": true, - "license": "MIT", + "license": "Apache-2.0", + "peer": true, + "dependencies": { + "esutils": "^2.0.2" + }, "engines": { - "node": ">=6.9.0" + "node": ">=0.10.0" } }, - "node_modules/get-caller-file": { - "version": "2.0.5", + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", "dev": true, "license": "ISC", - "optional": true, "peer": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/get-func-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", - "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", + "node_modules/eslint-plugin-jest": { + "version": "27.9.0", "dev": true, "license": "MIT", + "peer": true, + "dependencies": { + "@typescript-eslint/utils": "^5.10.0" + }, "engines": { - "node": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^5.0.0 || ^6.0.0 || ^7.0.0", + "eslint": "^7.0.0 || ^8.0.0", + "jest": "*" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } } }, - "node_modules/get-intrinsic": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", - "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "node_modules/eslint-plugin-jest-formatting": { + "version": "3.1.0", "dev": true, "license": "MIT", - "dependencies": { - "call-bind-apply-helpers": "^1.0.2", - "es-define-property": "^1.0.1", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.1.1", - "function-bind": "^1.1.2", - "get-proto": "^1.0.1", - "gopd": "^1.2.0", - "has-symbols": "^1.1.0", - "hasown": "^2.0.2", - "math-intrinsics": "^1.1.0" - }, + "peer": true, "engines": { - "node": ">= 0.4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "eslint": ">=0.8.0" } }, - "node_modules/get-package-type": { - "version": "0.1.0", + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.8.0", "dev": true, "license": "MIT", - "optional": true, "peer": true, + "dependencies": { + "@babel/runtime": "^7.23.2", + "aria-query": "^5.3.0", + "array-includes": "^3.1.7", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "=4.7.0", + "axobject-query": "^3.2.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "es-iterator-helpers": "^1.0.15", + "hasown": "^2.0.0", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.entries": "^1.1.7", + "object.fromentries": "^2.0.7" + }, "engines": { - "node": ">=8.0.0" + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "node_modules/get-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", - "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "node_modules/eslint-plugin-no-only-tests": { + "version": "2.6.0", "dev": true, "license": "MIT", - "dependencies": { - "dunder-proto": "^1.0.1", - "es-object-atoms": "^1.0.0" - }, "engines": { - "node": ">= 0.4" + "node": ">=4.0.0" } }, - "node_modules/get-stream": { - "version": "6.0.1", + "node_modules/eslint-plugin-qunit": { + "version": "7.3.4", "dev": true, "license": "MIT", - "optional": true, "peer": true, - "engines": { - "node": ">=10" + "dependencies": { + "eslint-utils": "^3.0.0", + "requireindex": "^1.2.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "12.x || 14.x || >=16.0.0" } }, - "node_modules/get-symbol-description": { - "version": "1.0.2", + "node_modules/eslint-plugin-react": { + "version": "7.31.10", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.5", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" + "array-includes": "^3.1.5", + "array.prototype.flatmap": "^1.3.0", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.5", + "object.fromentries": "^2.0.5", + "object.hasown": "^1.1.1", + "object.values": "^1.1.5", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.3", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.7" }, "engines": { - "node": ">= 0.4" + "node": ">=4" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "node_modules/glob": { - "version": "7.2.3", + "node_modules/eslint-plugin-react-hooks": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz", + "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==", "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, + "license": "MIT", "engines": { - "node": "*" + "node": ">=10" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" } }, - "node_modules/glob-parent": { - "version": "6.0.2", + "node_modules/eslint-plugin-react-perf": { + "version": "3.3.2", "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.3" - }, + "license": "MIT", "engines": { - "node": ">=10.13.0" + "node": ">=6.9.1" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/global-modules": { - "version": "2.0.0", + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", "dev": true, - "license": "MIT", + "license": "Apache-2.0", "dependencies": { - "global-prefix": "^3.0.0" + "esutils": "^2.0.2" }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/global-prefix": { - "version": "3.0.0", + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", "dev": true, "license": "MIT", "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" }, - "engines": { - "node": ">=6" + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", "dev": true, "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, "bin": { - "which": "bin/which" + "semver": "bin/semver.js" } }, - "node_modules/globals": { - "version": "16.3.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-16.3.0.tgz", - "integrity": "sha512-bqWEnJ1Nt3neqx2q5SFfGS8r/ahumIakg3HcwtNlrVlwXIeNumWn/c7Pn/wKzGhf6SaW6H6uWXLqC30STCMchQ==", + "node_modules/eslint-plugin-rulesdir": { + "version": "0.2.2", "dev": true, "license": "MIT", + "peer": true, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4.0.0" } }, - "node_modules/globalthis": { - "version": "1.0.4", + "node_modules/eslint-plugin-spellcheck": { + "version": "0.0.20", "dev": true, "license": "MIT", + "peer": true, "dependencies": { - "define-properties": "^1.2.1", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" + "globals": "^13.0.0", + "hunspell-spellchecker": "^1.0.2", + "lodash": "^4.17.15" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "eslint": ">=0.8.0" } }, - "node_modules/globby": { - "version": "11.1.0", + "node_modules/eslint-plugin-spellcheck/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" + "type-fest": "^0.20.2" }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globjoin": { - "version": "0.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/gopd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", - "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "node_modules/eslint-scope": { + "version": "5.1.1", "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" + "license": "BSD-2-Clause", + "peer": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "dev": true, - "license": "ISC" - }, - "node_modules/graphemer": { - "version": "1.4.0", - "dev": true, - "license": "MIT" - }, - "node_modules/hard-rejection": { - "version": "2.1.0", - "dev": true, - "license": "MIT", "engines": { - "node": ">=6" - } - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8.0.0" } }, - "node_modules/has-flag": { - "version": "4.0.0", + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", "dev": true, - "license": "MIT", + "license": "BSD-2-Clause", + "peer": true, "engines": { - "node": ">=8" + "node": ">=4.0" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", + "node_modules/eslint-utils": { + "version": "3.0.0", "dev": true, "license": "MIT", + "peer": true, "dependencies": { - "es-define-property": "^1.0.0" + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" } }, - "node_modules/has-proto": { - "version": "1.0.3", + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", "dev": true, - "license": "MIT", + "license": "Apache-2.0", + "peer": true, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10" } }, - "node_modules/has-symbols": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", - "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", "dev": true, - "license": "MIT", + "license": "Apache-2.0", "engines": { - "node": ">= 0.4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/eslint" } }, - "node_modules/has-tostringtag": { - "version": "1.0.2", + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.2", "dev": true, - "license": "MIT", + "license": "BSD-2-Clause", "dependencies": { - "has-symbols": "^1.0.3" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" }, "engines": { - "node": ">= 0.4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/eslint" } }, - "node_modules/hasown": { - "version": "2.0.2", + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "license": "MIT", "dependencies": { - "function-bind": "^1.1.2" + "type-fest": "^0.20.2" }, "engines": { - "node": ">= 0.4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/hosted-git-info": { - "version": "2.8.9", - "dev": true, - "license": "ISC" - }, - "node_modules/html-encoding-sniffer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", - "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", + "node_modules/espree": { + "version": "9.6.1", "dev": true, - "license": "MIT", + "license": "BSD-2-Clause", "dependencies": { - "whatwg-encoding": "^3.1.1" + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" }, "engines": { - "node": ">=18" - } - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/html-tags": { - "version": "3.3.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://opencollective.com/eslint" } }, - "node_modules/http-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", - "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "node_modules/esquery": { + "version": "1.5.0", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" + "estraverse": "^5.1.0" }, "engines": { - "node": ">= 14" + "node": ">=0.10" } }, - "node_modules/https-proxy-agent": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", - "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", + "node_modules/esrecurse": { + "version": "4.3.0", "dev": true, - "license": "MIT", + "license": "BSD-2-Clause", "dependencies": { - "agent-base": "^7.1.2", - "debug": "4" + "estraverse": "^5.2.0" }, "engines": { - "node": ">= 14" + "node": ">=4.0" } }, - "node_modules/human-signals": { - "version": "2.1.0", + "node_modules/estraverse": { + "version": "5.3.0", "dev": true, - "license": "Apache-2.0", - "optional": true, - "peer": true, + "license": "BSD-2-Clause", "engines": { - "node": ">=10.17.0" + "node": ">=4.0" } }, - "node_modules/hunspell-spellchecker": { - "version": "1.0.2", + "node_modules/esutils": { + "version": "2.0.3", "dev": true, - "license": "Apache 2", - "peer": true, - "bin": { - "hunspell-tojson": "bin/hunspell-tojson.js" + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/iconv-lite": { - "version": "0.6.3", + "node_modules/eventemitter3": { + "version": "4.0.7", + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "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==", + "license": "Apache-2.0" + }, + "node_modules/fast-glob": { + "version": "3.3.2", "dev": true, "license": "MIT", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, "engines": { - "node": ">=0.10.0" + "node": ">=8.6.0" } }, - "node_modules/ignore": { - "version": "5.3.1", + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", "dev": true, - "license": "MIT", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, "engines": { - "node": ">= 4" + "node": ">= 6" } }, - "node_modules/immediate": { - "version": "3.0.6", + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "dev": true, "license": "MIT" }, - "node_modules/import-fresh": { - "version": "3.3.0", + "node_modules/fast-levenshtein": { + "version": "2.0.6", "dev": true, - "license": "MIT", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "license": "MIT" }, - "node_modules/import-lazy": { - "version": "4.0.0", + "node_modules/fastest-levenshtein": { + "version": "1.0.16", "dev": true, "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 4.9.1" } }, - "node_modules/import-local": { - "version": "3.1.0", + "node_modules/fastq": { + "version": "1.17.1", "dev": true, - "license": "MIT", - "optional": true, - "peer": true, + "license": "ISC", "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "reusify": "^1.0.4" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", + "node_modules/file-entry-cache": { + "version": "6.0.1", "dev": true, "license": "MIT", + "dependencies": { + "flat-cache": "^3.0.4" + }, "engines": { - "node": ">=0.8.19" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/indent-string": { - "version": "4.0.0", + "node_modules/fill-range": { + "version": "7.1.1", "dev": true, "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, "engines": { "node": ">=8" } }, - "node_modules/inferno": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/inferno/-/inferno-8.2.3.tgz", - "integrity": "sha512-LMeRlCe+RlXw8kHCLyOWRk2PsZ3Fo4jkESyAR1g4FfPT48N78i11YhTVXW2ukCx5MFjv+qrfa73JzJWU9sg4CQ==", - "hasInstallScript": true, + "node_modules/find-up": { + "version": "5.0.0", + "dev": true, "license": "MIT", "dependencies": { - "csstype": "^3.1.2", - "inferno-vnode-flags": "8.2.3", - "opencollective-postinstall": "^2.0.3" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/inferno" - } - }, - "node_modules/inferno-create-element": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/inferno-create-element/-/inferno-create-element-8.2.3.tgz", - "integrity": "sha512-YEwX4OiFlgeTutvE16uCGxkaSVwZ1DklpAPX8okjVsGaLIWQrM8QIQFxn3mTLWSu70Uea+afQfKL5wE4hxn39Q==", - "license": "MIT", - "dependencies": { - "inferno": "8.2.3" - } - }, - "node_modules/inferno-hydrate": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/inferno-hydrate/-/inferno-hydrate-8.2.3.tgz", - "integrity": "sha512-AyCiswnjYg7D9veJdjiQg06Npp0/iXKhwOm2hjoY3cjadT3fIdz2XtDElLB7imU4icuJ3xOmXA8FgIfnSJfHrQ==", - "license": "MIT", - "dependencies": { - "inferno": "8.2.3" - } - }, - "node_modules/inferno-vnode-flags": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/inferno-vnode-flags/-/inferno-vnode-flags-8.2.3.tgz", - "integrity": "sha512-dfC0MIwFv9PCbZCUsuk9ISejFS3fKJODC0rZ/LjxxzE+OrCk+PMwPLsUnGU6O9/jbBnPACVz1BkACDf5LWgU5Q==", - "license": "MIT" - }, - "node_modules/inflight": { - "version": "1.0.6", - "dev": true, - "license": "ISC", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/inherits": { - "version": "2.0.4", - "license": "ISC" - }, - "node_modules/ini": { - "version": "1.3.8", - "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==", + "node_modules/flat-cache": { + "version": "3.2.0", "dev": true, "license": "MIT", "dependencies": { - "es-errors": "^1.3.0", - "hasown": "^2.0.2", - "side-channel": "^1.1.0" + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" }, "engines": { - "node": ">= 0.4" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/is-arguments": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", - "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", + "node_modules/flatted": { + "version": "3.3.1", + "dev": true, + "license": "ISC" + }, + "node_modules/for-each": { + "version": "0.3.3", "dev": true, "license": "MIT", "dependencies": { - "call-bound": "^1.0.2", - "has-tostringtag": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "is-callable": "^1.1.3" } }, - "node_modules/is-array-buffer": { - "version": "3.0.4", + "node_modules/form-data": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.3.tgz", + "integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 6" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", + "node_modules/fs.realpath": { + "version": "1.0.0", "dev": true, - "license": "MIT" + "license": "ISC" }, - "node_modules/is-async-function": { - "version": "2.0.0", + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, + "hasInstallScript": true, "license": "MIT", - "peer": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/is-bigint": { - "version": "1.0.4", + "node_modules/function-bind": { + "version": "1.1.2", "dev": true, "license": "MIT", - "dependencies": { - "has-bigints": "^1.0.1" - }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", + "node_modules/function.prototype.name": { + "version": "1.1.6", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" }, "engines": { "node": ">= 0.4" @@ -6416,48 +4621,49 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-callable": { - "version": "1.2.7", + "node_modules/functions-have-names": { + "version": "1.2.3", "dev": true, "license": "MIT", - "engines": { - "node": ">= 0.4" - }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-core-module": { - "version": "2.13.1", + "node_modules/gensync": { + "version": "1.0.0-beta.2", "dev": true, "license": "MIT", - "dependencies": { - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/is-data-view": { - "version": "1.0.1", + "node_modules/get-func-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", + "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", "dev": true, "license": "MIT", - "dependencies": { - "is-typed-array": "^1.1.13" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "*" } }, - "node_modules/is-date-object": { - "version": "1.0.5", + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "dev": true, "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -6466,106 +4672,121 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-extglob": { - "version": "2.1.1", + "node_modules/get-proto": { + "version": "1.0.1", + "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" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/is-finalizationregistry": { + "node_modules/get-symbol-description": { "version": "1.0.2", "dev": true, "license": "MIT", - "peer": true, "dependencies": { - "call-bind": "^1.0.2" + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", + "node_modules/glob": { + "version": "7.2.3", "dev": true, - "license": "MIT", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, "engines": { - "node": ">=8" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/is-generator-fn": { - "version": "2.1.0", + "node_modules/glob-parent": { + "version": "6.0.2", "dev": true, - "license": "MIT", - "optional": true, - "peer": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, "engines": { - "node": ">=6" + "node": ">=10.13.0" } }, - "node_modules/is-generator-function": { - "version": "1.0.10", + "node_modules/global-modules": { + "version": "2.0.0", "dev": true, "license": "MIT", - "peer": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "global-prefix": "^3.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" } }, - "node_modules/is-glob": { - "version": "4.0.3", + "node_modules/global-prefix": { + "version": "3.0.0", "dev": true, "license": "MIT", "dependencies": { - "is-extglob": "^2.1.1" + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/is-map": { - "version": "2.0.3", + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "which": "bin/which" } }, - "node_modules/is-negative-zero": { - "version": "2.0.3", + "node_modules/globals": { + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-16.3.0.tgz", + "integrity": "sha512-bqWEnJ1Nt3neqx2q5SFfGS8r/ahumIakg3HcwtNlrVlwXIeNumWn/c7Pn/wKzGhf6SaW6H6uWXLqC30STCMchQ==", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.4" + "node": ">=18" }, "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-number-object": { - "version": "1.0.7", + "node_modules/globalthis": { + "version": "1.0.4", "dev": true, "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "define-properties": "^1.2.1", + "gopd": "^1.0.1" }, "engines": { "node": ">= 0.4" @@ -6574,43 +4795,36 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-obj": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-plain-object": { - "version": "5.0.0", + "node_modules/globby": { + "version": "11.1.0", "dev": true, "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", + "node_modules/globjoin": { + "version": "0.1.4", "dev": true, "license": "MIT" }, - "node_modules/is-regex": { - "version": "1.1.4", + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, "engines": { "node": ">= 0.4" }, @@ -6618,79 +4832,55 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-set": { - "version": "2.0.3", + "node_modules/graceful-fs": { + "version": "4.2.11", "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "license": "ISC" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "dev": true, + "license": "MIT" }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.3", + "node_modules/hard-rejection": { + "version": "2.1.0", "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" } }, - "node_modules/is-stream": { - "version": "2.0.1", + "node_modules/has-bigints": { + "version": "1.0.2", "dev": true, "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=8" - }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-string": { - "version": "1.0.7", + "node_modules/has-flag": { + "version": "4.0.0", "dev": true, "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/is-symbol": { - "version": "1.0.4", + "node_modules/has-property-descriptors": { + "version": "1.0.2", "dev": true, "license": "MIT", "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" + "es-define-property": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-typed-array": { - "version": "1.1.13", + "node_modules/has-proto": { + "version": "1.0.3", "dev": true, "license": "MIT", - "dependencies": { - "which-typed-array": "^1.1.14" - }, "engines": { "node": ">= 0.4" }, @@ -6698,15 +4888,10 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true - }, - "node_modules/is-weakmap": { - "version": "2.0.2", + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "dev": true, "license": "MIT", "engines": { @@ -6716,1109 +4901,714 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-weakref": { + "node_modules/has-tostringtag": { "version": "1.0.2", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2" + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-weakset": { - "version": "2.0.3", + "node_modules/hasown": { + "version": "2.0.2", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4" + "function-bind": "^1.1.2" }, "engines": { "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/isarray": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/isexe": { - "version": "2.0.0", + "node_modules/hosted-git-info": { + "version": "2.8.9", "dev": true, "license": "ISC" }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.2", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", + "node_modules/html-encoding-sniffer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", + "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "peer": true, + "license": "MIT", "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "whatwg-encoding": "^3.1.1" }, "engines": { - "node": ">=8" + "node": ">=18" } }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.1", + "node_modules/html-escaper": { + "version": "2.0.2", "dev": true, - "license": "ISC", - "optional": true, - "peer": true, - "bin": { - "semver": "bin/semver.js" - } + "license": "MIT" }, - "node_modules/istanbul-lib-report": { - "version": "3.0.1", + "node_modules/html-tags": { + "version": "3.3.1", "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" - }, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/istanbul-lib-report/node_modules/make-dir": { - "version": "4.0.0", + "node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "dev": true, "license": "MIT", "dependencies": { - "semver": "^7.5.3" + "agent-base": "^7.1.0", + "debug": "^4.3.4" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 14" } }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", + "node_modules/https-proxy-agent": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "peer": true, + "license": "MIT", "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" + "agent-base": "^7.1.2", + "debug": "4" }, "engines": { - "node": ">=10" + "node": ">= 14" } }, - "node_modules/istanbul-lib-source-maps/node_modules/source-map": { - "version": "0.6.1", + "node_modules/hunspell-spellchecker": { + "version": "1.0.2", "dev": true, - "license": "BSD-3-Clause", - "optional": true, + "license": "Apache 2", "peer": true, - "engines": { - "node": ">=0.10.0" + "bin": { + "hunspell-tojson": "bin/hunspell-tojson.js" } }, - "node_modules/istanbul-reports": { - "version": "3.1.7", + "node_modules/iconv-lite": { + "version": "0.6.3", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/iterator.prototype": { - "version": "1.1.2", + "node_modules/ignore": { + "version": "5.3.1", "dev": true, "license": "MIT", - "peer": true, - "dependencies": { - "define-properties": "^1.2.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.4", - "set-function-name": "^2.0.1" + "engines": { + "node": ">= 4" } }, - "node_modules/jest": { - "version": "27.5.1", + "node_modules/immediate": { + "version": "3.0.6", + "license": "MIT" + }, + "node_modules/import-fresh": { + "version": "3.3.0", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "@jest/core": "^27.5.1", - "import-local": "^3.0.2", - "jest-cli": "^27.5.1" - }, - "bin": { - "jest": "bin/jest.js" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + "node": ">=6" }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-changed-files": { - "version": "27.5.1", + "node_modules/import-lazy": { + "version": "4.0.0", "dev": true, "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@jest/types": "^27.5.1", - "execa": "^5.0.0", - "throat": "^6.0.1" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=8" } }, - "node_modules/jest-circus": { - "version": "27.5.1", + "node_modules/imurmurhash": { + "version": "0.1.4", "dev": true, "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "expect": "^27.5.1", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3", - "throat": "^6.0.1" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=0.8.19" } }, - "node_modules/jest-cli": { - "version": "27.5.1", + "node_modules/indent-string": { + "version": "4.0.0", "dev": true, "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@jest/core": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "prompts": "^2.0.1", - "yargs": "^16.2.0" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "engines": { + "node": ">=8" } }, - "node_modules/jest-config": { - "version": "27.5.1", - "dev": true, + "node_modules/inferno": { + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/inferno/-/inferno-8.2.3.tgz", + "integrity": "sha512-LMeRlCe+RlXw8kHCLyOWRk2PsZ3Fo4jkESyAR1g4FfPT48N78i11YhTVXW2ukCx5MFjv+qrfa73JzJWU9sg4CQ==", + "hasInstallScript": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "@babel/core": "^7.8.0", - "@jest/test-sequencer": "^27.5.1", - "@jest/types": "^27.5.1", - "babel-jest": "^27.5.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.9", - "jest-circus": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-jasmine2": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runner": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "ts-node": ">=9.0.0" + "csstype": "^3.1.2", + "inferno-vnode-flags": "8.2.3", + "opencollective-postinstall": "^2.0.3" }, - "peerDependenciesMeta": { - "ts-node": { - "optional": true - } + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/inferno" } }, - "node_modules/jest-diff": { - "version": "27.5.1", - "dev": true, + "node_modules/inferno-create-element": { + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/inferno-create-element/-/inferno-create-element-8.2.3.tgz", + "integrity": "sha512-YEwX4OiFlgeTutvE16uCGxkaSVwZ1DklpAPX8okjVsGaLIWQrM8QIQFxn3mTLWSu70Uea+afQfKL5wE4hxn39Q==", "license": "MIT", "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "inferno": "8.2.3" } }, - "node_modules/jest-docblock": { - "version": "27.5.1", - "dev": true, + "node_modules/inferno-hydrate": { + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/inferno-hydrate/-/inferno-hydrate-8.2.3.tgz", + "integrity": "sha512-AyCiswnjYg7D9veJdjiQg06Npp0/iXKhwOm2hjoY3cjadT3fIdz2XtDElLB7imU4icuJ3xOmXA8FgIfnSJfHrQ==", "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "detect-newline": "^3.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "inferno": "8.2.3" } }, - "node_modules/jest-each": { - "version": "27.5.1", + "node_modules/inferno-vnode-flags": { + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/inferno-vnode-flags/-/inferno-vnode-flags-8.2.3.tgz", + "integrity": "sha512-dfC0MIwFv9PCbZCUsuk9ISejFS3fKJODC0rZ/LjxxzE+OrCk+PMwPLsUnGU6O9/jbBnPACVz1BkACDf5LWgU5Q==", + "license": "MIT" + }, + "node_modules/inflight": { + "version": "1.0.6", "dev": true, - "license": "MIT", - "optional": true, - "peer": true, + "license": "ISC", "dependencies": { - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/jest-environment-jsdom": { - "version": "27.5.1", + "node_modules/inherits": { + "version": "2.0.4", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "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", - "optional": true, - "peer": true, "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1", - "jsdom": "^16.6.0" + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.4" } }, - "node_modules/jest-environment-jsdom/node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "node_modules/is-arguments": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", + "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "debug": "4" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { - "node": ">= 6.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-jsdom/node_modules/cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "node_modules/is-array-buffer": { + "version": "3.0.4", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "cssom": "~0.3.6" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-jsdom/node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "node_modules/is-arrayish": { + "version": "0.2.1", "dev": true, - "license": "MIT", - "optional": true, - "peer": true + "license": "MIT" }, - "node_modules/jest-environment-jsdom/node_modules/data-urls": { + "node_modules/is-async-function": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", - "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", "dev": true, "license": "MIT", - "optional": true, "peer": true, "dependencies": { - "abab": "^2.0.3", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.0.0" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-jsdom/node_modules/form-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.3.tgz", - "integrity": "sha512-q5YBMeWy6E2Un0nMGWMgI65MAKtaylxfNJGJxpGh45YDciZB4epbWpaAfImil6CPAPTYB4sh0URQNDRIZG5F2w==", + "node_modules/is-bigint": { + "version": "1.0.4", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "es-set-tostringtag": "^2.1.0", - "mime-types": "^2.1.35" + "has-bigints": "^1.0.1" }, - "engines": { - "node": ">= 6" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-jsdom/node_modules/html-encoding-sniffer": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", - "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "node_modules/is-boolean-object": { + "version": "1.1.2", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "whatwg-encoding": "^1.0.5" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-jsdom/node_modules/http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "node_modules/is-callable": { + "version": "1.2.7", "dev": true, "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - }, "engines": { - "node": ">= 6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-jsdom/node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "node_modules/is-core-module": { + "version": "2.13.1", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "agent-base": "6", - "debug": "4" + "hasown": "^2.0.0" }, - "engines": { - "node": ">= 6" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-jsdom/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "node_modules/is-data-view": { + "version": "1.0.1", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" + "is-typed-array": "^1.1.13" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-jsdom/node_modules/jsdom": { - "version": "16.7.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", - "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "node_modules/is-date-object": { + "version": "1.0.5", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "abab": "^2.0.5", - "acorn": "^8.2.4", - "acorn-globals": "^6.0.0", - "cssom": "^0.4.4", - "cssstyle": "^2.3.0", - "data-urls": "^2.0.0", - "decimal.js": "^10.2.1", - "domexception": "^2.0.1", - "escodegen": "^2.0.0", - "form-data": "^3.0.0", - "html-encoding-sniffer": "^2.0.1", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.0", - "parse5": "6.0.1", - "saxes": "^5.0.1", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.0.0", - "w3c-hr-time": "^1.0.2", - "w3c-xmlserializer": "^2.0.0", - "webidl-conversions": "^6.1.0", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.5.0", - "ws": "^7.4.6", - "xml-name-validator": "^3.0.0" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=10" - }, - "peerDependencies": { - "canvas": "^2.5.0" + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-jsdom/node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "node_modules/is-extglob": { + "version": "2.1.1", "dev": true, "license": "MIT", - "optional": true, - "peer": true + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/jest-environment-jsdom/node_modules/saxes": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", - "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "node_modules/is-finalizationregistry": { + "version": "1.0.2", "dev": true, - "license": "ISC", - "optional": true, + "license": "MIT", "peer": true, "dependencies": { - "xmlchars": "^2.2.0" + "call-bind": "^1.0.2" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "dev": true, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/jest-environment-jsdom/node_modules/tr46": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", - "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "node_modules/is-generator-function": { + "version": "1.0.10", "dev": true, "license": "MIT", - "optional": true, "peer": true, "dependencies": { - "punycode": "^2.1.1" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-jsdom/node_modules/w3c-xmlserializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", - "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "node_modules/is-glob": { + "version": "4.0.3", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "xml-name-validator": "^3.0.0" + "is-extglob": "^2.1.1" }, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/jest-environment-jsdom/node_modules/webidl-conversions": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", - "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "node_modules/is-map": { + "version": "2.0.3", "dev": true, - "license": "BSD-2-Clause", - "optional": true, - "peer": true, + "license": "MIT", "engines": { - "node": ">=10.4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-jsdom/node_modules/whatwg-encoding": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", - "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "node_modules/is-negative-zero": { + "version": "2.0.3", "dev": true, "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "iconv-lite": "0.4.24" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-jsdom/node_modules/whatwg-mimetype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", - "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "node_modules/is-number": { + "version": "7.0.0", "dev": true, "license": "MIT", - "optional": true, - "peer": true + "engines": { + "node": ">=0.12.0" + } }, - "node_modules/jest-environment-jsdom/node_modules/whatwg-url": { - "version": "8.7.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", - "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "node_modules/is-number-object": { + "version": "1.0.7", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "lodash": "^4.7.0", - "tr46": "^2.1.0", - "webidl-conversions": "^6.1.0" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-jsdom/node_modules/ws": { - "version": "7.5.10", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", - "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "node_modules/is-path-inside": { + "version": "3.0.3", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } + "node": ">=8" } }, - "node_modules/jest-environment-jsdom/node_modules/xml-name-validator": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", - "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", - "dev": true, - "license": "Apache-2.0", - "optional": true, - "peer": true - }, - "node_modules/jest-environment-node": { - "version": "27.5.1", + "node_modules/is-plain-obj": { + "version": "1.1.0", "dev": true, "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-get-type": { - "version": "27.5.1", + "node_modules/is-plain-object": { + "version": "5.0.0", "dev": true, "license": "MIT", "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-haste-map": { - "version": "27.5.1", + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/is-regex": { + "version": "1.1.4", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.4" }, - "optionalDependencies": { - "fsevents": "^2.3.2" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-jasmine2": { - "version": "27.5.1", + "node_modules/is-set": { + "version": "2.0.3", "dev": true, "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "expect": "^27.5.1", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1", - "throat": "^6.0.1" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-leak-detector": { - "version": "27.5.1", + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" + "call-bind": "^1.0.7" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-matcher-utils": { - "version": "27.5.1", + "node_modules/is-string": { + "version": "1.0.7", "dev": true, "license": "MIT", "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-message-util": { - "version": "27.5.1", + "node_modules/is-symbol": { + "version": "1.0.4", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^27.5.1", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" + "has-symbols": "^1.0.2" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-mock": { - "version": "27.5.1", + "node_modules/is-typed-array": { + "version": "1.1.13", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*" + "which-typed-array": "^1.1.14" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-regex-util": { - "version": "27.5.1", + "node_modules/is-weakmap": { + "version": "2.0.2", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-resolve": { - "version": "27.5.1", + "node_modules/is-weakref": { + "version": "1.0.2", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "resolve": "^1.20.0", - "resolve.exports": "^1.1.0", - "slash": "^3.0.0" + "call-bind": "^1.0.2" }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-resolve-dependencies": { - "version": "27.5.1", + "node_modules/is-weakset": { + "version": "2.0.3", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "@jest/types": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-snapshot": "^27.5.1" + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-runner": { - "version": "27.5.1", + "node_modules/isarray": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@jest/console": "^27.5.1", - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.8.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-leak-detector": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "source-map-support": "^0.5.6", - "throat": "^6.0.1" - }, + "license": "ISC" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "dev": true, + "license": "BSD-3-Clause", "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=8" } }, - "node_modules/jest-runtime": { - "version": "27.5.1", + "node_modules/istanbul-lib-report": { + "version": "3.0.1", "dev": true, - "license": "MIT", - "optional": true, - "peer": true, + "license": "BSD-3-Clause", "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/globals": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "execa": "^5.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-mock": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=10" } }, - "node_modules/jest-serializer": { - "version": "27.5.1", + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.9" + "semver": "^7.5.3" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-snapshot": { - "version": "27.5.1", + "node_modules/istanbul-reports": { + "version": "3.1.7", "dev": true, - "license": "MIT", - "optional": true, - "peer": true, + "license": "BSD-3-Clause", "dependencies": { - "@babel/core": "^7.7.2", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.0.0", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/babel__traverse": "^7.0.4", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^27.5.1", - "graceful-fs": "^4.2.9", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-util": "^27.5.1", - "natural-compare": "^1.4.0", - "pretty-format": "^27.5.1", - "semver": "^7.3.2" + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=8" } }, - "node_modules/jest-util": { - "version": "27.5.1", + "node_modules/iterator.prototype": { + "version": "1.1.2", "dev": true, "license": "MIT", - "optional": true, "peer": true, "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" } }, - "node_modules/jest-validate": { + "node_modules/jest-diff": { "version": "27.5.1", "dev": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "@jest/types": "^27.5.1", - "camelcase": "^6.2.0", "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", "jest-get-type": "^27.5.1", - "leven": "^3.1.0", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-watcher": { + "node_modules/jest-get-type": { "version": "27.5.1", "dev": true, "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "jest-util": "^27.5.1", - "string-length": "^4.0.1" - }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-worker": { + "node_modules/jest-matcher-utils": { "version": "27.5.1", "dev": true, "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, "dependencies": { - "has-flag": "^4.0.0" + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/jiti": { - "version": "1.21.6", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "bin": { - "jiti": "bin/jiti.js" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/js-tokens": { @@ -7966,16 +5756,6 @@ "node": ">=0.10.0" } }, - "node_modules/kleur": { - "version": "3.0.3", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=6" - } - }, "node_modules/known-css-properties": { "version": "0.29.0", "dev": true, @@ -7999,16 +5779,6 @@ "node": ">=0.10" } }, - "node_modules/leven": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=6" - } - }, "node_modules/levn": { "version": "0.4.1", "dev": true, @@ -8180,16 +5950,6 @@ "dev": true, "license": "ISC" }, - "node_modules/makeerror": { - "version": "1.0.12", - "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "peer": true, - "dependencies": { - "tmpl": "1.0.5" - } - }, "node_modules/map-obj": { "version": "4.3.0", "dev": true, @@ -8393,16 +6153,6 @@ "node": ">= 0.6" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=6" - } - }, "node_modules/min-indent": { "version": "1.0.1", "dev": true, @@ -8504,13 +6254,6 @@ "dev": true, "license": "MIT" }, - "node_modules/node-int64": { - "version": "0.4.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true - }, "node_modules/node-releases": { "version": "2.0.19", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", @@ -8694,19 +6437,6 @@ "which": "bin/which" } }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/nwsapi": { "version": "2.2.20", "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.20.tgz", @@ -8860,22 +6590,6 @@ "wrappy": "1" } }, - "node_modules/onetime": { - "version": "5.1.2", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/opencollective-postinstall": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz", @@ -8929,16 +6643,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-try": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=6" - } - }, "node_modules/pako": { "version": "1.0.11", "license": "(MIT AND Zlib)" @@ -9094,85 +6798,6 @@ "node": ">=4" } }, - "node_modules/pirates": { - "version": "4.0.6", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "2.3.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/pkg-types": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz", @@ -9302,20 +6927,6 @@ "version": "2.0.1", "license": "MIT" }, - "node_modules/prompts": { - "version": "2.4.2", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/prop-types": { "version": "15.8.1", "license": "MIT", @@ -9593,16 +7204,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/require-directory": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/require-from-string": { "version": "2.0.2", "dev": true, @@ -9629,39 +7230,16 @@ "version": "1.22.8", "dev": true, "license": "MIT", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-cwd": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-cwd/node_modules/resolve-from": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=8" + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/resolve-from": { @@ -9672,16 +7250,6 @@ "node": ">=4" } }, - "node_modules/resolve.exports": { - "version": "1.1.1", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=10" - } - }, "node_modules/reusify": { "version": "1.0.4", "dev": true, @@ -9967,20 +7535,6 @@ "dev": true, "license": "ISC" }, - "node_modules/signal-exit": { - "version": "3.0.7", - "dev": true, - "license": "ISC", - "optional": true, - "peer": true - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true - }, "node_modules/slash": { "version": "3.0.0", "dev": true, @@ -10005,16 +7559,6 @@ "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/source-map": { - "version": "0.7.4", - "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "peer": true, - "engines": { - "node": ">= 8" - } - }, "node_modules/source-map-js": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", @@ -10025,27 +7569,6 @@ "node": ">=0.10.0" } }, - "node_modules/source-map-support": { - "version": "0.5.21", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/spdx-correct": { "version": "3.2.0", "dev": true, @@ -10074,36 +7597,6 @@ "dev": true, "license": "CC0-1.0" }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "peer": true - }, - "node_modules/stack-utils": { - "version": "2.0.6", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "escape-string-regexp": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/stack-utils/node_modules/escape-string-regexp": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=8" - } - }, "node_modules/stackback": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", @@ -10139,20 +7632,6 @@ "safe-buffer": "~5.1.0" } }, - "node_modules/string-length": { - "version": "4.0.2", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/string-width": { "version": "4.2.3", "dev": true, @@ -10270,26 +7749,6 @@ "node": ">=8" } }, - "node_modules/strip-bom": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "engines": { - "node": ">=6" - } - }, "node_modules/strip-indent": { "version": "3.0.0", "dev": true, @@ -10584,63 +8043,6 @@ "dev": true, "license": "MIT" }, - "node_modules/terminal-link": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "ansi-escapes": "^4.2.1", - "supports-hyperlinks": "^2.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/terminal-link/node_modules/supports-hyperlinks": { - "version": "2.3.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/terser": { - "version": "5.31.1", - "dev": true, - "license": "BSD-2-Clause", - "optional": true, - "peer": true, - "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true - }, "node_modules/test-exclude": { "version": "6.0.0", "dev": true, @@ -10659,13 +8061,6 @@ "dev": true, "license": "MIT" }, - "node_modules/throat": { - "version": "6.0.2", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true - }, "node_modules/tinybench": { "version": "2.9.0", "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", @@ -10738,13 +8133,6 @@ "node": ">=14.0.0" } }, - "node_modules/tmpl": { - "version": "1.0.5", - "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "peer": true - }, "node_modules/to-regex-range": { "version": "5.0.1", "dev": true, @@ -11023,16 +8411,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/typedarray-to-buffer": { - "version": "3.1.5", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "is-typedarray": "^1.0.0" - } - }, "node_modules/typescript": { "version": "5.8.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", @@ -11391,28 +8769,6 @@ "dev": true, "license": "MIT" }, - "node_modules/v8-to-istanbul": { - "version": "8.1.1", - "dev": true, - "license": "ISC", - "optional": true, - "peer": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0", - "source-map": "^0.7.3" - }, - "engines": { - "node": ">=10.12.0" - } - }, - "node_modules/v8-to-istanbul/node_modules/convert-source-map": { - "version": "1.9.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true - }, "node_modules/validate-npm-package-license": { "version": "3.0.4", "dev": true, @@ -12868,19 +10224,6 @@ } } }, - "node_modules/w3c-hr-time": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", - "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", - "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "browser-process-hrtime": "^1.0.0" - } - }, "node_modules/w3c-xmlserializer": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz", @@ -12894,16 +10237,6 @@ "node": ">=18" } }, - "node_modules/walker": { - "version": "1.0.8", - "dev": true, - "license": "Apache-2.0", - "optional": true, - "peer": true, - "dependencies": { - "makeerror": "1.0.12" - } - }, "node_modules/webidl-conversions": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", @@ -13072,42 +10405,11 @@ "node": ">=0.10.0" } }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, "node_modules/wrappy": { "version": "1.0.2", "dev": true, "license": "ISC" }, - "node_modules/write-file-atomic": { - "version": "3.0.3", - "dev": true, - "license": "ISC", - "optional": true, - "peer": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - }, "node_modules/ws": { "version": "8.18.3", "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", @@ -13147,55 +10449,11 @@ "dev": true, "license": "MIT" }, - "node_modules/y18n": { - "version": "5.0.8", - "dev": true, - "license": "ISC", - "optional": true, - "peer": true, - "engines": { - "node": ">=10" - } - }, "node_modules/yallist": { "version": "3.1.1", "dev": true, "license": "ISC" }, - "node_modules/yaml": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.0.tgz", - "integrity": "sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==", - "dev": true, - "license": "ISC", - "optional": true, - "peer": true, - "bin": { - "yaml": "bin.mjs" - }, - "engines": { - "node": ">= 14.6" - } - }, - "node_modules/yargs": { - "version": "16.2.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/yargs-parser": { "version": "20.2.9", "dev": true, diff --git a/React/package.json b/React/package.json index 4e67360..f2cd04c 100644 --- a/React/package.json +++ b/React/package.json @@ -15,11 +15,13 @@ }, "dependencies": { "devextreme": "25.1.3", + "devextreme-aspnet-data-nojquery": "^5.1.0", "devextreme-react": "25.1.3", "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { + "@babel/plugin-proposal-private-property-in-object": "^7.21.11", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^14.1.2", "@testing-library/user-event": "^14.4.3", @@ -27,7 +29,6 @@ "@types/react-dom": "^18.2.17", "@vitejs/plugin-react": "^4.4.1", "@vitest/coverage-v8": "^1.5.0", - "@babel/plugin-proposal-private-property-in-object": "^7.21.11", "eslint": "^8.35.0", "eslint-config-devextreme": "^1.1.4", "eslint-plugin-no-only-tests": "2.6.0", @@ -39,10 +40,10 @@ "npm-run-all": "^4.1.5", "stylelint": "^15.6.1", "stylelint-config-standard": "^33.0.0", + "ts-node": "10.9.2", "typescript": "~5.8.2", "typescript-eslint": "^8.18.2", "vite": "^6.3.5", - "ts-node": "10.9.2", "vitest": "^1.5.0" } -} \ No newline at end of file +} diff --git a/React/src/App.tsx b/React/src/App.tsx index c61a5cb..b972c2a 100644 --- a/React/src/App.tsx +++ b/React/src/App.tsx @@ -1,16 +1,112 @@ -import { useCallback, useState } from 'react'; +import { + useEffect, useRef, useState, +} from 'react'; import './App.css'; import 'devextreme/dist/css/dx.material.blue.light.compact.css'; -import Button from 'devextreme-react/button'; +import * as AspNetData from 'devextreme-aspnet-data-nojquery'; +import DataGrid, { + Column, type DataGridTypes, GroupPanel, Grouping, type DataGridRef, Lookup, Paging, Selection, +} from 'devextreme-react/data-grid'; +import GroupSelectionHelper from './GroupRowSelection/GroupRowSelectionHelper'; +import GroupRowComponent, { type IGroupRowReadyParameter } from './GroupRowSelection/GroupRowComponent'; +import { useEventCallback } from './hooks'; + +const url = 'https://js.devexpress.com/Demos/Mvc/api/DataGridWebApi'; +const dataSource = AspNetData.createStore({ + key: 'OrderID', + loadUrl: `${url}/Orders`, + onBeforeSend(_method, ajaxOptions) { + ajaxOptions.xhrFields = { withCredentials: true }; + }, +}); +const customersData = AspNetData.createStore({ + key: 'Value', + loadUrl: `${url}/CustomersLookup`, + onBeforeSend(_method, ajaxOptions) { + ajaxOptions.xhrFields = { withCredentials: true }; + }, +}); +const shippersData = AspNetData.createStore({ + key: 'Value', + loadUrl: `${url}/ShippersLookup`, + onBeforeSend(_method, ajaxOptions) { + ajaxOptions.xhrFields = { withCredentials: true }; + }, +}); function App(): JSX.Element { - var [count, setCount] = useState(0); - const clickHandler = useCallback(() => { - setCount((prev) => prev + 1); - }, [setCount]); + const dataGrid = useRef(null); + const [helper, setHelper] = useState(); + + useEffect(() => { + if (dataGrid?.current) { + setHelper(new GroupSelectionHelper(dataGrid.current.instance())); + } + }, [dataGrid, setHelper]); + + // eslint-disable-next-line @typescript-eslint/no-unsafe-return + const groupRowInit = useEventCallback((arg: IGroupRowReadyParameter) => helper?.groupRowInit(arg)); + + const groupCellRender = useEventCallback((group: DataGridTypes.ColumnGroupCellTemplateData): JSX.Element => ( + + )); + return (
-
); } diff --git a/React/src/GroupRowSelection/GroupRowComponent.css b/React/src/GroupRowSelection/GroupRowComponent.css new file mode 100644 index 0000000..5e389db --- /dev/null +++ b/React/src/GroupRowSelection/GroupRowComponent.css @@ -0,0 +1,13 @@ +.group-selection-front { + margin-right: 10px; +} + +.group-selection-front .dx-loadindicator { + display: block; +} + +.group-row-flex { + display: flex; + flex-direction: row; + align-items: center; +} \ No newline at end of file diff --git a/React/src/GroupRowSelection/GroupRowComponent.tsx b/React/src/GroupRowSelection/GroupRowComponent.tsx new file mode 100644 index 0000000..98865f1 --- /dev/null +++ b/React/src/GroupRowSelection/GroupRowComponent.tsx @@ -0,0 +1,87 @@ +import { LoadIndicator } from 'devextreme-react'; +import './GroupRowComponent.css'; +import { type DataGridTypes } from 'devextreme-react/data-grid'; +import { + useEffect, useMemo, useState, +} from 'react'; +import CheckBox from 'devextreme-react/check-box'; +import type { CheckBoxTypes } from 'devextreme-react/check-box'; +import { useEventCallback } from '../hooks'; + +interface GroupRowProps { + groupCellData: DataGridTypes.ColumnGroupCellTemplateData; + childRowKeys?: any[]; + // eslint-disable-next-line no-unused-vars + onInitialized: (param: IGroupRowReadyParameter) => Promise | undefined; +} + +const iconSize = 18; + +// eslint-disable-next-line func-style +const GroupRowComponent: React.FC = ({ + groupCellData, + onInitialized, +}) => { + const [isLoading, setIsLoading] = useState(true); + const [checked, setChecked] = useState(false); + const [childKeys, setChildKeys] = useState([]); + + // Memoize the group text to avoid recalculating on every render + const groupText = useMemo((): string => { + let text = `${groupCellData.column.caption}: ${groupCellData.displayValue}`; + if (groupCellData.groupContinuedMessage) text += ` (${groupCellData.groupContinuedMessage})`; + if (groupCellData.groupContinuesMessage) text += ` (${groupCellData.groupContinuesMessage})`; + return text; + }, [groupCellData.column.caption, groupCellData.displayValue, groupCellData.groupContinuedMessage, groupCellData.groupContinuesMessage]); + + const onValueChange = useEventCallback((value: CheckBoxTypes.ValueChangedEvent) => { + if (value) { + // eslint-disable-next-line no-console + groupCellData.component.selectRows(childKeys ?? [], true).catch(console.error); + } else { + // eslint-disable-next-line no-console + groupCellData.component.deselectRows(childKeys ?? []).catch(console.error); + } + }); + + const setCheckedState = useEventCallback((value: boolean | undefined) => { + setChecked(value); + setIsLoading(false); + }); + + const groupRowKey = useMemo(() => JSON.stringify(groupCellData.row.key), [groupCellData.row.key]); + + useEffect(() => { + // eslint-disable-next-line @typescript-eslint/no-invalid-this + const action = onInitialized?.({ key: groupCellData.row.key, setCheckedState: setCheckedState.bind(this) }); + // eslint-disable-next-line @typescript-eslint/no-floating-promises + action?.then((children: any) => { + setChildKeys(children); + }); + }, [groupRowKey]); + + return ( +
+
+ + +
+ {groupText} +
+ ); +}; + +export default GroupRowComponent; + +export interface IGroupRowReadyParameter { + key: string[]; + setCheckedState: Function; +} diff --git a/React/src/GroupRowSelection/GroupRowSelectionHelper.tsx b/React/src/GroupRowSelection/GroupRowSelectionHelper.tsx new file mode 100644 index 0000000..364dcb6 --- /dev/null +++ b/React/src/GroupRowSelection/GroupRowSelectionHelper.tsx @@ -0,0 +1,138 @@ +import dxDataGrid from 'devextreme/ui/data_grid'; +import { type DataGridTypes } from 'devextreme-react/data-grid'; +import { type LoadOptions } from 'devextreme/common/data'; +import { isItemsArray } from 'devextreme-react/common/data'; +import { type IGroupRowReadyParameter } from './GroupRowComponent'; + +export default class GroupSelectionHelper { + groupedColumns: DataGridTypes.Column[]; + + grid: dxDataGrid; + + getSelectedKeysPromise: Promise | null; + + selectedKeys: any[] = []; + + groupChildKeys: Record = {}; + + constructor(grid: dxDataGrid) { + this.grid = grid; + this.groupedColumns = this.collectGroupedColumns(grid); + this.getSelectedKeysPromise = this.getSelectedKeys(grid); + this.getSelectedKeysPromise.then((keys: any[]) => { + this.selectedKeys = keys; + }).catch(() => { }); + const defaultSelectionHandler: Function | undefined = grid.option('onSelectionChanged'); + grid.option('onSelectionChanged', (e: DataGridTypes.SelectionChangedEvent) => { + this.selectionChanged(e); + if (defaultSelectionHandler) { defaultSelectionHandler(e); } + }); + const defaultOptionChangedHandler: Function | undefined = grid.option('onOptionChanged'); + grid.option('onOptionChanged', (e: DataGridTypes.OptionChangedEvent) => { + if (e.fullName.includes('groupIndex')) { + this.groupedColumns = this.collectGroupedColumns(grid); + } + if (defaultOptionChangedHandler) { defaultOptionChangedHandler(e); } + }); + } + + groupRowInit(arg: IGroupRowReadyParameter): Promise { + const checkBoxId = this.calcCheckBoxId(this.grid, arg.key); + const promise = new Promise((resolve) => { + if (!this.groupChildKeys[checkBoxId]) { + const filter: any[] = []; + arg.key.forEach((key, i) => { + filter.push([this.groupedColumns[i].dataField, '=', key]); + }); + const loadOptions: LoadOptions = { + filter, + }; + const store = this.grid.getDataSource().store(); + + store.load(loadOptions).then((data) => { + if (isItemsArray(data)) { + // eslint-disable-next-line @typescript-eslint/no-unsafe-return + this.groupChildKeys[checkBoxId] = data.map((d) => this.grid.keyOf(d)); + this.getSelectedKeys(this.grid).then((selectedKeys) => { + const checkedState: boolean | undefined = this.areKeysSelected(this.groupChildKeys[checkBoxId], selectedKeys); + arg.setCheckedState(checkedState); + }).catch(() => { }); + resolve(this.groupChildKeys[checkBoxId]); + } + }).catch(() => { }); + } else { + this.getSelectedKeys(this.grid).then((selectedKeys) => { + const checkedState: boolean | undefined = this.areKeysSelected(this.groupChildKeys[checkBoxId], selectedKeys); + arg.setCheckedState(checkedState); + resolve(this.groupChildKeys[checkBoxId]); + }).catch(() => { }); + } + }); + + return promise; + } + + selectionChanged(e: DataGridTypes.SelectionChangedEvent): void { + const groupRows: DataGridTypes.Row[] = e.component.getVisibleRows().filter((r) => r.rowType === 'group'); + this.getSelectedKeysPromise = null; + if (e.component.option('selection.deferred')) { + const selectionFilter = e.component.option('selectionFilter'); + if (selectionFilter && selectionFilter.length >= 0) { + this.repaintGroupRowTree(e.component, groupRows); + } else { + e.component.repaintRows(groupRows.map((g) => g.rowIndex)); + } + } else if (e.selectedRowKeys.length >= e.component.totalCount() || e.currentDeselectedRowKeys.length >= e.component.totalCount()) { + e.component.repaintRows(groupRows.map((g) => g.rowIndex)); + } else { + this.repaintGroupRowTree(e.component, groupRows); + } + } + + getSelectedKeys(grid: dxDataGrid): Promise { + if (grid.option('selection.deferred')) { + if (!this.getSelectedKeysPromise) { + this.getSelectedKeysPromise = grid.getSelectedRowKeys(); + } + return this.getSelectedKeysPromise; + } + return grid.getSelectedRowKeys(); + } + + repaintGroupRowTree(grid: dxDataGrid, groupRows: DataGridTypes.Row[]): void { + const topGroupRow: DataGridTypes.Row | null = groupRows + .filter((r) => r.isExpanded) + .reduce((acc: DataGridTypes.Row | null, curr) => (!acc || acc.key.length > curr.key.length ? curr : acc), null); + if (topGroupRow) { + const affectedGroupRows = groupRows.filter((g) => g.key[0] == topGroupRow.key[0]); + grid.repaintRows(affectedGroupRows.map((g) => g.rowIndex)); + } + } + + areKeysSelected(keysToCheck: any[], selectedKeys: any[]): boolean | undefined { + if (selectedKeys.length == 0) { return false; } + const intersectionCount = keysToCheck.filter((k) => selectedKeys.includes(k)).length; + if (intersectionCount === 0) { return false; } + if (intersectionCount === keysToCheck.length) { return true; } + return undefined; + } + + getChildRowKeys(grid: dxDataGrid, groupRowKey: string[]): any[] { + // eslint-disable-next-line @typescript-eslint/no-unsafe-return + return this.groupChildKeys[this.calcCheckBoxId(grid, groupRowKey)]; + } + + calcCheckBoxId(grid: dxDataGrid, groupRowKey: string[]): string { + const gridId: string = grid.element().id; + return `${gridId}groupCheckBox${groupRowKey.join('')}`; + } + + collectGroupedColumns(grid: dxDataGrid): DataGridTypes.Column[] { + const allColumns: DataGridTypes.Column[] = grid.getVisibleColumns(); + return allColumns.filter((c: DataGridTypes.Column) => c.groupIndex != undefined && c.groupIndex >= 0) + .sort((a, b) => { + if (!a.groupIndex || !b.groupIndex) return 0; + return a.groupIndex > b.groupIndex ? 1 : -1; + }); + } +} diff --git a/React/src/hooks.ts b/React/src/hooks.ts new file mode 100644 index 0000000..124ec68 --- /dev/null +++ b/React/src/hooks.ts @@ -0,0 +1,22 @@ +import { useRef, useLayoutEffect, useCallback } from 'react'; + +export function useEventCallback( + // eslint-disable-next-line no-unused-vars + fn: (...args: Args) => Return, + // eslint-disable-next-line no-unused-vars +): (...args: Args) => Return { + // eslint-disable-next-line @typescript-eslint/no-extra-parens, no-unused-vars + const ref = useRef<((...args: Args) => Return) | null>(null); + + useLayoutEffect(() => { + ref.current = fn; + }, [fn]); + + return useCallback((...args: Args) => { + const f = ref.current; + if (!f) { + throw new Error('Cannot call function before component is mounted'); + } + return f(...args); + }, []); +} From ee0b4e32d78bc0db5f144be8a6fd8ee49eb924e3 Mon Sep 17 00:00:00 2001 From: Artem Kurchenko Date: Sun, 5 Oct 2025 21:30:04 +0400 Subject: [PATCH 04/10] implement Vue --- Vue/package-lock.json | 26 ++- Vue/package.json | 5 +- Vue/src/assets/main.css | 4 +- .../GroupRowSelection/GroupRowComponent.vue | 78 +++++++++ .../GroupRowSelectionHelper.ts | 149 ++++++++++++++++++ Vue/src/components/HomeContent.vue | 123 +++++++++++++-- Vue/src/types.ts | 5 + 7 files changed, 354 insertions(+), 36 deletions(-) create mode 100644 Vue/src/components/GroupRowSelection/GroupRowComponent.vue create mode 100644 Vue/src/components/GroupRowSelection/GroupRowSelectionHelper.ts create mode 100644 Vue/src/types.ts diff --git a/Vue/package-lock.json b/Vue/package-lock.json index b7315bd..512163f 100644 --- a/Vue/package-lock.json +++ b/Vue/package-lock.json @@ -9,6 +9,7 @@ "version": "0.0.0", "dependencies": { "devextreme": "25.1.3", + "devextreme-aspnet-data-nojquery": "^5.1.0", "devextreme-vue": "25.1.3", "vue": "^3.2.45", "vue-router": "^4.1.6" @@ -2948,6 +2949,15 @@ "devextreme-bundler-init": "bin/bundler-init.js" } }, + "node_modules/devextreme-aspnet-data-nojquery": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/devextreme-aspnet-data-nojquery/-/devextreme-aspnet-data-nojquery-5.1.0.tgz", + "integrity": "sha512-YJ7HxOLJTzz6bmpp1uOjXdhUL71THR6IidVONjJRF1R1loTyNVesa6s86gU+mUeNN044UnJKQhtCADc0+TmARQ==", + "license": "MIT", + "peerDependencies": { + "devextreme": ">=18.1.0" + } + }, "node_modules/devextreme-quill": { "version": "1.7.3", "resolved": "https://registry.npmjs.org/devextreme-quill/-/devextreme-quill-1.7.3.tgz", @@ -8163,22 +8173,6 @@ "node": ">=8" } }, - "node_modules/stylelint/node_modules/typescript": { - "version": "5.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", - "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", - "dev": true, - "license": "Apache-2.0", - "optional": true, - "peer": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", diff --git a/Vue/package.json b/Vue/package.json index 948760e..8816fc6 100644 --- a/Vue/package.json +++ b/Vue/package.json @@ -12,8 +12,9 @@ "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore" }, "dependencies": { - "devextreme": "25.1.3", - "devextreme-vue": "25.1.3", + "devextreme": "^25.1.3", + "devextreme-aspnet-data-nojquery": "^5.1.0", + "devextreme-vue": "^25.1.3", "vue": "^3.2.45", "vue-router": "^4.1.6" }, diff --git a/Vue/src/assets/main.css b/Vue/src/assets/main.css index e3267f4..cf6347c 100644 --- a/Vue/src/assets/main.css +++ b/Vue/src/assets/main.css @@ -3,6 +3,6 @@ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; color: #2c3e50; - margin: 50px 50px; - width: 90vh; + margin: 50px; + width: 90vw; } \ No newline at end of file diff --git a/Vue/src/components/GroupRowSelection/GroupRowComponent.vue b/Vue/src/components/GroupRowSelection/GroupRowComponent.vue new file mode 100644 index 0000000..58faf1e --- /dev/null +++ b/Vue/src/components/GroupRowSelection/GroupRowComponent.vue @@ -0,0 +1,78 @@ + + + + + diff --git a/Vue/src/components/GroupRowSelection/GroupRowSelectionHelper.ts b/Vue/src/components/GroupRowSelection/GroupRowSelectionHelper.ts new file mode 100644 index 0000000..850faf7 --- /dev/null +++ b/Vue/src/components/GroupRowSelection/GroupRowSelectionHelper.ts @@ -0,0 +1,149 @@ +import type dxDataGrid from 'devextreme/ui/data_grid'; +import type { DxDataGridTypes } from 'devextreme-vue/data-grid'; +import type { LoadOptions } from 'devextreme-vue/common/data'; +import { isItemsArray } from 'devextreme-vue/common/data'; +import type { IGroupRowReadyParameter } from '@/types'; + +export default class GroupSelectionHelper { + groupedColumns: DxDataGridTypes.Column[]; + grid: dxDataGrid; + getSelectedKeysPromise: Promise | null; + selectedKeys: any[] = []; + groupChildKeys: Record = {}; + + constructor(grid: dxDataGrid) { + this.grid = grid; + this.groupedColumns = this.collectGroupedColumns(grid); + this.getSelectedKeysPromise = this.getSelectedKeys(grid); + this.getSelectedKeysPromise.then((keys: any[]) => { + this.selectedKeys = keys; + }).catch(() => {}); + const defaultCustomizeCallback: Function | undefined = grid.option('customizeColumns'); + grid.option('customizeColumns', (columns: DxDataGridTypes.Column[]) => { + columns.forEach((column: DxDataGridTypes.Column) => { + column.groupCellTemplate = 'groupCellTemplate'; + }); + if (defaultCustomizeCallback) { defaultCustomizeCallback(columns); } + }); + const defaultSelectionHandler: Function | undefined = grid.option('onSelectionChanged'); + grid.option('onSelectionChanged', (e: DxDataGridTypes.SelectionChangedEvent) => { + this.selectionChanged(e); + if (defaultSelectionHandler) { defaultSelectionHandler(e); } + }); + const defaultOptionChangedHandler: Function | undefined = grid.option('onOptionChanged'); + grid.option('onOptionChanged', (e: DxDataGridTypes.OptionChangedEvent) => { + if (e.fullName.includes('groupIndex')) { + this.groupedColumns = this.collectGroupedColumns(grid); + } + if (defaultOptionChangedHandler) { defaultOptionChangedHandler(e); } + }); + } + + groupRowInit(arg: IGroupRowReadyParameter): Promise { + const checkBoxId = this.calcCheckBoxId(this.grid, arg.key); + + const promise = new Promise((resolve) => { + if (!this.groupChildKeys[checkBoxId]) { + const filter: any[] = []; + arg.key.forEach((key, i) => { + filter.push([this.groupedColumns[i].dataField, '=', key]); + }); + const loadOptions: LoadOptions = { + filter, + }; + const store = this.grid.getDataSource().store(); + store.load(loadOptions).then((data) => { + if (isItemsArray(data)) { + this.groupChildKeys[checkBoxId] = data.map((d) => this.grid.keyOf(d)); + this.getSelectedKeys(this.grid).then((selectedKeys) => { + const checkedState: boolean | undefined = this.areKeysSelected( + this.groupChildKeys[checkBoxId], selectedKeys + ); + arg.setCheckedState(checkedState); + }).catch(() => {}); + resolve(this.groupChildKeys[checkBoxId]); + } + }).catch(() => {}); + } else { + this.getSelectedKeys(this.grid).then((selectedKeys) => { + const checkedState: boolean | undefined = this.areKeysSelected( + this.groupChildKeys[checkBoxId], selectedKeys + ); + arg.setCheckedState(checkedState); + }).catch(() => {}); + resolve(this.groupChildKeys[checkBoxId]); + } + }); + return promise; + } + + selectionChanged(e: DxDataGridTypes.SelectionChangedEvent): void { + const groupRows: DxDataGridTypes.Row[] = e.component.getVisibleRows().filter((r) => r.rowType === 'group'); + this.getSelectedKeysPromise = null; + if (e.component.option('selection.deferred')) { + const selectionFilter = e.component.option('selectionFilter'); + if (selectionFilter && selectionFilter.length >= 0) { + this.repaintGroupRowTree(e.component, groupRows); + } else { + e.component.repaintRows(groupRows.map((g) => g.rowIndex)); + } + } else if (e.selectedRowKeys.length >= e.component.totalCount() + || e.currentDeselectedRowKeys.length >= e.component.totalCount()) { + e.component.repaintRows(groupRows.map((g) => g.rowIndex)); + } else { + this.repaintGroupRowTree(e.component, groupRows); + } + } + + getSelectedKeys(grid: dxDataGrid): Promise { + if (grid.option('selection.deferred')) { + if (!this.getSelectedKeysPromise) { + this.getSelectedKeysPromise = grid.getSelectedRowKeys(); + } + return this.getSelectedKeysPromise; + } + return new Promise((resolve) => resolve(grid.getSelectedRowKeys())); + } + + repaintGroupRowTree(grid: dxDataGrid, groupRows: DxDataGridTypes.Row[]): void { + const topGroupRow: DxDataGridTypes.Row | null = groupRows.filter( + (r) => r.isExpanded + ).reduce((acc: DxDataGridTypes.Row | null, curr) => + (!acc || acc.key.length > curr.key.length ? curr : acc), null); + if (topGroupRow) { + const affectedGroupRows = groupRows.filter((g) => g.key[0] == topGroupRow.key[0]); + grid.repaintRows(affectedGroupRows.map((g) => g.rowIndex)); + } + } + + areKeysSelected(keysToCheck: any[], selectedKeys: any[]): boolean | undefined { + if (selectedKeys.length == 0) { return false; } + const intersectionCount = keysToCheck.filter((k) => selectedKeys.includes(k)).length; + if (intersectionCount === 0) { return false; } + if (intersectionCount === keysToCheck.length) { return true; } + return undefined; + } + + getChildRowKeys(grid: dxDataGrid, groupRowKey: string[]): any[] { + return this.groupChildKeys[this.calcCheckBoxId(grid, groupRowKey)]; + } + + calcCheckBoxId(grid: dxDataGrid, groupRowKey: string[]): string { + const gridId: string = grid.element().id; + if(!groupRowKey) { + return `${gridId}groupCheckBox`; + }else{ + return groupRowKey && `${gridId}groupCheckBox${groupRowKey.join('')}`; + } + } + + collectGroupedColumns(grid: dxDataGrid): DxDataGridTypes.Column[] { + const allColumns: DxDataGridTypes.Column[] = grid.getVisibleColumns(); + return allColumns.filter( + (c: DxDataGridTypes.Column) => c.groupIndex != undefined && c.groupIndex >= 0) + .sort((a, b) => { + if (!a.groupIndex || !b.groupIndex) return 0; + return a.groupIndex > b.groupIndex ? 1 : -1; + }); + } +} diff --git a/Vue/src/components/HomeContent.vue b/Vue/src/components/HomeContent.vue index 76c6071..eda64f1 100644 --- a/Vue/src/components/HomeContent.vue +++ b/Vue/src/components/HomeContent.vue @@ -1,28 +1,119 @@ diff --git a/Vue/src/types.ts b/Vue/src/types.ts new file mode 100644 index 0000000..f995219 --- /dev/null +++ b/Vue/src/types.ts @@ -0,0 +1,5 @@ +export interface IGroupRowReadyParameter { + key: string[]; + // eslint-disable-next-line no-unused-vars + setCheckedState: (state: boolean | undefined) => void; +} From e4d8c8fe8ecc3c1cd12412b4f6920fe9389792b4 Mon Sep 17 00:00:00 2001 From: Artem Kurchenko Date: Sun, 5 Oct 2025 22:14:25 +0400 Subject: [PATCH 05/10] implement asp.net core --- .gitignore | 1 + .../Controllers/SampleDataController.cs | 21 ------- .../Controllers/orig_HomeController.cs | 21 ------- ASP.NET Core/Views/Home/Index.cshtml | 59 ++++++++++++------- ASP.NET Core/Views/Shared/_Layout.cshtml | 7 +-- ASP.NET Core/wwwroot/css/Site.css | 10 ++++ 6 files changed, 53 insertions(+), 66 deletions(-) delete mode 100644 ASP.NET Core/Controllers/SampleDataController.cs delete mode 100644 ASP.NET Core/Controllers/orig_HomeController.cs diff --git a/.gitignore b/.gitignore index ea5063c..4c4f909 100644 --- a/.gitignore +++ b/.gitignore @@ -307,4 +307,5 @@ TesterMetadata.xml */wwwroot/* !*/wwwroot/css/Site.css +!*/wwwroot/js/GroupSelectionBehavior.js *.DS_Store diff --git a/ASP.NET Core/Controllers/SampleDataController.cs b/ASP.NET Core/Controllers/SampleDataController.cs deleted file mode 100644 index d9357a4..0000000 --- a/ASP.NET Core/Controllers/SampleDataController.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Net.Http; -using ASP_NET_Core.Models; -using DevExtreme.AspNet.Data; -using DevExtreme.AspNet.Mvc; -using Microsoft.AspNetCore.Mvc; - -namespace ASP_NET_Core.Controllers; - -[Route("api/[controller]")] -public class SampleDataController: Controller { - - [HttpGet] - public object Get(DataSourceLoadOptions loadOptions) { - return DataSourceLoader.Load(SampleData.Orders, loadOptions); - } - -} diff --git a/ASP.NET Core/Controllers/orig_HomeController.cs b/ASP.NET Core/Controllers/orig_HomeController.cs deleted file mode 100644 index 90668d1..0000000 --- a/ASP.NET Core/Controllers/orig_HomeController.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.AspNetCore.Mvc; - -namespace ASP_NET_Core.Controllers -{ - public class HomeController : Controller - { - public IActionResult Index() - { - return View(); - } - - [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] - public IActionResult Error() { - return View(); - } - } -} diff --git a/ASP.NET Core/Views/Home/Index.cshtml b/ASP.NET Core/Views/Home/Index.cshtml index 672571d..9a4fb6c 100644 --- a/ASP.NET Core/Views/Home/Index.cshtml +++ b/ASP.NET Core/Views/Home/Index.cshtml @@ -1,29 +1,48 @@ @using ASP_NET_Core.Models -

Home

- -@(Html.DevExtreme().DataGrid() +@{ + string url = "https://js.devexpress.com/Demos/Mvc/api/DataGridWebApi"; +} + +@(Html.DevExtreme().DataGrid() + .OnInitialized("(e) => { helper.init(e.component); }") + .Selection(s => + s.Mode(SelectionMode.Multiple) + .Deferred(true) + .AllowSelectAll(true) + .ShowCheckBoxesMode(GridSelectionShowCheckBoxesMode.Always) + ) + .Height(800) + .Width(1200) .ShowBorders(true) - .DataSource(d => d.Mvc().Controller("SampleData").LoadAction("Get").Key("OrderID")) + .DataSource(d => d.RemoteController().LoadUrl(url + "/Orders").Key("OrderID")) .Columns(columns => { - columns.AddFor(m => m.OrderID); - columns.AddFor(m => m.OrderDate); - columns.AddFor(m => m.CustomerName); - columns.AddFor(m => m.ShipCountry); - columns.AddFor(m => m.ShipCity); + columns.Add().DataField("OrderID"); + columns.Add().DataField("CustomerID").Caption("Customer") + .Lookup(lk => lk + .ValueExpr("Value") + .DisplayExpr("Text") + .DataSource(d => d.RemoteController() + .LoadUrl(url + "/CustomersLookup") + .Key("Value")) + ); + columns.Add().DataField("OrderDate").DataType(GridColumnDataType.Date); + columns.Add().DataField("Freight"); + columns.Add().DataField("ShipCountry").GroupIndex(0); + columns.Add().DataField("ShipCity").GroupIndex(2); + columns.Add().DataField("ShipVia").GroupIndex(1) + .Lookup(lk => lk + .ValueExpr("Value") + .DisplayExpr("Text") + .DataSource(d => d.RemoteController() + .LoadUrl(url + "/ShippersLookup") + .Key("Value")) + ); }) - .Paging(p => p.PageSize(10)) - .FilterRow(f => f.Visible(true)) - .HeaderFilter(f => f.Visible(true)) .GroupPanel(p => p.Visible(true)) .Grouping(g => g.AutoExpandAll(false)) .RemoteOperations(true) - .Summary(s => s - .TotalItems(totalItems => { - totalItems.AddFor(m => m.ShipCity).SummaryType(SummaryType.Count); - }) - .GroupItems(groupItems => { - groupItems.Add().SummaryType(SummaryType.Count); - }) - ) + .CustomizeColumns("helper.customizeColumns") ) \ No newline at end of file diff --git a/ASP.NET Core/Views/Shared/_Layout.cshtml b/ASP.NET Core/Views/Shared/_Layout.cshtml index 0c3c2bc..028a3c4 100644 --- a/ASP.NET Core/Views/Shared/_Layout.cshtml +++ b/ASP.NET Core/Views/Shared/_Layout.cshtml @@ -9,14 +9,13 @@ ASP_NET_Core + - - @* Uncomment to use the HtmlEditor control *@ - @* *@ - + + diff --git a/ASP.NET Core/wwwroot/css/Site.css b/ASP.NET Core/wwwroot/css/Site.css index 242203b..8cc9278 100644 --- a/ASP.NET Core/wwwroot/css/Site.css +++ b/ASP.NET Core/wwwroot/css/Site.css @@ -5,3 +5,13 @@ body { margin: 8px; } + +.group-selection-check-box { + margin-right: 10px; +} + +.group-row-flex { + display: flex; + flex-direction: row; + align-items: center; +} From 7dadf1b0086b20580c1e69c84b4ac6e099038ee2 Mon Sep 17 00:00:00 2001 From: Artem Kurchenko Date: Sun, 5 Oct 2025 22:16:55 +0400 Subject: [PATCH 06/10] asp - add selection helper --- .../wwwroot/js/GroupSelectionBehavior.js | 137 ++++++++++++++++++ 1 file changed, 137 insertions(+) create mode 100644 ASP.NET Core/wwwroot/js/GroupSelectionBehavior.js diff --git a/ASP.NET Core/wwwroot/js/GroupSelectionBehavior.js b/ASP.NET Core/wwwroot/js/GroupSelectionBehavior.js new file mode 100644 index 0000000..de11529 --- /dev/null +++ b/ASP.NET Core/wwwroot/js/GroupSelectionBehavior.js @@ -0,0 +1,137 @@ +class GroupSelectionBehavior { + skipCheckBoxValueHandling = false; + rowKeysCache = {}; + cacheGroupRequests = true; + getSelectedKeysPromise; + + constructor() { + this.customizeColumns = this.customizeColumns.bind(this); + this.gridSelectionChanged = this.gridSelectionChanged.bind(this); + this.groupTemplate = this.groupTemplate.bind(this); + this.getGroupRowText = this.getGroupRowText.bind(this); + this.initCheckBox = this.initCheckBox.bind(this); + this.getSelectedKeys = this.getSelectedKeys.bind(this); + } + init(dataGrid) { + dataGrid.on("selectionChanged", this.gridSelectionChanged); + } + customizeColumns(columns) { + columns.forEach(col => { + col.groupCellTemplate = this.groupTemplate + }) + } + groupTemplate(cellElement, cellData) { + const flex = $("
").addClass("group-row-flex").appendTo(cellElement); + const checkBoxId = this.calcCheckBoxId(cellData.component.element().attr("id"), cellData.row.key); + const that = this; + const checkBox = $("
").attr("id", checkBoxId).addClass("group-selection-check-box").appendTo(flex).dxCheckBox({ + visible: false, + onValueChanged: function(valueArgs) { + if (that.skipCheckBoxValueHandling) return; + const childRowKeys = valueArgs.component.option("childRowKeys"); + if (valueArgs.value) + cellData.component.selectRows(childRowKeys, true); + else + cellData.component.deselectRows(childRowKeys); + } + }).dxCheckBox("instance"); + const loadIndicator = $("
").appendTo(flex).addClass("group-selection-check-box").dxLoadIndicator({ + height: 22, + width: 22 + }).dxLoadIndicator("instance"); + + this.getSelectedKeys(cellData.component).then((selectedKeys) => { + if (this.cacheGroupRequests && this.rowKeysCache[checkBoxId]) { + this.initCheckBox(checkBox, loadIndicator, checkBoxId, selectedKeys); + } else { + const groupedColumns = cellData.component.getVisibleColumns().filter(c => c.groupIndex >= 0).sort((a, b) => { + return a.groupIndex > b.groupIndex ? 1 : -1; + }); + const filter = []; + cellData.key.forEach((key, i) => { + filter.push([groupedColumns[i].dataField, "=", key]); + }); + const loadOptions = { + filter + }; + const store = cellData.component.getDataSource().store(); + store.load(loadOptions).then((data) => { + const keys = data.map(d => cellData.component.keyOf(d)); + this.rowKeysCache[checkBoxId] = keys; + this.initCheckBox(checkBox, loadIndicator, checkBoxId, selectedKeys); + }); + } + }); + flex.append($("").text(this.getGroupRowText(cellData))); + } + getGroupRowText(cellData) { + let text = `${cellData.column.caption}: ${cellData.displayValue}`; + if (cellData.groupContinuedMessage) text += ` (${cellData.groupContinuedMessage})`; + if (cellData.groupContinuesMessage) text += ` (${cellData.groupContinuesMessage})`; + return text; + } + initCheckBox(checkBox, loadIndicator, checkBoxId, selectedKeys) { + this.skipCheckBoxValueHandling = true; + checkBox.option({ + visible: true, + value: this.areKeysSelected(this.rowKeysCache[checkBoxId], selectedKeys), + childRowKeys: this.rowKeysCache[checkBoxId] + }); + loadIndicator.option("visible", false); + this.skipCheckBoxValueHandling = false; + } + getSelectedKeys(grid) { + if (grid.option("selection.deferred")) { + if (!this.getSelectedKeysPromise) { + this.getSelectedKeysPromise = new Promise(resolve => { + grid.getSelectedRowKeys().then(selectedKeys => { + resolve(selectedKeys); + }); + }); + } + return this.getSelectedKeysPromise; + } else { + return new Promise(resolve => resolve(grid.getSelectedRowKeys())); + } + } + repaintGroupRowTree(grid, groupRows) { + const topGroupRow = groupRows.filter(r => r.isExpanded).reduce((acc, curr) => { + return (!acc || acc.key.length > curr.key.length) ? curr : acc; + }, null); + if (topGroupRow) { + const affectedGroupRows = groupRows.filter(g => g.key[0] == topGroupRow.key[0]); + grid.repaintRows(affectedGroupRows.map(g => g.rowIndex)); + } + } + gridSelectionChanged(e) { + const groupRows = e.component.getVisibleRows().filter(r => r.rowType === "group"); + if (e.component.option("selection.deferred")) { + this.getSelectedKeysPromise = null; + if (e.component.option("selectionFilter").length === 0) { + e.component.repaintRows(groupRows.map(g => g.rowIndex)); + } else { + this.repaintGroupRowTree(e.component, groupRows); + } + } else { + if (e.selectedRowKeys.length >= e.component.totalCount() || e.currentDeselectedRowKeys.length >= e.component.totalCount()) { + e.component.repaintRows(groupRows.map(g => g.rowIndex)); + } else { + this.repaintGroupRowTree(e.component, groupRows); + } + } + } + calcCheckBoxId(gridId, groupRowKey) { + return gridId + "groupCheckBox" + groupRowKey.join(""); + } + areKeysSelected(keysToCheck, selectedKeys) { + if (selectedKeys.length == 0) + return false; + const intersectionCount = keysToCheck.filter(k => selectedKeys.indexOf(k) >= 0).length; + if (intersectionCount === 0) + return false; + else if (intersectionCount === keysToCheck.length) + return true; + else + return undefined; + } +} From 39f8f42c4e03ca63f08439365221231491401ce4 Mon Sep 17 00:00:00 2001 From: Artem Kurchenko Date: Sun, 5 Oct 2025 22:19:35 +0400 Subject: [PATCH 07/10] remove orig files --- ASP.NET Core/Views/Home/orig_Index.cshtml | 41 - ASP.NET Core/Views/Shared/orig__Layout.cshtml | 29 - .../orig_group-row.component.css | 13 - .../orig_group-row.component.html | 16 - .../orig_group-row.component.ts | 52 - .../orig_GroupRowSelectionHelper.ts | 136 - .../GroupRowSelection/orig_group-text-pipe.ts | 14 - Angular/src/app/orig_app.component.html | 51 - Angular/src/app/orig_app.component.ts | 63 - Angular/src/app/orig_app.module.ts | 27 - Angular/src/app/orig_localdata.ts | 15772 ---------------- Angular/src/orig_index.html | 13 - Angular/src/orig_main.ts | 7 - React/orig_index.html | 13 - .../orig_GroupRowComponent.css | 13 - .../orig_GroupRowComponent.tsx | 82 - .../orig_GroupRowSelectionHelper.tsx | 136 - React/src/orig_App.css | 4 - React/src/orig_App.tsx | 112 - React/src/orig_index.css | 13 - React/src/orig_main.tsx | 10 - Vue/orig_index.html | 13 - Vue/src/assets/orig_main.css | 8 - .../orig_GroupRowComponent.vue | 78 - .../orig_GroupRowSelectionHelper.ts | 149 - .../components/__tests__/orig_Content.spec.ts | 11 - Vue/src/components/orig_HomeContent.vue | 109 - Vue/src/orig_App.vue | 9 - Vue/src/orig_main.ts | 11 - Vue/src/orig_types.ts | 4 - jQuery/css/orig_styles.css | 9 - jQuery/orig_GroupSelectionBehavior.js | 147 - jQuery/orig_data.js | 84 - jQuery/orig_index.html | 20 - jQuery/orig_index.js | 72 - jQuery/src/orig_index.css | 4 - jQuery/src/orig_index.html | 21 - jQuery/src/orig_index.js | 10 - 38 files changed, 17376 deletions(-) delete mode 100644 ASP.NET Core/Views/Home/orig_Index.cshtml delete mode 100644 ASP.NET Core/Views/Shared/orig__Layout.cshtml delete mode 100644 Angular/src/app/GroupRowSelection/group-row-component/orig_group-row.component.css delete mode 100644 Angular/src/app/GroupRowSelection/group-row-component/orig_group-row.component.html delete mode 100644 Angular/src/app/GroupRowSelection/group-row-component/orig_group-row.component.ts delete mode 100644 Angular/src/app/GroupRowSelection/orig_GroupRowSelectionHelper.ts delete mode 100644 Angular/src/app/GroupRowSelection/orig_group-text-pipe.ts delete mode 100644 Angular/src/app/orig_app.component.html delete mode 100644 Angular/src/app/orig_app.component.ts delete mode 100644 Angular/src/app/orig_app.module.ts delete mode 100644 Angular/src/app/orig_localdata.ts delete mode 100644 Angular/src/orig_index.html delete mode 100644 Angular/src/orig_main.ts delete mode 100644 React/orig_index.html delete mode 100644 React/src/GroupRowSelection/orig_GroupRowComponent.css delete mode 100644 React/src/GroupRowSelection/orig_GroupRowComponent.tsx delete mode 100644 React/src/GroupRowSelection/orig_GroupRowSelectionHelper.tsx delete mode 100644 React/src/orig_App.css delete mode 100644 React/src/orig_App.tsx delete mode 100644 React/src/orig_index.css delete mode 100644 React/src/orig_main.tsx delete mode 100644 Vue/orig_index.html delete mode 100644 Vue/src/assets/orig_main.css delete mode 100644 Vue/src/components/GroupRowSelection/orig_GroupRowComponent.vue delete mode 100644 Vue/src/components/GroupRowSelection/orig_GroupRowSelectionHelper.ts delete mode 100644 Vue/src/components/__tests__/orig_Content.spec.ts delete mode 100644 Vue/src/components/orig_HomeContent.vue delete mode 100644 Vue/src/orig_App.vue delete mode 100644 Vue/src/orig_main.ts delete mode 100644 Vue/src/orig_types.ts delete mode 100644 jQuery/css/orig_styles.css delete mode 100644 jQuery/orig_GroupSelectionBehavior.js delete mode 100644 jQuery/orig_data.js delete mode 100644 jQuery/orig_index.html delete mode 100644 jQuery/orig_index.js delete mode 100644 jQuery/src/orig_index.css delete mode 100644 jQuery/src/orig_index.html delete mode 100644 jQuery/src/orig_index.js diff --git a/ASP.NET Core/Views/Home/orig_Index.cshtml b/ASP.NET Core/Views/Home/orig_Index.cshtml deleted file mode 100644 index d775c00..0000000 --- a/ASP.NET Core/Views/Home/orig_Index.cshtml +++ /dev/null @@ -1,41 +0,0 @@ -@using ASP_NET_Core.Models - -@{ - string url = "https://js.devexpress.com/Demos/Mvc/api/DataGridWebApi"; -} - -@(Html.DevExtreme().DataGrid() - .OnInitialized("(e) => { new GroupSelectionBehavior(e.component); }") - .Selection(s => s.Mode(SelectionMode.Multiple).AllowSelectAll(true).ShowCheckBoxesMode(GridSelectionShowCheckBoxesMode.Always)) - .SelectedRowKeys(new JS("[10521]")) - .Height(800) - .Width(1200) - .ShowBorders(true) - .DataSource(d => d.RemoteController().LoadUrl(url + "/Orders").Key("OrderID")) - .Columns(columns => { - columns.Add().DataField("OrderID"); - columns.Add().DataField("CustomerID").Caption("Customer") - .Lookup(lk => lk - .ValueExpr("Value") - .DisplayExpr("Text") - .DataSource(d => d.RemoteController() - .LoadUrl(url + "/CustomersLookup") - .Key("Value")) - ); - columns.Add().DataField("OrderDate").DataType(GridColumnDataType.Date); - columns.Add().DataField("Freight"); - columns.Add().DataField("ShipCountry").GroupIndex(0); - columns.Add().DataField("ShipCity").GroupIndex(2); - columns.Add().DataField("ShipVia").GroupIndex(1) - .Lookup(lk => lk - .ValueExpr("Value") - .DisplayExpr("Text") - .DataSource(d => d.RemoteController() - .LoadUrl(url + "/ShippersLookup") - .Key("Value")) - ); - }) - .GroupPanel(p => p.Visible(true)) - .Grouping(g => g.AutoExpandAll(false)) - .RemoteOperations(true) -) \ No newline at end of file diff --git a/ASP.NET Core/Views/Shared/orig__Layout.cshtml b/ASP.NET Core/Views/Shared/orig__Layout.cshtml deleted file mode 100644 index 73a5d0f..0000000 --- a/ASP.NET Core/Views/Shared/orig__Layout.cshtml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - ASP_NET_Core - - - @* Uncomment to use the HtmlEditor control *@ - @* *@ - - - - - - - - -
- @RenderBody() -
- - - \ No newline at end of file diff --git a/Angular/src/app/GroupRowSelection/group-row-component/orig_group-row.component.css b/Angular/src/app/GroupRowSelection/group-row-component/orig_group-row.component.css deleted file mode 100644 index 2bd73f4..0000000 --- a/Angular/src/app/GroupRowSelection/group-row-component/orig_group-row.component.css +++ /dev/null @@ -1,13 +0,0 @@ -.group-selection-front { - margin-right: 10px; -} - -.group-selection-front .dx-loadindicator { - display: block; -} - -.group-row-flex { - display: flex; - flex-direction: row; - align-items: center; -} diff --git a/Angular/src/app/GroupRowSelection/group-row-component/orig_group-row.component.html b/Angular/src/app/GroupRowSelection/group-row-component/orig_group-row.component.html deleted file mode 100644 index 6fdbac6..0000000 --- a/Angular/src/app/GroupRowSelection/group-row-component/orig_group-row.component.html +++ /dev/null @@ -1,16 +0,0 @@ -
-
- - -
- {{ groupCellData | groupText }} -
diff --git a/Angular/src/app/GroupRowSelection/group-row-component/orig_group-row.component.ts b/Angular/src/app/GroupRowSelection/group-row-component/orig_group-row.component.ts deleted file mode 100644 index d16d579..0000000 --- a/Angular/src/app/GroupRowSelection/group-row-component/orig_group-row.component.ts +++ /dev/null @@ -1,52 +0,0 @@ -import { - Component, Input, Output, EventEmitter, AfterViewInit, -} from '@angular/core'; -import { DxCheckBoxTypes } from 'devextreme-angular/ui/check-box'; -import { DxDataGridTypes } from 'devextreme-angular/ui/data-grid'; - -@Component({ - selector: 'group-row-selectable', - templateUrl: './group-row.component.html', - styleUrls: ['./group-row.component.css'], -}) -export class GroupRowComponent implements AfterViewInit { - @Input() groupCellData!: DxDataGridTypes.ColumnGroupCellTemplateData; - - @Input() childRowKeys: any[] | undefined = []; - - @Output() onInitialized = new EventEmitter(); - - isLoading = true; - - checked: boolean | undefined = false; - - childKeys!: any[]; - - iconSize = 18; - - constructor() { - this.checkBoxValueChanged = this.checkBoxValueChanged.bind(this); - } - - ngAfterViewInit(): void { - this.onInitialized.emit({ key: this.groupCellData.row.key, component: this }); - } - - checkBoxValueChanged(e: DxCheckBoxTypes.ValueChangedEvent): void { - this.checked = e.value; - if (e.value) { - this.groupCellData.component.selectRows(this.childRowKeys ?? [], true).catch(() => {}); - } else { - this.groupCellData.component.deselectRows(this.childRowKeys ?? []).catch(() => {}); - } - } - - public setCheckedState(value: boolean | undefined): void { - this.checked = value; - this.isLoading = false; - } -} -export interface IGroupRowReadyParameter { - key: string[]; - component: GroupRowComponent; -} diff --git a/Angular/src/app/GroupRowSelection/orig_GroupRowSelectionHelper.ts b/Angular/src/app/GroupRowSelection/orig_GroupRowSelectionHelper.ts deleted file mode 100644 index 445c06b..0000000 --- a/Angular/src/app/GroupRowSelection/orig_GroupRowSelectionHelper.ts +++ /dev/null @@ -1,136 +0,0 @@ -import dxDataGrid from 'devextreme/ui/data_grid'; -import { DxDataGridTypes } from 'devextreme-angular/ui/data-grid'; -import { LoadOptions } from 'devextreme/data'; -import { isItemsArray } from 'devextreme/common/data/custom-store'; -import { IGroupRowReadyParameter } from './group-row-component/group-row.component'; - -export default class GroupSelectionHelper { - groupedColumns: DxDataGridTypes.Column[]; - - grid: dxDataGrid; - - getSelectedKeysPromise: Promise | null; - - selectedKeys: any[] = []; - - groupChildKeys: Record = {}; - - constructor(grid: dxDataGrid) { - this.grid = grid; - this.groupedColumns = this.collectGroupedColumns(grid); - this.getSelectedKeysPromise = this.getSelectedKeys(grid); - this.getSelectedKeysPromise.then((keys: any[]) => { - this.selectedKeys = keys; - }).catch(() => {}); - const defaultCustomizeCallback: Function | undefined = grid.option('customizeColumns'); - grid.option('customizeColumns', (columns: DxDataGridTypes.Column[]) => { - columns.forEach((column: DxDataGridTypes.Column) => { - column.groupCellTemplate = 'groupCellTemplate'; - }); - if (defaultCustomizeCallback) { defaultCustomizeCallback(columns); } - }); - const defaultSelectionHandler: Function | undefined = grid.option('onSelectionChanged'); - grid.option('onSelectionChanged', (e: DxDataGridTypes.SelectionChangedEvent) => { - this.selectionChanged(e); - if (defaultSelectionHandler) { defaultSelectionHandler(e); } - }); - const defaultOptionChangedHandler: Function | undefined = grid.option('onOptionChanged'); - grid.option('onOptionChanged', (e: DxDataGridTypes.OptionChangedEvent) => { - if (e.fullName.includes('groupIndex')) { - this.groupedColumns = this.collectGroupedColumns(grid); - } - if (defaultOptionChangedHandler) { defaultOptionChangedHandler(e); } - }); - } - - groupRowInit(arg: IGroupRowReadyParameter): void { - const checkBoxId = this.calcCheckBoxId(this.grid, arg.key); - if (!this.groupChildKeys[checkBoxId]) { - const filter: any[] = []; - arg.key.forEach((key, i) => { - filter.push([this.groupedColumns[i].dataField, '=', key]); - }); - const loadOptions: LoadOptions = { - filter, - }; - const store = this.grid.getDataSource().store(); - store.load(loadOptions).then((data) => { - if (isItemsArray(data)) { - // eslint-disable-next-line @typescript-eslint/no-unsafe-return - this.groupChildKeys[checkBoxId] = data.map((d) => this.grid.keyOf(d)); - this.getSelectedKeys(this.grid).then((selectedKeys) => { - const checkedState: boolean | undefined = this.areKeysSelected(this.groupChildKeys[checkBoxId], selectedKeys); - arg.component.setCheckedState(checkedState); - }).catch(() => {}); - } - }).catch(() => {}); - } else { - this.getSelectedKeys(this.grid).then((selectedKeys) => { - const checkedState: boolean | undefined = this.areKeysSelected(this.groupChildKeys[checkBoxId], selectedKeys); - arg.component.setCheckedState(checkedState); - }).catch(() => {}); - } - } - - selectionChanged(e: DxDataGridTypes.SelectionChangedEvent): void { - const groupRows: DxDataGridTypes.Row[] = e.component.getVisibleRows().filter((r) => r.rowType === 'group'); - this.getSelectedKeysPromise = null; - if (e.component.option('selection.deferred')) { - const selectionFilter = e.component.option('selectionFilter'); - if (selectionFilter && selectionFilter.length >= 0) { - this.repaintGroupRowTree(e.component, groupRows); - } else { - e.component.repaintRows(groupRows.map((g) => g.rowIndex)); - } - } else if (e.selectedRowKeys.length >= e.component.totalCount() || e.currentDeselectedRowKeys.length >= e.component.totalCount()) { - e.component.repaintRows(groupRows.map((g) => g.rowIndex)); - } else { - this.repaintGroupRowTree(e.component, groupRows); - } - } - - getSelectedKeys(grid: dxDataGrid): Promise { - if (grid.option('selection.deferred')) { - if (!this.getSelectedKeysPromise) { - this.getSelectedKeysPromise = grid.getSelectedRowKeys(); - } - return this.getSelectedKeysPromise; - } - return Promise.resolve(grid.getSelectedRowKeys()); - } - - repaintGroupRowTree(grid: dxDataGrid, groupRows: DxDataGridTypes.Row[]): void { - const topGroupRow: DxDataGridTypes.Row | null = groupRows.filter((r) => r.isExpanded).reduce((acc: DxDataGridTypes.Row | null, curr) => (!acc || acc.key.length > curr.key.length ? curr : acc), null); - if (topGroupRow) { - const affectedGroupRows = groupRows.filter((g) => g.key[0] == topGroupRow.key[0]); - grid.repaintRows(affectedGroupRows.map((g) => g.rowIndex)); - } - } - - areKeysSelected(keysToCheck: any[], selectedKeys: any[]): boolean | undefined { - if (selectedKeys.length == 0) { return false; } - const intersectionCount = keysToCheck.filter((k) => selectedKeys.includes(k)).length; - if (intersectionCount === 0) { return false; } - if (intersectionCount === keysToCheck.length) { return true; } - return undefined; - } - - getChildRowKeys(grid: dxDataGrid, groupRowKey: string[]): any[] { - // eslint-disable-next-line @typescript-eslint/no-unsafe-return - return this.groupChildKeys[this.calcCheckBoxId(grid, groupRowKey) as any]; - } - - calcCheckBoxId(grid: dxDataGrid, groupRowKey: string[]): string { - const gridId: string = grid.element().id; - return `${gridId}groupCheckBox${groupRowKey.join('')}`; - } - - collectGroupedColumns(grid: dxDataGrid): DxDataGridTypes.Column[] { - const allColumns: DxDataGridTypes.Column[] = grid.getVisibleColumns(); - return allColumns.filter((c: DxDataGridTypes.Column) => c.groupIndex != undefined && c.groupIndex >= 0) - .sort((a, b) => { - if (!a.groupIndex || !b.groupIndex) return 0; - return a.groupIndex > b.groupIndex ? 1 : -1; - }); - } -} diff --git a/Angular/src/app/GroupRowSelection/orig_group-text-pipe.ts b/Angular/src/app/GroupRowSelection/orig_group-text-pipe.ts deleted file mode 100644 index b368cbf..0000000 --- a/Angular/src/app/GroupRowSelection/orig_group-text-pipe.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { Pipe, PipeTransform } from '@angular/core'; -import { DxDataGridTypes } from 'devextreme-angular/ui/data-grid'; - -@Pipe({ - name: 'groupText', -}) -export class GroupTextPipe implements PipeTransform { - transform(value: DxDataGridTypes.ColumnGroupCellTemplateData): string { - let text = `${value.column.caption}: ${value.displayValue}`; - if (value.groupContinuedMessage) text += ` (${value.groupContinuedMessage})`; - if (value.groupContinuesMessage) text += ` (${value.groupContinuesMessage})`; - return text; - } -} diff --git a/Angular/src/app/orig_app.component.html b/Angular/src/app/orig_app.component.html deleted file mode 100644 index 4835e1f..0000000 --- a/Angular/src/app/orig_app.component.html +++ /dev/null @@ -1,51 +0,0 @@ -
- -
- - -
- - - - - - - - - - - - - - -
-
diff --git a/Angular/src/app/orig_app.component.ts b/Angular/src/app/orig_app.component.ts deleted file mode 100644 index 0d9ebb4..0000000 --- a/Angular/src/app/orig_app.component.ts +++ /dev/null @@ -1,63 +0,0 @@ -import { Component, ViewChild } from '@angular/core'; -import * as AspNetData from 'devextreme-aspnet-data-nojquery'; -import { DxDataGridComponent } from 'devextreme-angular/ui/data-grid'; -import { IGroupRowReadyParameter } from './GroupRowSelection/group-row-component/group-row.component'; -import GroupSelectionHelper from './GroupRowSelection/GroupRowSelectionHelper'; -import { localData } from './localdata'; - -@Component({ - selector: 'app-root', - templateUrl: './app.component.html', - styleUrls: ['./app.component.scss'], -}) -export class AppComponent { - dataSource: AspNetData.CustomStore; - - customersData: AspNetData.CustomStore; - - shippersData: AspNetData.CustomStore; - - @ViewChild(DxDataGridComponent) grid!: DxDataGridComponent; - - selectedRowKeys: any[] = [10521]; - - selectionFilter: any[] = ['OrderID', '=', 10521]; - - helper: GroupSelectionHelper | undefined; - - localData: any[]; - - constructor() { - const url = 'https://js.devexpress.com/Demos/Mvc/api/DataGridWebApi'; - this.localData = localData; - this.dataSource = AspNetData.createStore({ - key: 'OrderID', - loadUrl: `${url}/Orders`, - onBeforeSend(method, ajaxOptions) { - ajaxOptions.xhrFields = { withCredentials: true }; - }, - }); - this.customersData = AspNetData.createStore({ - key: 'Value', - loadUrl: `${url}/CustomersLookup`, - onBeforeSend(method, ajaxOptions) { - ajaxOptions.xhrFields = { withCredentials: true }; - }, - }); - this.shippersData = AspNetData.createStore({ - key: 'Value', - loadUrl: `${url}/ShippersLookup`, - onBeforeSend(method, ajaxOptions) { - ajaxOptions.xhrFields = { withCredentials: true }; - }, - }); - } - - ngAfterViewInit(): void { - this.helper = new GroupSelectionHelper(this.grid.instance); - } - - groupRowInit(arg: IGroupRowReadyParameter): void { - this.helper?.groupRowInit(arg); - } -} diff --git a/Angular/src/app/orig_app.module.ts b/Angular/src/app/orig_app.module.ts deleted file mode 100644 index e74be29..0000000 --- a/Angular/src/app/orig_app.module.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { NgModule } from '@angular/core'; -import { BrowserModule } from '@angular/platform-browser'; -import { DxDataGridModule } from 'devextreme-angular/ui/data-grid'; -import { DxLoadIndicatorModule } from 'devextreme-angular/ui/load-indicator'; -import { DxCheckBoxModule } from 'devextreme-angular/ui/check-box'; -import { AppRoutingModule } from './app-routing.module'; -import { AppComponent } from './app.component'; -import { GroupTextPipe } from './GroupRowSelection/group-text-pipe'; -import { GroupRowComponent } from './GroupRowSelection/group-row-component/group-row.component'; - -@NgModule({ - declarations: [ - AppComponent, - GroupTextPipe, - GroupRowComponent, - ], - imports: [ - BrowserModule, - AppRoutingModule, - DxDataGridModule, - DxLoadIndicatorModule, - DxCheckBoxModule, - ], - providers: [], - bootstrap: [AppComponent], -}) -export class AppModule { } diff --git a/Angular/src/app/orig_localdata.ts b/Angular/src/app/orig_localdata.ts deleted file mode 100644 index 865edda..0000000 --- a/Angular/src/app/orig_localdata.ts +++ /dev/null @@ -1,15772 +0,0 @@ -export const localData: any[] = [ - { - OrderID: 10248, - CustomerID: 'VINET', - EmployeeID: 5, - OrderDate: '2018-07-04T00:00:00', - RequiredDate: '2018-08-01T00:00:00', - ShippedDate: '2018-07-16T00:00:00', - ShipVia: 3, - Freight: 32.3800, - ShipName: 'Vins et alcools Chevalier', - ShipAddress: '59 rue de l\'Abbaye', - ShipCity: 'Reims', - ShipRegion: null, - ShipPostalCode: '51100', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10249, - CustomerID: 'TOMSP', - EmployeeID: 6, - OrderDate: '2018-07-05T00:00:00', - RequiredDate: '2018-08-16T00:00:00', - ShippedDate: '2018-07-10T00:00:00', - ShipVia: 1, - Freight: 11.6100, - ShipName: 'Toms Spezialitäten', - ShipAddress: 'Luisenstr. 48', - ShipCity: 'Münster', - ShipRegion: null, - ShipPostalCode: '44087', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10250, - CustomerID: 'HANAR', - EmployeeID: 4, - OrderDate: '2018-07-08T00:00:00', - RequiredDate: '2018-08-05T00:00:00', - ShippedDate: '2018-07-12T00:00:00', - ShipVia: 2, - Freight: 65.8300, - ShipName: 'Hanari Carnes', - ShipAddress: 'Rua do Paço, 67', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '05454-876', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10251, - CustomerID: 'VICTE', - EmployeeID: 3, - OrderDate: '2018-07-08T00:00:00', - RequiredDate: '2018-08-05T00:00:00', - ShippedDate: '2018-07-15T00:00:00', - ShipVia: 1, - Freight: 41.3400, - ShipName: 'Victuailles en stock', - ShipAddress: '2, rue du Commerce', - ShipCity: 'Lyon', - ShipRegion: null, - ShipPostalCode: '69004', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10252, - CustomerID: 'SUPRD', - EmployeeID: 4, - OrderDate: '2018-07-09T00:00:00', - RequiredDate: '2018-08-06T00:00:00', - ShippedDate: '2018-07-11T00:00:00', - ShipVia: 2, - Freight: 51.3000, - ShipName: 'Suprêmes délices', - ShipAddress: 'Boulevard Tirou, 255', - ShipCity: 'Charleroi', - ShipRegion: null, - ShipPostalCode: 'B-6000', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10253, - CustomerID: 'HANAR', - EmployeeID: 3, - OrderDate: '2018-07-10T00:00:00', - RequiredDate: '2018-07-24T00:00:00', - ShippedDate: '2018-07-16T00:00:00', - ShipVia: 2, - Freight: 58.1700, - ShipName: 'Hanari Carnes', - ShipAddress: 'Rua do Paço, 67', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '05454-876', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10254, - CustomerID: 'CHOPS', - EmployeeID: 5, - OrderDate: '2018-07-11T00:00:00', - RequiredDate: '2018-08-08T00:00:00', - ShippedDate: '2018-07-23T00:00:00', - ShipVia: 2, - Freight: 22.9800, - ShipName: 'Chop-suey Chinese', - ShipAddress: 'Hauptstr. 31', - ShipCity: 'Bern', - ShipRegion: null, - ShipPostalCode: '3012', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10255, - CustomerID: 'RICSU', - EmployeeID: 9, - OrderDate: '2018-07-12T00:00:00', - RequiredDate: '2018-08-09T00:00:00', - ShippedDate: '2018-07-15T00:00:00', - ShipVia: 3, - Freight: 148.3300, - ShipName: 'Richter Supermarkt', - ShipAddress: 'Starenweg 5', - ShipCity: 'Genève', - ShipRegion: null, - ShipPostalCode: '1204', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10256, - CustomerID: 'WELLI', - EmployeeID: 3, - OrderDate: '2018-07-15T00:00:00', - RequiredDate: '2018-08-12T00:00:00', - ShippedDate: '2018-07-17T00:00:00', - ShipVia: 2, - Freight: 13.9700, - ShipName: 'Wellington Importadora', - ShipAddress: 'Rua do Mercado, 12', - ShipCity: 'Resende', - ShipRegion: 'SP', - ShipPostalCode: '08737-363', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10257, - CustomerID: 'HILAA', - EmployeeID: 4, - OrderDate: '2018-07-16T00:00:00', - RequiredDate: '2018-08-13T00:00:00', - ShippedDate: '2018-07-22T00:00:00', - ShipVia: 3, - Freight: 81.9100, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10258, - CustomerID: 'ERNSH', - EmployeeID: 1, - OrderDate: '2018-07-17T00:00:00', - RequiredDate: '2018-08-14T00:00:00', - ShippedDate: '2018-07-23T00:00:00', - ShipVia: 1, - Freight: 140.5100, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10259, - CustomerID: 'CENTC', - EmployeeID: 4, - OrderDate: '2018-07-18T00:00:00', - RequiredDate: '2018-08-15T00:00:00', - ShippedDate: '2018-07-25T00:00:00', - ShipVia: 3, - Freight: 3.2500, - ShipName: 'Centro comercial Moctezuma', - ShipAddress: 'Sierras de Granada 9993', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05022', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10260, - CustomerID: 'OTTIK', - EmployeeID: 4, - OrderDate: '2018-07-19T00:00:00', - RequiredDate: '2018-08-16T00:00:00', - ShippedDate: '2018-07-29T00:00:00', - ShipVia: 1, - Freight: 55.0900, - ShipName: 'Ottilies Käseladen', - ShipAddress: 'Mehrheimerstr. 369', - ShipCity: 'Köln', - ShipRegion: null, - ShipPostalCode: '50739', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10261, - CustomerID: 'QUEDE', - EmployeeID: 4, - OrderDate: '2018-07-19T00:00:00', - RequiredDate: '2018-08-16T00:00:00', - ShippedDate: '2018-07-30T00:00:00', - ShipVia: 2, - Freight: 3.0500, - ShipName: 'Que Delícia', - ShipAddress: 'Rua da Panificadora, 12', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-673', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10262, - CustomerID: 'RATTC', - EmployeeID: 8, - OrderDate: '2018-07-22T00:00:00', - RequiredDate: '2018-08-19T00:00:00', - ShippedDate: '2018-07-25T00:00:00', - ShipVia: 3, - Freight: 48.2900, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10263, - CustomerID: 'ERNSH', - EmployeeID: 9, - OrderDate: '2018-07-23T00:00:00', - RequiredDate: '2018-08-20T00:00:00', - ShippedDate: '2018-07-31T00:00:00', - ShipVia: 3, - Freight: 146.0600, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10264, - CustomerID: 'FOLKO', - EmployeeID: 6, - OrderDate: '2018-07-24T00:00:00', - RequiredDate: '2018-08-21T00:00:00', - ShippedDate: '2018-08-23T00:00:00', - ShipVia: 3, - Freight: 3.6700, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10265, - CustomerID: 'BLONP', - EmployeeID: 2, - OrderDate: '2018-07-25T00:00:00', - RequiredDate: '2018-08-22T00:00:00', - ShippedDate: '2018-08-12T00:00:00', - ShipVia: 1, - Freight: 55.2800, - ShipName: 'Blondel père et fils', - ShipAddress: '24, place Kléber', - ShipCity: 'Strasbourg', - ShipRegion: null, - ShipPostalCode: '67000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10266, - CustomerID: 'WARTH', - EmployeeID: 3, - OrderDate: '2018-07-26T00:00:00', - RequiredDate: '2018-09-06T00:00:00', - ShippedDate: '2018-07-31T00:00:00', - ShipVia: 3, - Freight: 25.7300, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10267, - CustomerID: 'FRANK', - EmployeeID: 4, - OrderDate: '2018-07-29T00:00:00', - RequiredDate: '2018-08-26T00:00:00', - ShippedDate: '2018-08-06T00:00:00', - ShipVia: 1, - Freight: 208.5800, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10268, - CustomerID: 'GROSR', - EmployeeID: 8, - OrderDate: '2018-07-30T00:00:00', - RequiredDate: '2018-08-27T00:00:00', - ShippedDate: '2018-08-02T00:00:00', - ShipVia: 3, - Freight: 66.2900, - ShipName: 'GROSELLA-Restaurante', - ShipAddress: '5ª Ave. Los Palos Grandes', - ShipCity: 'Caracas', - ShipRegion: 'DF', - ShipPostalCode: '1081', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10269, - CustomerID: 'WHITC', - EmployeeID: 5, - OrderDate: '2018-07-31T00:00:00', - RequiredDate: '2018-08-14T00:00:00', - ShippedDate: '2018-08-09T00:00:00', - ShipVia: 1, - Freight: 4.5600, - ShipName: 'White Clover Markets', - ShipAddress: '1029 - 12th Ave. S.', - ShipCity: 'Seattle', - ShipRegion: 'WA', - ShipPostalCode: '98124', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10270, - CustomerID: 'WARTH', - EmployeeID: 1, - OrderDate: '2018-08-01T00:00:00', - RequiredDate: '2018-08-29T00:00:00', - ShippedDate: '2018-08-02T00:00:00', - ShipVia: 1, - Freight: 136.5400, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10271, - CustomerID: 'SPLIR', - EmployeeID: 6, - OrderDate: '2018-08-01T00:00:00', - RequiredDate: '2018-08-29T00:00:00', - ShippedDate: '2018-08-30T00:00:00', - ShipVia: 2, - Freight: 4.5400, - ShipName: 'Split Rail Beer & Ale', - ShipAddress: 'P.O. Box 555', - ShipCity: 'Lander', - ShipRegion: 'WY', - ShipPostalCode: '82520', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10272, - CustomerID: 'RATTC', - EmployeeID: 6, - OrderDate: '2018-08-02T00:00:00', - RequiredDate: '2018-08-30T00:00:00', - ShippedDate: '2018-08-06T00:00:00', - ShipVia: 2, - Freight: 98.0300, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10273, - CustomerID: 'QUICK', - EmployeeID: 3, - OrderDate: '2018-08-05T00:00:00', - RequiredDate: '2018-09-02T00:00:00', - ShippedDate: '2018-08-12T00:00:00', - ShipVia: 3, - Freight: 76.0700, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10274, - CustomerID: 'VINET', - EmployeeID: 6, - OrderDate: '2018-08-06T00:00:00', - RequiredDate: '2018-09-03T00:00:00', - ShippedDate: '2018-08-16T00:00:00', - ShipVia: 1, - Freight: 6.0100, - ShipName: 'Vins et alcools Chevalier', - ShipAddress: '59 rue de l\'Abbaye', - ShipCity: 'Reims', - ShipRegion: null, - ShipPostalCode: '51100', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10275, - CustomerID: 'MAGAA', - EmployeeID: 1, - OrderDate: '2018-08-07T00:00:00', - RequiredDate: '2018-09-04T00:00:00', - ShippedDate: '2018-08-09T00:00:00', - ShipVia: 1, - Freight: 26.9300, - ShipName: 'Magazzini Alimentari Riuniti', - ShipAddress: 'Via Ludovico il Moro 22', - ShipCity: 'Bergamo', - ShipRegion: null, - ShipPostalCode: '24100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10276, - CustomerID: 'TORTU', - EmployeeID: 8, - OrderDate: '2018-08-08T00:00:00', - RequiredDate: '2018-08-22T00:00:00', - ShippedDate: '2018-08-14T00:00:00', - ShipVia: 3, - Freight: 13.8400, - ShipName: 'Tortuga Restaurante', - ShipAddress: 'Avda. Azteca 123', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10277, - CustomerID: 'MORGK', - EmployeeID: 2, - OrderDate: '2018-08-09T00:00:00', - RequiredDate: '2018-09-06T00:00:00', - ShippedDate: '2018-08-13T00:00:00', - ShipVia: 3, - Freight: 125.7700, - ShipName: 'Morgenstern Gesundkost', - ShipAddress: 'Heerstr. 22', - ShipCity: 'Leipzig', - ShipRegion: null, - ShipPostalCode: '04179', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10278, - CustomerID: 'BERGS', - EmployeeID: 8, - OrderDate: '2018-08-12T00:00:00', - RequiredDate: '2018-09-09T00:00:00', - ShippedDate: '2018-08-16T00:00:00', - ShipVia: 2, - Freight: 92.6900, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10279, - CustomerID: 'LEHMS', - EmployeeID: 8, - OrderDate: '2018-08-13T00:00:00', - RequiredDate: '2018-09-10T00:00:00', - ShippedDate: '2018-08-16T00:00:00', - ShipVia: 2, - Freight: 25.8300, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10280, - CustomerID: 'BERGS', - EmployeeID: 2, - OrderDate: '2018-08-14T00:00:00', - RequiredDate: '2018-09-11T00:00:00', - ShippedDate: '2018-09-12T00:00:00', - ShipVia: 1, - Freight: 8.9800, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10281, - CustomerID: 'ROMEY', - EmployeeID: 4, - OrderDate: '2018-08-14T00:00:00', - RequiredDate: '2018-08-28T00:00:00', - ShippedDate: '2018-08-21T00:00:00', - ShipVia: 1, - Freight: 2.9400, - ShipName: 'Romero y tomillo', - ShipAddress: 'Gran Vía, 1', - ShipCity: 'Madrid', - ShipRegion: null, - ShipPostalCode: '28001', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10282, - CustomerID: 'ROMEY', - EmployeeID: 4, - OrderDate: '2018-08-15T00:00:00', - RequiredDate: '2018-09-12T00:00:00', - ShippedDate: '2018-08-21T00:00:00', - ShipVia: 1, - Freight: 12.6900, - ShipName: 'Romero y tomillo', - ShipAddress: 'Gran Vía, 1', - ShipCity: 'Madrid', - ShipRegion: null, - ShipPostalCode: '28001', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10283, - CustomerID: 'LILAS', - EmployeeID: 3, - OrderDate: '2018-08-16T00:00:00', - RequiredDate: '2018-09-13T00:00:00', - ShippedDate: '2018-08-23T00:00:00', - ShipVia: 3, - Freight: 84.8100, - ShipName: 'LILA-Supermercado', - ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', - ShipCity: 'Barquisimeto', - ShipRegion: 'Lara', - ShipPostalCode: '3508', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10284, - CustomerID: 'LEHMS', - EmployeeID: 4, - OrderDate: '2018-08-19T00:00:00', - RequiredDate: '2018-09-16T00:00:00', - ShippedDate: '2018-08-27T00:00:00', - ShipVia: 1, - Freight: 76.5600, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10285, - CustomerID: 'QUICK', - EmployeeID: 1, - OrderDate: '2018-08-20T00:00:00', - RequiredDate: '2018-09-17T00:00:00', - ShippedDate: '2018-08-26T00:00:00', - ShipVia: 2, - Freight: 76.8300, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10286, - CustomerID: 'QUICK', - EmployeeID: 8, - OrderDate: '2018-08-21T00:00:00', - RequiredDate: '2018-09-18T00:00:00', - ShippedDate: '2018-08-30T00:00:00', - ShipVia: 3, - Freight: 229.2400, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10287, - CustomerID: 'RICAR', - EmployeeID: 8, - OrderDate: '2018-08-22T00:00:00', - RequiredDate: '2018-09-19T00:00:00', - ShippedDate: '2018-08-28T00:00:00', - ShipVia: 3, - Freight: 12.7600, - ShipName: 'Ricardo Adocicados', - ShipAddress: 'Av. Copacabana, 267', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-890', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10288, - CustomerID: 'REGGC', - EmployeeID: 4, - OrderDate: '2018-08-23T00:00:00', - RequiredDate: '2018-09-20T00:00:00', - ShippedDate: '2018-09-03T00:00:00', - ShipVia: 1, - Freight: 7.4500, - ShipName: 'Reggiani Caseifici', - ShipAddress: 'Strada Provinciale 124', - ShipCity: 'Reggio Emilia', - ShipRegion: null, - ShipPostalCode: '42100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10289, - CustomerID: 'BSBEV', - EmployeeID: 7, - OrderDate: '2018-08-26T00:00:00', - RequiredDate: '2018-09-23T00:00:00', - ShippedDate: '2018-08-28T00:00:00', - ShipVia: 3, - Freight: 22.7700, - ShipName: 'B\'s Beverages', - ShipAddress: 'Fauntleroy Circus', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'EC2 5NT', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10290, - CustomerID: 'COMMI', - EmployeeID: 8, - OrderDate: '2018-08-27T00:00:00', - RequiredDate: '2018-09-24T00:00:00', - ShippedDate: '2018-09-03T00:00:00', - ShipVia: 1, - Freight: 79.7000, - ShipName: 'Comércio Mineiro', - ShipAddress: 'Av. dos Lusíadas, 23', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05432-043', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10291, - CustomerID: 'QUEDE', - EmployeeID: 6, - OrderDate: '2018-08-27T00:00:00', - RequiredDate: '2018-09-24T00:00:00', - ShippedDate: '2018-09-04T00:00:00', - ShipVia: 2, - Freight: 6.4000, - ShipName: 'Que Delícia', - ShipAddress: 'Rua da Panificadora, 12', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-673', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10292, - CustomerID: 'TRADH', - EmployeeID: 1, - OrderDate: '2018-08-28T00:00:00', - RequiredDate: '2018-09-25T00:00:00', - ShippedDate: '2018-09-02T00:00:00', - ShipVia: 2, - Freight: 1.3500, - ShipName: 'Tradiçao Hipermercados', - ShipAddress: 'Av. Inês de Castro, 414', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05634-030', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10293, - CustomerID: 'TORTU', - EmployeeID: 1, - OrderDate: '2018-08-29T00:00:00', - RequiredDate: '2018-09-26T00:00:00', - ShippedDate: '2018-09-11T00:00:00', - ShipVia: 3, - Freight: 21.1800, - ShipName: 'Tortuga Restaurante', - ShipAddress: 'Avda. Azteca 123', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10294, - CustomerID: 'RATTC', - EmployeeID: 4, - OrderDate: '2018-08-30T00:00:00', - RequiredDate: '2018-09-27T00:00:00', - ShippedDate: '2018-09-05T00:00:00', - ShipVia: 2, - Freight: 147.2600, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10295, - CustomerID: 'VINET', - EmployeeID: 2, - OrderDate: '2018-09-02T00:00:00', - RequiredDate: '2018-09-30T00:00:00', - ShippedDate: '2018-09-10T00:00:00', - ShipVia: 2, - Freight: 1.1500, - ShipName: 'Vins et alcools Chevalier', - ShipAddress: '59 rue de l\'Abbaye', - ShipCity: 'Reims', - ShipRegion: null, - ShipPostalCode: '51100', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10296, - CustomerID: 'LILAS', - EmployeeID: 6, - OrderDate: '2018-09-03T00:00:00', - RequiredDate: '2018-10-01T00:00:00', - ShippedDate: '2018-09-11T00:00:00', - ShipVia: 1, - Freight: 0.1200, - ShipName: 'LILA-Supermercado', - ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', - ShipCity: 'Barquisimeto', - ShipRegion: 'Lara', - ShipPostalCode: '3508', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10297, - CustomerID: 'BLONP', - EmployeeID: 5, - OrderDate: '2018-09-04T00:00:00', - RequiredDate: '2018-10-16T00:00:00', - ShippedDate: '2018-09-10T00:00:00', - ShipVia: 2, - Freight: 5.7400, - ShipName: 'Blondel père et fils', - ShipAddress: '24, place Kléber', - ShipCity: 'Strasbourg', - ShipRegion: null, - ShipPostalCode: '67000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10298, - CustomerID: 'HUNGO', - EmployeeID: 6, - OrderDate: '2018-09-05T00:00:00', - RequiredDate: '2018-10-03T00:00:00', - ShippedDate: '2018-09-11T00:00:00', - ShipVia: 2, - Freight: 168.2200, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10299, - CustomerID: 'RICAR', - EmployeeID: 4, - OrderDate: '2018-09-06T00:00:00', - RequiredDate: '2018-10-04T00:00:00', - ShippedDate: '2018-09-13T00:00:00', - ShipVia: 2, - Freight: 29.7600, - ShipName: 'Ricardo Adocicados', - ShipAddress: 'Av. Copacabana, 267', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-890', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10300, - CustomerID: 'MAGAA', - EmployeeID: 2, - OrderDate: '2018-09-09T00:00:00', - RequiredDate: '2018-10-07T00:00:00', - ShippedDate: '2018-09-18T00:00:00', - ShipVia: 2, - Freight: 17.6800, - ShipName: 'Magazzini Alimentari Riuniti', - ShipAddress: 'Via Ludovico il Moro 22', - ShipCity: 'Bergamo', - ShipRegion: null, - ShipPostalCode: '24100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10301, - CustomerID: 'WANDK', - EmployeeID: 8, - OrderDate: '2018-09-09T00:00:00', - RequiredDate: '2018-10-07T00:00:00', - ShippedDate: '2018-09-17T00:00:00', - ShipVia: 2, - Freight: 45.0800, - ShipName: 'Die Wandernde Kuh', - ShipAddress: 'Adenauerallee 900', - ShipCity: 'Stuttgart', - ShipRegion: null, - ShipPostalCode: '70563', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10302, - CustomerID: 'SUPRD', - EmployeeID: 4, - OrderDate: '2018-09-10T00:00:00', - RequiredDate: '2018-10-08T00:00:00', - ShippedDate: '2018-10-09T00:00:00', - ShipVia: 2, - Freight: 6.2700, - ShipName: 'Suprêmes délices', - ShipAddress: 'Boulevard Tirou, 255', - ShipCity: 'Charleroi', - ShipRegion: null, - ShipPostalCode: 'B-6000', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10303, - CustomerID: 'GODOS', - EmployeeID: 7, - OrderDate: '2018-09-11T00:00:00', - RequiredDate: '2018-10-09T00:00:00', - ShippedDate: '2018-09-18T00:00:00', - ShipVia: 2, - Freight: 107.8300, - ShipName: 'Godos Cocina Típica', - ShipAddress: 'C/ Romero, 33', - ShipCity: 'Sevilla', - ShipRegion: null, - ShipPostalCode: '41101', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10304, - CustomerID: 'TORTU', - EmployeeID: 1, - OrderDate: '2018-09-12T00:00:00', - RequiredDate: '2018-10-10T00:00:00', - ShippedDate: '2018-09-17T00:00:00', - ShipVia: 2, - Freight: 63.7900, - ShipName: 'Tortuga Restaurante', - ShipAddress: 'Avda. Azteca 123', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10305, - CustomerID: 'OLDWO', - EmployeeID: 8, - OrderDate: '2018-09-13T00:00:00', - RequiredDate: '2018-10-11T00:00:00', - ShippedDate: '2018-10-09T00:00:00', - ShipVia: 3, - Freight: 257.6200, - ShipName: 'Old World Delicatessen', - ShipAddress: '2743 Bering St.', - ShipCity: 'Anchorage', - ShipRegion: 'AK', - ShipPostalCode: '99508', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10306, - CustomerID: 'ROMEY', - EmployeeID: 1, - OrderDate: '2018-09-16T00:00:00', - RequiredDate: '2018-10-14T00:00:00', - ShippedDate: '2018-09-23T00:00:00', - ShipVia: 3, - Freight: 7.5600, - ShipName: 'Romero y tomillo', - ShipAddress: 'Gran Vía, 1', - ShipCity: 'Madrid', - ShipRegion: null, - ShipPostalCode: '28001', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10307, - CustomerID: 'LONEP', - EmployeeID: 2, - OrderDate: '2018-09-17T00:00:00', - RequiredDate: '2018-10-15T00:00:00', - ShippedDate: '2018-09-25T00:00:00', - ShipVia: 2, - Freight: 0.5600, - ShipName: 'Lonesome Pine Restaurant', - ShipAddress: '89 Chiaroscuro Rd.', - ShipCity: 'Portland', - ShipRegion: 'OR', - ShipPostalCode: '97219', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10308, - CustomerID: 'ANATR', - EmployeeID: 7, - OrderDate: '2018-09-18T00:00:00', - RequiredDate: '2018-10-16T00:00:00', - ShippedDate: '2018-09-24T00:00:00', - ShipVia: 3, - Freight: 1.6100, - ShipName: 'Ana Trujillo Emparedados y helados', - ShipAddress: 'Avda. de la Constitución 2222', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05021', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10309, - CustomerID: 'HUNGO', - EmployeeID: 3, - OrderDate: '2018-09-19T00:00:00', - RequiredDate: '2018-10-17T00:00:00', - ShippedDate: '2018-10-23T00:00:00', - ShipVia: 1, - Freight: 47.3000, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10310, - CustomerID: 'THEBI', - EmployeeID: 8, - OrderDate: '2018-09-20T00:00:00', - RequiredDate: '2018-10-18T00:00:00', - ShippedDate: '2018-09-27T00:00:00', - ShipVia: 2, - Freight: 17.5200, - ShipName: 'The Big Cheese', - ShipAddress: '89 Jefferson Way Suite 2', - ShipCity: 'Portland', - ShipRegion: 'OR', - ShipPostalCode: '97201', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10311, - CustomerID: 'DUMON', - EmployeeID: 1, - OrderDate: '2018-09-20T00:00:00', - RequiredDate: '2018-10-04T00:00:00', - ShippedDate: '2018-09-26T00:00:00', - ShipVia: 3, - Freight: 24.6900, - ShipName: 'Du monde entier', - ShipAddress: '67, rue des Cinquante Otages', - ShipCity: 'Nantes', - ShipRegion: null, - ShipPostalCode: '44000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10312, - CustomerID: 'WANDK', - EmployeeID: 2, - OrderDate: '2018-09-23T00:00:00', - RequiredDate: '2018-10-21T00:00:00', - ShippedDate: '2018-10-03T00:00:00', - ShipVia: 2, - Freight: 40.2600, - ShipName: 'Die Wandernde Kuh', - ShipAddress: 'Adenauerallee 900', - ShipCity: 'Stuttgart', - ShipRegion: null, - ShipPostalCode: '70563', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10313, - CustomerID: 'QUICK', - EmployeeID: 2, - OrderDate: '2018-09-24T00:00:00', - RequiredDate: '2018-10-22T00:00:00', - ShippedDate: '2018-10-04T00:00:00', - ShipVia: 2, - Freight: 1.9600, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10314, - CustomerID: 'RATTC', - EmployeeID: 1, - OrderDate: '2018-09-25T00:00:00', - RequiredDate: '2018-10-23T00:00:00', - ShippedDate: '2018-10-04T00:00:00', - ShipVia: 2, - Freight: 74.1600, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10315, - CustomerID: 'ISLAT', - EmployeeID: 4, - OrderDate: '2018-09-26T00:00:00', - RequiredDate: '2018-10-24T00:00:00', - ShippedDate: '2018-10-03T00:00:00', - ShipVia: 2, - Freight: 41.7600, - ShipName: 'Island Trading', - ShipAddress: 'Garden House Crowther Way', - ShipCity: 'Cowes', - ShipRegion: 'Isle of Wight', - ShipPostalCode: 'PO31 7PJ', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10316, - CustomerID: 'RATTC', - EmployeeID: 1, - OrderDate: '2018-09-27T00:00:00', - RequiredDate: '2018-10-25T00:00:00', - ShippedDate: '2018-10-08T00:00:00', - ShipVia: 3, - Freight: 150.1500, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10317, - CustomerID: 'LONEP', - EmployeeID: 6, - OrderDate: '2018-09-30T00:00:00', - RequiredDate: '2018-10-28T00:00:00', - ShippedDate: '2018-10-10T00:00:00', - ShipVia: 1, - Freight: 12.6900, - ShipName: 'Lonesome Pine Restaurant', - ShipAddress: '89 Chiaroscuro Rd.', - ShipCity: 'Portland', - ShipRegion: 'OR', - ShipPostalCode: '97219', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10318, - CustomerID: 'ISLAT', - EmployeeID: 8, - OrderDate: '2018-10-01T00:00:00', - RequiredDate: '2018-10-29T00:00:00', - ShippedDate: '2018-10-04T00:00:00', - ShipVia: 2, - Freight: 4.7300, - ShipName: 'Island Trading', - ShipAddress: 'Garden House Crowther Way', - ShipCity: 'Cowes', - ShipRegion: 'Isle of Wight', - ShipPostalCode: 'PO31 7PJ', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10319, - CustomerID: 'TORTU', - EmployeeID: 7, - OrderDate: '2018-10-02T00:00:00', - RequiredDate: '2018-10-30T00:00:00', - ShippedDate: '2018-10-11T00:00:00', - ShipVia: 3, - Freight: 64.5000, - ShipName: 'Tortuga Restaurante', - ShipAddress: 'Avda. Azteca 123', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10320, - CustomerID: 'WARTH', - EmployeeID: 5, - OrderDate: '2018-10-03T00:00:00', - RequiredDate: '2018-10-17T00:00:00', - ShippedDate: '2018-10-18T00:00:00', - ShipVia: 3, - Freight: 34.5700, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10321, - CustomerID: 'ISLAT', - EmployeeID: 3, - OrderDate: '2018-10-03T00:00:00', - RequiredDate: '2018-10-31T00:00:00', - ShippedDate: '2018-10-11T00:00:00', - ShipVia: 2, - Freight: 3.4300, - ShipName: 'Island Trading', - ShipAddress: 'Garden House Crowther Way', - ShipCity: 'Cowes', - ShipRegion: 'Isle of Wight', - ShipPostalCode: 'PO31 7PJ', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10322, - CustomerID: 'PERIC', - EmployeeID: 7, - OrderDate: '2018-10-04T00:00:00', - RequiredDate: '2018-11-01T00:00:00', - ShippedDate: '2018-10-23T00:00:00', - ShipVia: 3, - Freight: 0.4000, - ShipName: 'Pericles Comidas clásicas', - ShipAddress: 'Calle Dr. Jorge Cash 321', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10323, - CustomerID: 'KOENE', - EmployeeID: 4, - OrderDate: '2018-10-07T00:00:00', - RequiredDate: '2018-11-04T00:00:00', - ShippedDate: '2018-10-14T00:00:00', - ShipVia: 1, - Freight: 4.8800, - ShipName: 'Königlich Essen', - ShipAddress: 'Maubelstr. 90', - ShipCity: 'Brandenburg', - ShipRegion: null, - ShipPostalCode: '14776', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10324, - CustomerID: 'SAVEA', - EmployeeID: 9, - OrderDate: '2018-10-08T00:00:00', - RequiredDate: '2018-11-05T00:00:00', - ShippedDate: '2018-10-10T00:00:00', - ShipVia: 1, - Freight: 214.2700, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10325, - CustomerID: 'KOENE', - EmployeeID: 1, - OrderDate: '2018-10-09T00:00:00', - RequiredDate: '2018-10-23T00:00:00', - ShippedDate: '2018-10-14T00:00:00', - ShipVia: 3, - Freight: 64.8600, - ShipName: 'Königlich Essen', - ShipAddress: 'Maubelstr. 90', - ShipCity: 'Brandenburg', - ShipRegion: null, - ShipPostalCode: '14776', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10326, - CustomerID: 'BOLID', - EmployeeID: 4, - OrderDate: '2018-10-10T00:00:00', - RequiredDate: '2018-11-07T00:00:00', - ShippedDate: '2018-10-14T00:00:00', - ShipVia: 2, - Freight: 77.9200, - ShipName: 'Bólido Comidas preparadas', - ShipAddress: 'C/ Araquil, 67', - ShipCity: 'Madrid', - ShipRegion: null, - ShipPostalCode: '28023', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10327, - CustomerID: 'FOLKO', - EmployeeID: 2, - OrderDate: '2018-10-11T00:00:00', - RequiredDate: '2018-11-08T00:00:00', - ShippedDate: '2018-10-14T00:00:00', - ShipVia: 1, - Freight: 63.3600, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10328, - CustomerID: 'FURIB', - EmployeeID: 4, - OrderDate: '2018-10-14T00:00:00', - RequiredDate: '2018-11-11T00:00:00', - ShippedDate: '2018-10-17T00:00:00', - ShipVia: 3, - Freight: 87.0300, - ShipName: 'Furia Bacalhau e Frutos do Mar', - ShipAddress: 'Jardim das rosas n. 32', - ShipCity: 'Lisboa', - ShipRegion: null, - ShipPostalCode: '1675', - ShipCountry: 'Portugal', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10329, - CustomerID: 'SPLIR', - EmployeeID: 4, - OrderDate: '2018-10-15T00:00:00', - RequiredDate: '2018-11-26T00:00:00', - ShippedDate: '2018-10-23T00:00:00', - ShipVia: 2, - Freight: 191.6700, - ShipName: 'Split Rail Beer & Ale', - ShipAddress: 'P.O. Box 555', - ShipCity: 'Lander', - ShipRegion: 'WY', - ShipPostalCode: '82520', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10330, - CustomerID: 'LILAS', - EmployeeID: 3, - OrderDate: '2018-10-16T00:00:00', - RequiredDate: '2018-11-13T00:00:00', - ShippedDate: '2018-10-28T00:00:00', - ShipVia: 1, - Freight: 12.7500, - ShipName: 'LILA-Supermercado', - ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', - ShipCity: 'Barquisimeto', - ShipRegion: 'Lara', - ShipPostalCode: '3508', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10331, - CustomerID: 'BONAP', - EmployeeID: 9, - OrderDate: '2018-10-16T00:00:00', - RequiredDate: '2018-11-27T00:00:00', - ShippedDate: '2018-10-21T00:00:00', - ShipVia: 1, - Freight: 10.1900, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10332, - CustomerID: 'MEREP', - EmployeeID: 3, - OrderDate: '2018-10-17T00:00:00', - RequiredDate: '2018-11-28T00:00:00', - ShippedDate: '2018-10-21T00:00:00', - ShipVia: 2, - Freight: 52.8400, - ShipName: 'Mère Paillarde', - ShipAddress: '43 rue St. Laurent', - ShipCity: 'Montréal', - ShipRegion: 'Québec', - ShipPostalCode: 'H1J 1C3', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10333, - CustomerID: 'WARTH', - EmployeeID: 5, - OrderDate: '2018-10-18T00:00:00', - RequiredDate: '2018-11-15T00:00:00', - ShippedDate: '2018-10-25T00:00:00', - ShipVia: 3, - Freight: 0.5900, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10334, - CustomerID: 'VICTE', - EmployeeID: 8, - OrderDate: '2018-10-21T00:00:00', - RequiredDate: '2018-11-18T00:00:00', - ShippedDate: '2018-10-28T00:00:00', - ShipVia: 2, - Freight: 8.5600, - ShipName: 'Victuailles en stock', - ShipAddress: '2, rue du Commerce', - ShipCity: 'Lyon', - ShipRegion: null, - ShipPostalCode: '69004', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10335, - CustomerID: 'HUNGO', - EmployeeID: 7, - OrderDate: '2018-10-22T00:00:00', - RequiredDate: '2018-11-19T00:00:00', - ShippedDate: '2018-10-24T00:00:00', - ShipVia: 2, - Freight: 42.1100, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10336, - CustomerID: 'PRINI', - EmployeeID: 7, - OrderDate: '2018-10-23T00:00:00', - RequiredDate: '2018-11-20T00:00:00', - ShippedDate: '2018-10-25T00:00:00', - ShipVia: 2, - Freight: 15.5100, - ShipName: 'Princesa Isabel Vinhos', - ShipAddress: 'Estrada da saúde n. 58', - ShipCity: 'Lisboa', - ShipRegion: null, - ShipPostalCode: '1756', - ShipCountry: 'Portugal', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10337, - CustomerID: 'FRANK', - EmployeeID: 4, - OrderDate: '2018-10-24T00:00:00', - RequiredDate: '2018-11-21T00:00:00', - ShippedDate: '2018-10-29T00:00:00', - ShipVia: 3, - Freight: 108.2600, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10338, - CustomerID: 'OLDWO', - EmployeeID: 4, - OrderDate: '2018-10-25T00:00:00', - RequiredDate: '2018-11-22T00:00:00', - ShippedDate: '2018-10-29T00:00:00', - ShipVia: 3, - Freight: 84.2100, - ShipName: 'Old World Delicatessen', - ShipAddress: '2743 Bering St.', - ShipCity: 'Anchorage', - ShipRegion: 'AK', - ShipPostalCode: '99508', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10339, - CustomerID: 'MEREP', - EmployeeID: 2, - OrderDate: '2018-10-28T00:00:00', - RequiredDate: '2018-11-25T00:00:00', - ShippedDate: '2018-11-04T00:00:00', - ShipVia: 2, - Freight: 15.6600, - ShipName: 'Mère Paillarde', - ShipAddress: '43 rue St. Laurent', - ShipCity: 'Montréal', - ShipRegion: 'Québec', - ShipPostalCode: 'H1J 1C3', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10340, - CustomerID: 'BONAP', - EmployeeID: 1, - OrderDate: '2018-10-29T00:00:00', - RequiredDate: '2018-11-26T00:00:00', - ShippedDate: '2018-11-08T00:00:00', - ShipVia: 3, - Freight: 166.3100, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10341, - CustomerID: 'SIMOB', - EmployeeID: 7, - OrderDate: '2018-10-29T00:00:00', - RequiredDate: '2018-11-26T00:00:00', - ShippedDate: '2018-11-05T00:00:00', - ShipVia: 3, - Freight: 26.7800, - ShipName: 'Simons bistro', - ShipAddress: 'Vinbæltet 34', - ShipCity: 'Kobenhavn', - ShipRegion: null, - ShipPostalCode: '1734', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10342, - CustomerID: 'FRANK', - EmployeeID: 4, - OrderDate: '2018-10-30T00:00:00', - RequiredDate: '2018-11-13T00:00:00', - ShippedDate: '2018-11-04T00:00:00', - ShipVia: 2, - Freight: 54.8300, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10343, - CustomerID: 'LEHMS', - EmployeeID: 4, - OrderDate: '2018-10-31T00:00:00', - RequiredDate: '2018-11-28T00:00:00', - ShippedDate: '2018-11-06T00:00:00', - ShipVia: 1, - Freight: 110.3700, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10344, - CustomerID: 'WHITC', - EmployeeID: 4, - OrderDate: '2018-11-01T00:00:00', - RequiredDate: '2018-11-29T00:00:00', - ShippedDate: '2018-11-05T00:00:00', - ShipVia: 2, - Freight: 23.2900, - ShipName: 'White Clover Markets', - ShipAddress: '1029 - 12th Ave. S.', - ShipCity: 'Seattle', - ShipRegion: 'WA', - ShipPostalCode: '98124', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10345, - CustomerID: 'QUICK', - EmployeeID: 2, - OrderDate: '2018-11-04T00:00:00', - RequiredDate: '2018-12-02T00:00:00', - ShippedDate: '2018-11-11T00:00:00', - ShipVia: 2, - Freight: 249.0600, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10346, - CustomerID: 'RATTC', - EmployeeID: 3, - OrderDate: '2018-11-05T00:00:00', - RequiredDate: '2018-12-17T00:00:00', - ShippedDate: '2018-11-08T00:00:00', - ShipVia: 3, - Freight: 142.0800, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10347, - CustomerID: 'FAMIA', - EmployeeID: 4, - OrderDate: '2018-11-06T00:00:00', - RequiredDate: '2018-12-04T00:00:00', - ShippedDate: '2018-11-08T00:00:00', - ShipVia: 3, - Freight: 3.1000, - ShipName: 'Familia Arquibaldo', - ShipAddress: 'Rua Orós, 92', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05442-030', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10348, - CustomerID: 'WANDK', - EmployeeID: 4, - OrderDate: '2018-11-07T00:00:00', - RequiredDate: '2018-12-05T00:00:00', - ShippedDate: '2018-11-15T00:00:00', - ShipVia: 2, - Freight: 0.7800, - ShipName: 'Die Wandernde Kuh', - ShipAddress: 'Adenauerallee 900', - ShipCity: 'Stuttgart', - ShipRegion: null, - ShipPostalCode: '70563', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10349, - CustomerID: 'SPLIR', - EmployeeID: 7, - OrderDate: '2018-11-08T00:00:00', - RequiredDate: '2018-12-06T00:00:00', - ShippedDate: '2018-11-15T00:00:00', - ShipVia: 1, - Freight: 8.6300, - ShipName: 'Split Rail Beer & Ale', - ShipAddress: 'P.O. Box 555', - ShipCity: 'Lander', - ShipRegion: 'WY', - ShipPostalCode: '82520', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10350, - CustomerID: 'LAMAI', - EmployeeID: 6, - OrderDate: '2018-11-11T00:00:00', - RequiredDate: '2018-12-09T00:00:00', - ShippedDate: '2018-12-03T00:00:00', - ShipVia: 2, - Freight: 64.1900, - ShipName: 'La maison d\'Asie', - ShipAddress: '1 rue Alsace-Lorraine', - ShipCity: 'Toulouse', - ShipRegion: null, - ShipPostalCode: '31000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10351, - CustomerID: 'ERNSH', - EmployeeID: 1, - OrderDate: '2018-11-11T00:00:00', - RequiredDate: '2018-12-09T00:00:00', - ShippedDate: '2018-11-20T00:00:00', - ShipVia: 1, - Freight: 162.3300, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10352, - CustomerID: 'FURIB', - EmployeeID: 3, - OrderDate: '2018-11-12T00:00:00', - RequiredDate: '2018-11-26T00:00:00', - ShippedDate: '2018-11-18T00:00:00', - ShipVia: 3, - Freight: 1.3000, - ShipName: 'Furia Bacalhau e Frutos do Mar', - ShipAddress: 'Jardim das rosas n. 32', - ShipCity: 'Lisboa', - ShipRegion: null, - ShipPostalCode: '1675', - ShipCountry: 'Portugal', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10353, - CustomerID: 'PICCO', - EmployeeID: 7, - OrderDate: '2018-11-13T00:00:00', - RequiredDate: '2018-12-11T00:00:00', - ShippedDate: '2018-11-25T00:00:00', - ShipVia: 3, - Freight: 360.6300, - ShipName: 'Piccolo und mehr', - ShipAddress: 'Geislweg 14', - ShipCity: 'Salzburg', - ShipRegion: null, - ShipPostalCode: '5020', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10354, - CustomerID: 'PERIC', - EmployeeID: 8, - OrderDate: '2018-11-14T00:00:00', - RequiredDate: '2018-12-12T00:00:00', - ShippedDate: '2018-11-20T00:00:00', - ShipVia: 3, - Freight: 53.8000, - ShipName: 'Pericles Comidas clásicas', - ShipAddress: 'Calle Dr. Jorge Cash 321', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10355, - CustomerID: 'AROUT', - EmployeeID: 6, - OrderDate: '2018-11-15T00:00:00', - RequiredDate: '2018-12-13T00:00:00', - ShippedDate: '2018-11-20T00:00:00', - ShipVia: 1, - Freight: 41.9500, - ShipName: 'Around the Horn', - ShipAddress: 'Brook Farm Stratford St. Mary', - ShipCity: 'Colchester', - ShipRegion: 'Essex', - ShipPostalCode: 'CO7 6JX', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10356, - CustomerID: 'WANDK', - EmployeeID: 6, - OrderDate: '2018-11-18T00:00:00', - RequiredDate: '2018-12-16T00:00:00', - ShippedDate: '2018-11-27T00:00:00', - ShipVia: 2, - Freight: 36.7100, - ShipName: 'Die Wandernde Kuh', - ShipAddress: 'Adenauerallee 900', - ShipCity: 'Stuttgart', - ShipRegion: null, - ShipPostalCode: '70563', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10357, - CustomerID: 'LILAS', - EmployeeID: 1, - OrderDate: '2018-11-19T00:00:00', - RequiredDate: '2018-12-17T00:00:00', - ShippedDate: '2018-12-02T00:00:00', - ShipVia: 3, - Freight: 34.8800, - ShipName: 'LILA-Supermercado', - ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', - ShipCity: 'Barquisimeto', - ShipRegion: 'Lara', - ShipPostalCode: '3508', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10358, - CustomerID: 'LAMAI', - EmployeeID: 5, - OrderDate: '2018-11-20T00:00:00', - RequiredDate: '2018-12-18T00:00:00', - ShippedDate: '2018-11-27T00:00:00', - ShipVia: 1, - Freight: 19.6400, - ShipName: 'La maison d\'Asie', - ShipAddress: '1 rue Alsace-Lorraine', - ShipCity: 'Toulouse', - ShipRegion: null, - ShipPostalCode: '31000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10359, - CustomerID: 'SEVES', - EmployeeID: 5, - OrderDate: '2018-11-21T00:00:00', - RequiredDate: '2018-12-19T00:00:00', - ShippedDate: '2018-11-26T00:00:00', - ShipVia: 3, - Freight: 288.4300, - ShipName: 'Seven Seas Imports', - ShipAddress: '90 Wadhurst Rd.', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'OX15 4NB', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10360, - CustomerID: 'BLONP', - EmployeeID: 4, - OrderDate: '2018-11-22T00:00:00', - RequiredDate: '2018-12-20T00:00:00', - ShippedDate: '2018-12-02T00:00:00', - ShipVia: 3, - Freight: 131.7000, - ShipName: 'Blondel père et fils', - ShipAddress: '24, place Kléber', - ShipCity: 'Strasbourg', - ShipRegion: null, - ShipPostalCode: '67000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10361, - CustomerID: 'QUICK', - EmployeeID: 1, - OrderDate: '2018-11-22T00:00:00', - RequiredDate: '2018-12-20T00:00:00', - ShippedDate: '2018-12-03T00:00:00', - ShipVia: 2, - Freight: 183.1700, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10362, - CustomerID: 'BONAP', - EmployeeID: 3, - OrderDate: '2018-11-25T00:00:00', - RequiredDate: '2018-12-23T00:00:00', - ShippedDate: '2018-11-28T00:00:00', - ShipVia: 1, - Freight: 96.0400, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10363, - CustomerID: 'DRACD', - EmployeeID: 4, - OrderDate: '2018-11-26T00:00:00', - RequiredDate: '2018-12-24T00:00:00', - ShippedDate: '2018-12-04T00:00:00', - ShipVia: 3, - Freight: 30.5400, - ShipName: 'Drachenblut Delikatessen', - ShipAddress: 'Walserweg 21', - ShipCity: 'Aachen', - ShipRegion: null, - ShipPostalCode: '52066', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10364, - CustomerID: 'EASTC', - EmployeeID: 1, - OrderDate: '2018-11-26T00:00:00', - RequiredDate: '2019-01-07T00:00:00', - ShippedDate: '2018-12-04T00:00:00', - ShipVia: 1, - Freight: 71.9700, - ShipName: 'Eastern Connection', - ShipAddress: '35 King George', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'WX3 6FW', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10365, - CustomerID: 'ANTON', - EmployeeID: 3, - OrderDate: '2018-11-27T00:00:00', - RequiredDate: '2018-12-25T00:00:00', - ShippedDate: '2018-12-02T00:00:00', - ShipVia: 2, - Freight: 22.0000, - ShipName: 'Antonio Moreno Taquería', - ShipAddress: 'Mataderos 2312', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05023', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10366, - CustomerID: 'GALED', - EmployeeID: 8, - OrderDate: '2018-11-28T00:00:00', - RequiredDate: '2019-01-09T00:00:00', - ShippedDate: '2018-12-30T00:00:00', - ShipVia: 2, - Freight: 10.1400, - ShipName: 'Galería del gastronómo', - ShipAddress: 'Rambla de Cataluña, 23', - ShipCity: 'Barcelona', - ShipRegion: null, - ShipPostalCode: '8022', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10367, - CustomerID: 'VAFFE', - EmployeeID: 7, - OrderDate: '2018-11-28T00:00:00', - RequiredDate: '2018-12-26T00:00:00', - ShippedDate: '2018-12-02T00:00:00', - ShipVia: 3, - Freight: 13.5500, - ShipName: 'Vaffeljernet', - ShipAddress: 'Smagsloget 45', - ShipCity: 'Århus', - ShipRegion: null, - ShipPostalCode: '8200', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10368, - CustomerID: 'ERNSH', - EmployeeID: 2, - OrderDate: '2018-11-29T00:00:00', - RequiredDate: '2018-12-27T00:00:00', - ShippedDate: '2018-12-02T00:00:00', - ShipVia: 2, - Freight: 101.9500, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10369, - CustomerID: 'SPLIR', - EmployeeID: 8, - OrderDate: '2018-12-02T00:00:00', - RequiredDate: '2018-12-30T00:00:00', - ShippedDate: '2018-12-09T00:00:00', - ShipVia: 2, - Freight: 195.6800, - ShipName: 'Split Rail Beer & Ale', - ShipAddress: 'P.O. Box 555', - ShipCity: 'Lander', - ShipRegion: 'WY', - ShipPostalCode: '82520', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10370, - CustomerID: 'CHOPS', - EmployeeID: 6, - OrderDate: '2018-12-03T00:00:00', - RequiredDate: '2018-12-31T00:00:00', - ShippedDate: '2018-12-27T00:00:00', - ShipVia: 2, - Freight: 1.1700, - ShipName: 'Chop-suey Chinese', - ShipAddress: 'Hauptstr. 31', - ShipCity: 'Bern', - ShipRegion: null, - ShipPostalCode: '3012', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10371, - CustomerID: 'LAMAI', - EmployeeID: 1, - OrderDate: '2018-12-03T00:00:00', - RequiredDate: '2018-12-31T00:00:00', - ShippedDate: '2018-12-24T00:00:00', - ShipVia: 1, - Freight: 0.4500, - ShipName: 'La maison d\'Asie', - ShipAddress: '1 rue Alsace-Lorraine', - ShipCity: 'Toulouse', - ShipRegion: null, - ShipPostalCode: '31000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10372, - CustomerID: 'QUEEN', - EmployeeID: 5, - OrderDate: '2018-12-04T00:00:00', - RequiredDate: '2019-01-01T00:00:00', - ShippedDate: '2018-12-09T00:00:00', - ShipVia: 2, - Freight: 890.7800, - ShipName: 'Queen Cozinha', - ShipAddress: 'Alameda dos Canàrios, 891', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05487-020', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10373, - CustomerID: 'HUNGO', - EmployeeID: 4, - OrderDate: '2018-12-05T00:00:00', - RequiredDate: '2019-01-02T00:00:00', - ShippedDate: '2018-12-11T00:00:00', - ShipVia: 3, - Freight: 124.1200, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10374, - CustomerID: 'WOLZA', - EmployeeID: 1, - OrderDate: '2018-12-05T00:00:00', - RequiredDate: '2019-01-02T00:00:00', - ShippedDate: '2018-12-09T00:00:00', - ShipVia: 3, - Freight: 3.9400, - ShipName: 'Wolski Zajazd', - ShipAddress: 'ul. Filtrowa 68', - ShipCity: 'Warszawa', - ShipRegion: null, - ShipPostalCode: '01-012', - ShipCountry: 'Poland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10375, - CustomerID: 'HUNGC', - EmployeeID: 3, - OrderDate: '2018-12-06T00:00:00', - RequiredDate: '2019-01-03T00:00:00', - ShippedDate: '2018-12-09T00:00:00', - ShipVia: 2, - Freight: 20.1200, - ShipName: 'Hungry Coyote Import Store', - ShipAddress: 'City Center Plaza 516 Main St.', - ShipCity: 'Elgin', - ShipRegion: 'OR', - ShipPostalCode: '97827', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10376, - CustomerID: 'MEREP', - EmployeeID: 1, - OrderDate: '2018-12-09T00:00:00', - RequiredDate: '2019-01-06T00:00:00', - ShippedDate: '2018-12-13T00:00:00', - ShipVia: 2, - Freight: 20.3900, - ShipName: 'Mère Paillarde', - ShipAddress: '43 rue St. Laurent', - ShipCity: 'Montréal', - ShipRegion: 'Québec', - ShipPostalCode: 'H1J 1C3', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10377, - CustomerID: 'SEVES', - EmployeeID: 1, - OrderDate: '2018-12-09T00:00:00', - RequiredDate: '2019-01-06T00:00:00', - ShippedDate: '2018-12-13T00:00:00', - ShipVia: 3, - Freight: 22.2100, - ShipName: 'Seven Seas Imports', - ShipAddress: '90 Wadhurst Rd.', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'OX15 4NB', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10378, - CustomerID: 'FOLKO', - EmployeeID: 5, - OrderDate: '2018-12-10T00:00:00', - RequiredDate: '2019-01-07T00:00:00', - ShippedDate: '2018-12-19T00:00:00', - ShipVia: 3, - Freight: 5.4400, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10379, - CustomerID: 'QUEDE', - EmployeeID: 2, - OrderDate: '2018-12-11T00:00:00', - RequiredDate: '2019-01-08T00:00:00', - ShippedDate: '2018-12-13T00:00:00', - ShipVia: 1, - Freight: 45.0300, - ShipName: 'Que Delícia', - ShipAddress: 'Rua da Panificadora, 12', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-673', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10380, - CustomerID: 'HUNGO', - EmployeeID: 8, - OrderDate: '2018-12-12T00:00:00', - RequiredDate: '2019-01-09T00:00:00', - ShippedDate: '2019-01-16T00:00:00', - ShipVia: 3, - Freight: 35.0300, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10381, - CustomerID: 'LILAS', - EmployeeID: 3, - OrderDate: '2018-12-12T00:00:00', - RequiredDate: '2019-01-09T00:00:00', - ShippedDate: '2018-12-13T00:00:00', - ShipVia: 3, - Freight: 7.9900, - ShipName: 'LILA-Supermercado', - ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', - ShipCity: 'Barquisimeto', - ShipRegion: 'Lara', - ShipPostalCode: '3508', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10382, - CustomerID: 'ERNSH', - EmployeeID: 4, - OrderDate: '2018-12-13T00:00:00', - RequiredDate: '2019-01-10T00:00:00', - ShippedDate: '2018-12-16T00:00:00', - ShipVia: 1, - Freight: 94.7700, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10383, - CustomerID: 'AROUT', - EmployeeID: 8, - OrderDate: '2018-12-16T00:00:00', - RequiredDate: '2019-01-13T00:00:00', - ShippedDate: '2018-12-18T00:00:00', - ShipVia: 3, - Freight: 34.2400, - ShipName: 'Around the Horn', - ShipAddress: 'Brook Farm Stratford St. Mary', - ShipCity: 'Colchester', - ShipRegion: 'Essex', - ShipPostalCode: 'CO7 6JX', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10384, - CustomerID: 'BERGS', - EmployeeID: 3, - OrderDate: '2018-12-16T00:00:00', - RequiredDate: '2019-01-13T00:00:00', - ShippedDate: '2018-12-20T00:00:00', - ShipVia: 3, - Freight: 168.6400, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10385, - CustomerID: 'SPLIR', - EmployeeID: 1, - OrderDate: '2018-12-17T00:00:00', - RequiredDate: '2019-01-14T00:00:00', - ShippedDate: '2018-12-23T00:00:00', - ShipVia: 2, - Freight: 30.9600, - ShipName: 'Split Rail Beer & Ale', - ShipAddress: 'P.O. Box 555', - ShipCity: 'Lander', - ShipRegion: 'WY', - ShipPostalCode: '82520', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10386, - CustomerID: 'FAMIA', - EmployeeID: 9, - OrderDate: '2018-12-18T00:00:00', - RequiredDate: '2019-01-01T00:00:00', - ShippedDate: '2018-12-25T00:00:00', - ShipVia: 3, - Freight: 13.9900, - ShipName: 'Familia Arquibaldo', - ShipAddress: 'Rua Orós, 92', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05442-030', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10387, - CustomerID: 'SANTG', - EmployeeID: 1, - OrderDate: '2018-12-18T00:00:00', - RequiredDate: '2019-01-15T00:00:00', - ShippedDate: '2018-12-20T00:00:00', - ShipVia: 2, - Freight: 93.6300, - ShipName: 'Santé Gourmet', - ShipAddress: 'Erling Skakkes gate 78', - ShipCity: 'Stavern', - ShipRegion: null, - ShipPostalCode: '4110', - ShipCountry: 'Norway', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10388, - CustomerID: 'SEVES', - EmployeeID: 2, - OrderDate: '2018-12-19T00:00:00', - RequiredDate: '2019-01-16T00:00:00', - ShippedDate: '2018-12-20T00:00:00', - ShipVia: 1, - Freight: 34.8600, - ShipName: 'Seven Seas Imports', - ShipAddress: '90 Wadhurst Rd.', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'OX15 4NB', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10389, - CustomerID: 'BOTTM', - EmployeeID: 4, - OrderDate: '2018-12-20T00:00:00', - RequiredDate: '2019-01-17T00:00:00', - ShippedDate: '2018-12-24T00:00:00', - ShipVia: 2, - Freight: 47.4200, - ShipName: 'Bottom-Dollar Markets', - ShipAddress: '23 Tsawassen Blvd.', - ShipCity: 'Tsawassen', - ShipRegion: 'BC', - ShipPostalCode: 'T2F 8M4', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10390, - CustomerID: 'ERNSH', - EmployeeID: 6, - OrderDate: '2018-12-23T00:00:00', - RequiredDate: '2019-01-20T00:00:00', - ShippedDate: '2018-12-26T00:00:00', - ShipVia: 1, - Freight: 126.3800, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10391, - CustomerID: 'DRACD', - EmployeeID: 3, - OrderDate: '2018-12-23T00:00:00', - RequiredDate: '2019-01-20T00:00:00', - ShippedDate: '2018-12-31T00:00:00', - ShipVia: 3, - Freight: 5.4500, - ShipName: 'Drachenblut Delikatessen', - ShipAddress: 'Walserweg 21', - ShipCity: 'Aachen', - ShipRegion: null, - ShipPostalCode: '52066', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10392, - CustomerID: 'PICCO', - EmployeeID: 2, - OrderDate: '2018-12-24T00:00:00', - RequiredDate: '2019-01-21T00:00:00', - ShippedDate: '2019-01-01T00:00:00', - ShipVia: 3, - Freight: 122.4600, - ShipName: 'Piccolo und mehr', - ShipAddress: 'Geislweg 14', - ShipCity: 'Salzburg', - ShipRegion: null, - ShipPostalCode: '5020', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10393, - CustomerID: 'SAVEA', - EmployeeID: 1, - OrderDate: '2018-12-25T00:00:00', - RequiredDate: '2019-01-22T00:00:00', - ShippedDate: '2019-01-03T00:00:00', - ShipVia: 3, - Freight: 126.5600, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10394, - CustomerID: 'HUNGC', - EmployeeID: 1, - OrderDate: '2018-12-25T00:00:00', - RequiredDate: '2019-01-22T00:00:00', - ShippedDate: '2019-01-03T00:00:00', - ShipVia: 3, - Freight: 30.3400, - ShipName: 'Hungry Coyote Import Store', - ShipAddress: 'City Center Plaza 516 Main St.', - ShipCity: 'Elgin', - ShipRegion: 'OR', - ShipPostalCode: '97827', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10395, - CustomerID: 'HILAA', - EmployeeID: 6, - OrderDate: '2018-12-26T00:00:00', - RequiredDate: '2019-01-23T00:00:00', - ShippedDate: '2019-01-03T00:00:00', - ShipVia: 1, - Freight: 184.4100, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10396, - CustomerID: 'FRANK', - EmployeeID: 1, - OrderDate: '2018-12-27T00:00:00', - RequiredDate: '2019-01-10T00:00:00', - ShippedDate: '2019-01-06T00:00:00', - ShipVia: 3, - Freight: 135.3500, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10397, - CustomerID: 'PRINI', - EmployeeID: 5, - OrderDate: '2018-12-27T00:00:00', - RequiredDate: '2019-01-24T00:00:00', - ShippedDate: '2019-01-02T00:00:00', - ShipVia: 1, - Freight: 60.2600, - ShipName: 'Princesa Isabel Vinhos', - ShipAddress: 'Estrada da saúde n. 58', - ShipCity: 'Lisboa', - ShipRegion: null, - ShipPostalCode: '1756', - ShipCountry: 'Portugal', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10398, - CustomerID: 'SAVEA', - EmployeeID: 2, - OrderDate: '2018-12-30T00:00:00', - RequiredDate: '2019-01-27T00:00:00', - ShippedDate: '2019-01-09T00:00:00', - ShipVia: 3, - Freight: 89.1600, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10399, - CustomerID: 'VAFFE', - EmployeeID: 8, - OrderDate: '2018-12-31T00:00:00', - RequiredDate: '2019-01-14T00:00:00', - ShippedDate: '2019-01-08T00:00:00', - ShipVia: 3, - Freight: 27.3600, - ShipName: 'Vaffeljernet', - ShipAddress: 'Smagsloget 45', - ShipCity: 'Århus', - ShipRegion: null, - ShipPostalCode: '8200', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10400, - CustomerID: 'EASTC', - EmployeeID: 1, - OrderDate: '2019-01-01T00:00:00', - RequiredDate: '2019-01-29T00:00:00', - ShippedDate: '2019-01-16T00:00:00', - ShipVia: 3, - Freight: 83.9300, - ShipName: 'Eastern Connection', - ShipAddress: '35 King George', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'WX3 6FW', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10401, - CustomerID: 'RATTC', - EmployeeID: 1, - OrderDate: '2019-01-01T00:00:00', - RequiredDate: '2019-01-29T00:00:00', - ShippedDate: '2019-01-10T00:00:00', - ShipVia: 1, - Freight: 12.5100, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10402, - CustomerID: 'ERNSH', - EmployeeID: 8, - OrderDate: '2019-01-02T00:00:00', - RequiredDate: '2019-02-13T00:00:00', - ShippedDate: '2019-01-10T00:00:00', - ShipVia: 2, - Freight: 67.8800, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10403, - CustomerID: 'ERNSH', - EmployeeID: 4, - OrderDate: '2019-01-03T00:00:00', - RequiredDate: '2019-01-31T00:00:00', - ShippedDate: '2019-01-09T00:00:00', - ShipVia: 3, - Freight: 73.7900, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10404, - CustomerID: 'MAGAA', - EmployeeID: 2, - OrderDate: '2019-01-03T00:00:00', - RequiredDate: '2019-01-31T00:00:00', - ShippedDate: '2019-01-08T00:00:00', - ShipVia: 1, - Freight: 155.9700, - ShipName: 'Magazzini Alimentari Riuniti', - ShipAddress: 'Via Ludovico il Moro 22', - ShipCity: 'Bergamo', - ShipRegion: null, - ShipPostalCode: '24100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10405, - CustomerID: 'LINOD', - EmployeeID: 1, - OrderDate: '2019-01-06T00:00:00', - RequiredDate: '2019-02-03T00:00:00', - ShippedDate: '2019-01-22T00:00:00', - ShipVia: 1, - Freight: 34.8200, - ShipName: 'LINO-Delicateses', - ShipAddress: 'Ave. 5 de Mayo Porlamar', - ShipCity: 'I. de Margarita', - ShipRegion: 'Nueva Esparta', - ShipPostalCode: '4980', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10406, - CustomerID: 'QUEEN', - EmployeeID: 7, - OrderDate: '2019-01-07T00:00:00', - RequiredDate: '2019-02-18T00:00:00', - ShippedDate: '2019-01-13T00:00:00', - ShipVia: 1, - Freight: 108.0400, - ShipName: 'Queen Cozinha', - ShipAddress: 'Alameda dos Canàrios, 891', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05487-020', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10407, - CustomerID: 'OTTIK', - EmployeeID: 2, - OrderDate: '2019-01-07T00:00:00', - RequiredDate: '2019-02-04T00:00:00', - ShippedDate: '2019-01-30T00:00:00', - ShipVia: 2, - Freight: 91.4800, - ShipName: 'Ottilies Käseladen', - ShipAddress: 'Mehrheimerstr. 369', - ShipCity: 'Köln', - ShipRegion: null, - ShipPostalCode: '50739', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10408, - CustomerID: 'FOLIG', - EmployeeID: 8, - OrderDate: '2019-01-08T00:00:00', - RequiredDate: '2019-02-05T00:00:00', - ShippedDate: '2019-01-14T00:00:00', - ShipVia: 1, - Freight: 11.2600, - ShipName: 'Folies gourmandes', - ShipAddress: '184, chaussée de Tournai', - ShipCity: 'Lille', - ShipRegion: null, - ShipPostalCode: '59000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10409, - CustomerID: 'OCEAN', - EmployeeID: 3, - OrderDate: '2019-01-09T00:00:00', - RequiredDate: '2019-02-06T00:00:00', - ShippedDate: '2019-01-14T00:00:00', - ShipVia: 1, - Freight: 29.8300, - ShipName: 'Océano Atlántico Ltda.', - ShipAddress: 'Ing. Gustavo Moncada 8585 Piso 20-A', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10410, - CustomerID: 'BOTTM', - EmployeeID: 3, - OrderDate: '2019-01-10T00:00:00', - RequiredDate: '2019-02-07T00:00:00', - ShippedDate: '2019-01-15T00:00:00', - ShipVia: 3, - Freight: 2.4000, - ShipName: 'Bottom-Dollar Markets', - ShipAddress: '23 Tsawassen Blvd.', - ShipCity: 'Tsawassen', - ShipRegion: 'BC', - ShipPostalCode: 'T2F 8M4', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10411, - CustomerID: 'BOTTM', - EmployeeID: 9, - OrderDate: '2019-01-10T00:00:00', - RequiredDate: '2019-02-07T00:00:00', - ShippedDate: '2019-01-21T00:00:00', - ShipVia: 3, - Freight: 23.6500, - ShipName: 'Bottom-Dollar Markets', - ShipAddress: '23 Tsawassen Blvd.', - ShipCity: 'Tsawassen', - ShipRegion: 'BC', - ShipPostalCode: 'T2F 8M4', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10412, - CustomerID: 'WARTH', - EmployeeID: 8, - OrderDate: '2019-01-13T00:00:00', - RequiredDate: '2019-02-10T00:00:00', - ShippedDate: '2019-01-15T00:00:00', - ShipVia: 2, - Freight: 3.7700, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10413, - CustomerID: 'LAMAI', - EmployeeID: 3, - OrderDate: '2019-01-14T00:00:00', - RequiredDate: '2019-02-11T00:00:00', - ShippedDate: '2019-01-16T00:00:00', - ShipVia: 2, - Freight: 95.6600, - ShipName: 'La maison d\'Asie', - ShipAddress: '1 rue Alsace-Lorraine', - ShipCity: 'Toulouse', - ShipRegion: null, - ShipPostalCode: '31000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10414, - CustomerID: 'FAMIA', - EmployeeID: 2, - OrderDate: '2019-01-14T00:00:00', - RequiredDate: '2019-02-11T00:00:00', - ShippedDate: '2019-01-17T00:00:00', - ShipVia: 3, - Freight: 21.4800, - ShipName: 'Familia Arquibaldo', - ShipAddress: 'Rua Orós, 92', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05442-030', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10415, - CustomerID: 'HUNGC', - EmployeeID: 3, - OrderDate: '2019-01-15T00:00:00', - RequiredDate: '2019-02-12T00:00:00', - ShippedDate: '2019-01-24T00:00:00', - ShipVia: 1, - Freight: 0.2000, - ShipName: 'Hungry Coyote Import Store', - ShipAddress: 'City Center Plaza 516 Main St.', - ShipCity: 'Elgin', - ShipRegion: 'OR', - ShipPostalCode: '97827', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10416, - CustomerID: 'WARTH', - EmployeeID: 8, - OrderDate: '2019-01-16T00:00:00', - RequiredDate: '2019-02-13T00:00:00', - ShippedDate: '2019-01-27T00:00:00', - ShipVia: 3, - Freight: 22.7200, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10417, - CustomerID: 'SIMOB', - EmployeeID: 4, - OrderDate: '2019-01-16T00:00:00', - RequiredDate: '2019-02-13T00:00:00', - ShippedDate: '2019-01-28T00:00:00', - ShipVia: 3, - Freight: 70.2900, - ShipName: 'Simons bistro', - ShipAddress: 'Vinbæltet 34', - ShipCity: 'Kobenhavn', - ShipRegion: null, - ShipPostalCode: '1734', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10418, - CustomerID: 'QUICK', - EmployeeID: 4, - OrderDate: '2019-01-17T00:00:00', - RequiredDate: '2019-02-14T00:00:00', - ShippedDate: '2019-01-24T00:00:00', - ShipVia: 1, - Freight: 17.5500, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10419, - CustomerID: 'RICSU', - EmployeeID: 4, - OrderDate: '2019-01-20T00:00:00', - RequiredDate: '2019-02-17T00:00:00', - ShippedDate: '2019-01-30T00:00:00', - ShipVia: 2, - Freight: 137.3500, - ShipName: 'Richter Supermarkt', - ShipAddress: 'Starenweg 5', - ShipCity: 'Genève', - ShipRegion: null, - ShipPostalCode: '1204', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10420, - CustomerID: 'WELLI', - EmployeeID: 3, - OrderDate: '2019-01-21T00:00:00', - RequiredDate: '2019-02-18T00:00:00', - ShippedDate: '2019-01-27T00:00:00', - ShipVia: 1, - Freight: 44.1200, - ShipName: 'Wellington Importadora', - ShipAddress: 'Rua do Mercado, 12', - ShipCity: 'Resende', - ShipRegion: 'SP', - ShipPostalCode: '08737-363', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10421, - CustomerID: 'QUEDE', - EmployeeID: 8, - OrderDate: '2019-01-21T00:00:00', - RequiredDate: '2019-03-04T00:00:00', - ShippedDate: '2019-01-27T00:00:00', - ShipVia: 1, - Freight: 99.2300, - ShipName: 'Que Delícia', - ShipAddress: 'Rua da Panificadora, 12', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-673', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10422, - CustomerID: 'FRANS', - EmployeeID: 2, - OrderDate: '2019-01-22T00:00:00', - RequiredDate: '2019-02-19T00:00:00', - ShippedDate: '2019-01-31T00:00:00', - ShipVia: 1, - Freight: 3.0200, - ShipName: 'Franchi S.p.A.', - ShipAddress: 'Via Monte Bianco 34', - ShipCity: 'Torino', - ShipRegion: null, - ShipPostalCode: '10100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10423, - CustomerID: 'GOURL', - EmployeeID: 6, - OrderDate: '2019-01-23T00:00:00', - RequiredDate: '2019-02-06T00:00:00', - ShippedDate: '2019-02-24T00:00:00', - ShipVia: 3, - Freight: 24.5000, - ShipName: 'Gourmet Lanchonetes', - ShipAddress: 'Av. Brasil, 442', - ShipCity: 'Campinas', - ShipRegion: 'SP', - ShipPostalCode: '04876-786', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10424, - CustomerID: 'MEREP', - EmployeeID: 7, - OrderDate: '2019-01-23T00:00:00', - RequiredDate: '2019-02-20T00:00:00', - ShippedDate: '2019-01-27T00:00:00', - ShipVia: 2, - Freight: 370.6100, - ShipName: 'Mère Paillarde', - ShipAddress: '43 rue St. Laurent', - ShipCity: 'Montréal', - ShipRegion: 'Québec', - ShipPostalCode: 'H1J 1C3', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10425, - CustomerID: 'LAMAI', - EmployeeID: 6, - OrderDate: '2019-01-24T00:00:00', - RequiredDate: '2019-02-21T00:00:00', - ShippedDate: '2019-02-14T00:00:00', - ShipVia: 2, - Freight: 7.9300, - ShipName: 'La maison d\'Asie', - ShipAddress: '1 rue Alsace-Lorraine', - ShipCity: 'Toulouse', - ShipRegion: null, - ShipPostalCode: '31000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10426, - CustomerID: 'GALED', - EmployeeID: 4, - OrderDate: '2019-01-27T00:00:00', - RequiredDate: '2019-02-24T00:00:00', - ShippedDate: '2019-02-06T00:00:00', - ShipVia: 1, - Freight: 18.6900, - ShipName: 'Galería del gastronómo', - ShipAddress: 'Rambla de Cataluña, 23', - ShipCity: 'Barcelona', - ShipRegion: null, - ShipPostalCode: '8022', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10427, - CustomerID: 'PICCO', - EmployeeID: 4, - OrderDate: '2019-01-27T00:00:00', - RequiredDate: '2019-02-24T00:00:00', - ShippedDate: '2019-03-03T00:00:00', - ShipVia: 2, - Freight: 31.2900, - ShipName: 'Piccolo und mehr', - ShipAddress: 'Geislweg 14', - ShipCity: 'Salzburg', - ShipRegion: null, - ShipPostalCode: '5020', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10428, - CustomerID: 'REGGC', - EmployeeID: 7, - OrderDate: '2019-01-28T00:00:00', - RequiredDate: '2019-02-25T00:00:00', - ShippedDate: '2019-02-04T00:00:00', - ShipVia: 1, - Freight: 11.0900, - ShipName: 'Reggiani Caseifici', - ShipAddress: 'Strada Provinciale 124', - ShipCity: 'Reggio Emilia', - ShipRegion: null, - ShipPostalCode: '42100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10429, - CustomerID: 'HUNGO', - EmployeeID: 3, - OrderDate: '2019-01-29T00:00:00', - RequiredDate: '2019-03-12T00:00:00', - ShippedDate: '2019-02-07T00:00:00', - ShipVia: 2, - Freight: 56.6300, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10430, - CustomerID: 'ERNSH', - EmployeeID: 4, - OrderDate: '2019-01-30T00:00:00', - RequiredDate: '2019-02-13T00:00:00', - ShippedDate: '2019-02-03T00:00:00', - ShipVia: 1, - Freight: 458.7800, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10431, - CustomerID: 'BOTTM', - EmployeeID: 4, - OrderDate: '2019-01-30T00:00:00', - RequiredDate: '2019-02-13T00:00:00', - ShippedDate: '2019-02-07T00:00:00', - ShipVia: 2, - Freight: 44.1700, - ShipName: 'Bottom-Dollar Markets', - ShipAddress: '23 Tsawassen Blvd.', - ShipCity: 'Tsawassen', - ShipRegion: 'BC', - ShipPostalCode: 'T2F 8M4', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10432, - CustomerID: 'SPLIR', - EmployeeID: 3, - OrderDate: '2019-01-31T00:00:00', - RequiredDate: '2019-02-14T00:00:00', - ShippedDate: '2019-02-07T00:00:00', - ShipVia: 2, - Freight: 4.3400, - ShipName: 'Split Rail Beer & Ale', - ShipAddress: 'P.O. Box 555', - ShipCity: 'Lander', - ShipRegion: 'WY', - ShipPostalCode: '82520', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10433, - CustomerID: 'PRINI', - EmployeeID: 3, - OrderDate: '2019-02-03T00:00:00', - RequiredDate: '2019-03-03T00:00:00', - ShippedDate: '2019-03-04T00:00:00', - ShipVia: 3, - Freight: 73.8300, - ShipName: 'Princesa Isabel Vinhos', - ShipAddress: 'Estrada da saúde n. 58', - ShipCity: 'Lisboa', - ShipRegion: null, - ShipPostalCode: '1756', - ShipCountry: 'Portugal', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10434, - CustomerID: 'FOLKO', - EmployeeID: 3, - OrderDate: '2019-02-03T00:00:00', - RequiredDate: '2019-03-03T00:00:00', - ShippedDate: '2019-02-13T00:00:00', - ShipVia: 2, - Freight: 17.9200, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10435, - CustomerID: 'CONSH', - EmployeeID: 8, - OrderDate: '2019-02-04T00:00:00', - RequiredDate: '2019-03-18T00:00:00', - ShippedDate: '2019-02-07T00:00:00', - ShipVia: 2, - Freight: 9.2100, - ShipName: 'Consolidated Holdings', - ShipAddress: 'Berkeley Gardens 12 Brewery', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'WX1 6LT', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10436, - CustomerID: 'BLONP', - EmployeeID: 3, - OrderDate: '2019-02-05T00:00:00', - RequiredDate: '2019-03-05T00:00:00', - ShippedDate: '2019-02-11T00:00:00', - ShipVia: 2, - Freight: 156.6600, - ShipName: 'Blondel père et fils', - ShipAddress: '24, place Kléber', - ShipCity: 'Strasbourg', - ShipRegion: null, - ShipPostalCode: '67000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10437, - CustomerID: 'WARTH', - EmployeeID: 8, - OrderDate: '2019-02-05T00:00:00', - RequiredDate: '2019-03-05T00:00:00', - ShippedDate: '2019-02-12T00:00:00', - ShipVia: 1, - Freight: 19.9700, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10438, - CustomerID: 'TOMSP', - EmployeeID: 3, - OrderDate: '2019-02-06T00:00:00', - RequiredDate: '2019-03-06T00:00:00', - ShippedDate: '2019-02-14T00:00:00', - ShipVia: 2, - Freight: 8.2400, - ShipName: 'Toms Spezialitäten', - ShipAddress: 'Luisenstr. 48', - ShipCity: 'Münster', - ShipRegion: null, - ShipPostalCode: '44087', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10439, - CustomerID: 'MEREP', - EmployeeID: 6, - OrderDate: '2019-02-07T00:00:00', - RequiredDate: '2019-03-07T00:00:00', - ShippedDate: '2019-02-10T00:00:00', - ShipVia: 3, - Freight: 4.0700, - ShipName: 'Mère Paillarde', - ShipAddress: '43 rue St. Laurent', - ShipCity: 'Montréal', - ShipRegion: 'Québec', - ShipPostalCode: 'H1J 1C3', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10440, - CustomerID: 'SAVEA', - EmployeeID: 4, - OrderDate: '2019-02-10T00:00:00', - RequiredDate: '2019-03-10T00:00:00', - ShippedDate: '2019-02-28T00:00:00', - ShipVia: 2, - Freight: 86.5300, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10441, - CustomerID: 'OLDWO', - EmployeeID: 3, - OrderDate: '2019-02-10T00:00:00', - RequiredDate: '2019-03-24T00:00:00', - ShippedDate: '2019-03-14T00:00:00', - ShipVia: 2, - Freight: 73.0200, - ShipName: 'Old World Delicatessen', - ShipAddress: '2743 Bering St.', - ShipCity: 'Anchorage', - ShipRegion: 'AK', - ShipPostalCode: '99508', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10442, - CustomerID: 'ERNSH', - EmployeeID: 3, - OrderDate: '2019-02-11T00:00:00', - RequiredDate: '2019-03-11T00:00:00', - ShippedDate: '2019-02-18T00:00:00', - ShipVia: 2, - Freight: 47.9400, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10443, - CustomerID: 'REGGC', - EmployeeID: 8, - OrderDate: '2019-02-12T00:00:00', - RequiredDate: '2019-03-12T00:00:00', - ShippedDate: '2019-02-14T00:00:00', - ShipVia: 1, - Freight: 13.9500, - ShipName: 'Reggiani Caseifici', - ShipAddress: 'Strada Provinciale 124', - ShipCity: 'Reggio Emilia', - ShipRegion: null, - ShipPostalCode: '42100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10444, - CustomerID: 'BERGS', - EmployeeID: 3, - OrderDate: '2019-02-12T00:00:00', - RequiredDate: '2019-03-12T00:00:00', - ShippedDate: '2019-02-21T00:00:00', - ShipVia: 3, - Freight: 3.5000, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10445, - CustomerID: 'BERGS', - EmployeeID: 3, - OrderDate: '2019-02-13T00:00:00', - RequiredDate: '2019-03-13T00:00:00', - ShippedDate: '2019-02-20T00:00:00', - ShipVia: 1, - Freight: 9.3000, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10446, - CustomerID: 'TOMSP', - EmployeeID: 6, - OrderDate: '2019-02-14T00:00:00', - RequiredDate: '2019-03-14T00:00:00', - ShippedDate: '2019-02-19T00:00:00', - ShipVia: 1, - Freight: 14.6800, - ShipName: 'Toms Spezialitäten', - ShipAddress: 'Luisenstr. 48', - ShipCity: 'Münster', - ShipRegion: null, - ShipPostalCode: '44087', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10447, - CustomerID: 'RICAR', - EmployeeID: 4, - OrderDate: '2019-02-14T00:00:00', - RequiredDate: '2019-03-14T00:00:00', - ShippedDate: '2019-03-07T00:00:00', - ShipVia: 2, - Freight: 68.6600, - ShipName: 'Ricardo Adocicados', - ShipAddress: 'Av. Copacabana, 267', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-890', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10448, - CustomerID: 'RANCH', - EmployeeID: 4, - OrderDate: '2019-02-17T00:00:00', - RequiredDate: '2019-03-17T00:00:00', - ShippedDate: '2019-02-24T00:00:00', - ShipVia: 2, - Freight: 38.8200, - ShipName: 'Rancho grande', - ShipAddress: 'Av. del Libertador 900', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10449, - CustomerID: 'BLONP', - EmployeeID: 3, - OrderDate: '2019-02-18T00:00:00', - RequiredDate: '2019-03-18T00:00:00', - ShippedDate: '2019-02-27T00:00:00', - ShipVia: 2, - Freight: 53.3000, - ShipName: 'Blondel père et fils', - ShipAddress: '24, place Kléber', - ShipCity: 'Strasbourg', - ShipRegion: null, - ShipPostalCode: '67000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10450, - CustomerID: 'VICTE', - EmployeeID: 8, - OrderDate: '2019-02-19T00:00:00', - RequiredDate: '2019-03-19T00:00:00', - ShippedDate: '2019-03-11T00:00:00', - ShipVia: 2, - Freight: 7.2300, - ShipName: 'Victuailles en stock', - ShipAddress: '2, rue du Commerce', - ShipCity: 'Lyon', - ShipRegion: null, - ShipPostalCode: '69004', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10451, - CustomerID: 'QUICK', - EmployeeID: 4, - OrderDate: '2019-02-19T00:00:00', - RequiredDate: '2019-03-05T00:00:00', - ShippedDate: '2019-03-12T00:00:00', - ShipVia: 3, - Freight: 189.0900, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10452, - CustomerID: 'SAVEA', - EmployeeID: 8, - OrderDate: '2019-02-20T00:00:00', - RequiredDate: '2019-03-20T00:00:00', - ShippedDate: '2019-02-26T00:00:00', - ShipVia: 1, - Freight: 140.2600, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10453, - CustomerID: 'AROUT', - EmployeeID: 1, - OrderDate: '2019-02-21T00:00:00', - RequiredDate: '2019-03-21T00:00:00', - ShippedDate: '2019-02-26T00:00:00', - ShipVia: 2, - Freight: 25.3600, - ShipName: 'Around the Horn', - ShipAddress: 'Brook Farm Stratford St. Mary', - ShipCity: 'Colchester', - ShipRegion: 'Essex', - ShipPostalCode: 'CO7 6JX', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10454, - CustomerID: 'LAMAI', - EmployeeID: 4, - OrderDate: '2019-02-21T00:00:00', - RequiredDate: '2019-03-21T00:00:00', - ShippedDate: '2019-02-25T00:00:00', - ShipVia: 3, - Freight: 2.7400, - ShipName: 'La maison d\'Asie', - ShipAddress: '1 rue Alsace-Lorraine', - ShipCity: 'Toulouse', - ShipRegion: null, - ShipPostalCode: '31000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10455, - CustomerID: 'WARTH', - EmployeeID: 8, - OrderDate: '2019-02-24T00:00:00', - RequiredDate: '2019-04-07T00:00:00', - ShippedDate: '2019-03-03T00:00:00', - ShipVia: 2, - Freight: 180.4500, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10456, - CustomerID: 'KOENE', - EmployeeID: 8, - OrderDate: '2019-02-25T00:00:00', - RequiredDate: '2019-04-08T00:00:00', - ShippedDate: '2019-02-28T00:00:00', - ShipVia: 2, - Freight: 8.1200, - ShipName: 'Königlich Essen', - ShipAddress: 'Maubelstr. 90', - ShipCity: 'Brandenburg', - ShipRegion: null, - ShipPostalCode: '14776', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10457, - CustomerID: 'KOENE', - EmployeeID: 2, - OrderDate: '2019-02-25T00:00:00', - RequiredDate: '2019-03-25T00:00:00', - ShippedDate: '2019-03-03T00:00:00', - ShipVia: 1, - Freight: 11.5700, - ShipName: 'Königlich Essen', - ShipAddress: 'Maubelstr. 90', - ShipCity: 'Brandenburg', - ShipRegion: null, - ShipPostalCode: '14776', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10458, - CustomerID: 'SUPRD', - EmployeeID: 7, - OrderDate: '2019-02-26T00:00:00', - RequiredDate: '2019-03-26T00:00:00', - ShippedDate: '2019-03-04T00:00:00', - ShipVia: 3, - Freight: 147.0600, - ShipName: 'Suprêmes délices', - ShipAddress: 'Boulevard Tirou, 255', - ShipCity: 'Charleroi', - ShipRegion: null, - ShipPostalCode: 'B-6000', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10459, - CustomerID: 'VICTE', - EmployeeID: 4, - OrderDate: '2019-02-27T00:00:00', - RequiredDate: '2019-03-27T00:00:00', - ShippedDate: '2019-02-28T00:00:00', - ShipVia: 2, - Freight: 25.0900, - ShipName: 'Victuailles en stock', - ShipAddress: '2, rue du Commerce', - ShipCity: 'Lyon', - ShipRegion: null, - ShipPostalCode: '69004', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10460, - CustomerID: 'FOLKO', - EmployeeID: 8, - OrderDate: '2019-02-28T00:00:00', - RequiredDate: '2019-03-28T00:00:00', - ShippedDate: '2019-03-03T00:00:00', - ShipVia: 1, - Freight: 16.2700, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10461, - CustomerID: 'LILAS', - EmployeeID: 1, - OrderDate: '2019-02-28T00:00:00', - RequiredDate: '2019-03-28T00:00:00', - ShippedDate: '2019-03-05T00:00:00', - ShipVia: 3, - Freight: 148.6100, - ShipName: 'LILA-Supermercado', - ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', - ShipCity: 'Barquisimeto', - ShipRegion: 'Lara', - ShipPostalCode: '3508', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10462, - CustomerID: 'CONSH', - EmployeeID: 2, - OrderDate: '2019-03-03T00:00:00', - RequiredDate: '2019-03-31T00:00:00', - ShippedDate: '2019-03-18T00:00:00', - ShipVia: 1, - Freight: 6.1700, - ShipName: 'Consolidated Holdings', - ShipAddress: 'Berkeley Gardens 12 Brewery', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'WX1 6LT', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10463, - CustomerID: 'SUPRD', - EmployeeID: 5, - OrderDate: '2019-03-04T00:00:00', - RequiredDate: '2019-04-01T00:00:00', - ShippedDate: '2019-03-06T00:00:00', - ShipVia: 3, - Freight: 14.7800, - ShipName: 'Suprêmes délices', - ShipAddress: 'Boulevard Tirou, 255', - ShipCity: 'Charleroi', - ShipRegion: null, - ShipPostalCode: 'B-6000', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10464, - CustomerID: 'FURIB', - EmployeeID: 4, - OrderDate: '2019-03-04T00:00:00', - RequiredDate: '2019-04-01T00:00:00', - ShippedDate: '2019-03-14T00:00:00', - ShipVia: 2, - Freight: 89.0000, - ShipName: 'Furia Bacalhau e Frutos do Mar', - ShipAddress: 'Jardim das rosas n. 32', - ShipCity: 'Lisboa', - ShipRegion: null, - ShipPostalCode: '1675', - ShipCountry: 'Portugal', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10465, - CustomerID: 'VAFFE', - EmployeeID: 1, - OrderDate: '2019-03-05T00:00:00', - RequiredDate: '2019-04-02T00:00:00', - ShippedDate: '2019-03-14T00:00:00', - ShipVia: 3, - Freight: 145.0400, - ShipName: 'Vaffeljernet', - ShipAddress: 'Smagsloget 45', - ShipCity: 'Århus', - ShipRegion: null, - ShipPostalCode: '8200', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10466, - CustomerID: 'COMMI', - EmployeeID: 4, - OrderDate: '2019-03-06T00:00:00', - RequiredDate: '2019-04-03T00:00:00', - ShippedDate: '2019-03-13T00:00:00', - ShipVia: 1, - Freight: 11.9300, - ShipName: 'Comércio Mineiro', - ShipAddress: 'Av. dos Lusíadas, 23', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05432-043', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10467, - CustomerID: 'MAGAA', - EmployeeID: 8, - OrderDate: '2019-03-06T00:00:00', - RequiredDate: '2019-04-03T00:00:00', - ShippedDate: '2019-03-11T00:00:00', - ShipVia: 2, - Freight: 4.9300, - ShipName: 'Magazzini Alimentari Riuniti', - ShipAddress: 'Via Ludovico il Moro 22', - ShipCity: 'Bergamo', - ShipRegion: null, - ShipPostalCode: '24100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10468, - CustomerID: 'KOENE', - EmployeeID: 3, - OrderDate: '2019-03-07T00:00:00', - RequiredDate: '2019-04-04T00:00:00', - ShippedDate: '2019-03-12T00:00:00', - ShipVia: 3, - Freight: 44.1200, - ShipName: 'Königlich Essen', - ShipAddress: 'Maubelstr. 90', - ShipCity: 'Brandenburg', - ShipRegion: null, - ShipPostalCode: '14776', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10469, - CustomerID: 'WHITC', - EmployeeID: 1, - OrderDate: '2019-03-10T00:00:00', - RequiredDate: '2019-04-07T00:00:00', - ShippedDate: '2019-03-14T00:00:00', - ShipVia: 1, - Freight: 60.1800, - ShipName: 'White Clover Markets', - ShipAddress: '1029 - 12th Ave. S.', - ShipCity: 'Seattle', - ShipRegion: 'WA', - ShipPostalCode: '98124', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10470, - CustomerID: 'BONAP', - EmployeeID: 4, - OrderDate: '2019-03-11T00:00:00', - RequiredDate: '2019-04-08T00:00:00', - ShippedDate: '2019-03-14T00:00:00', - ShipVia: 2, - Freight: 64.5600, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10471, - CustomerID: 'BSBEV', - EmployeeID: 2, - OrderDate: '2019-03-11T00:00:00', - RequiredDate: '2019-04-08T00:00:00', - ShippedDate: '2019-03-18T00:00:00', - ShipVia: 3, - Freight: 45.5900, - ShipName: 'B\'s Beverages', - ShipAddress: 'Fauntleroy Circus', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'EC2 5NT', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10472, - CustomerID: 'SEVES', - EmployeeID: 8, - OrderDate: '2019-03-12T00:00:00', - RequiredDate: '2019-04-09T00:00:00', - ShippedDate: '2019-03-19T00:00:00', - ShipVia: 1, - Freight: 4.2000, - ShipName: 'Seven Seas Imports', - ShipAddress: '90 Wadhurst Rd.', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'OX15 4NB', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10473, - CustomerID: 'ISLAT', - EmployeeID: 1, - OrderDate: '2019-03-13T00:00:00', - RequiredDate: '2019-03-27T00:00:00', - ShippedDate: '2019-03-21T00:00:00', - ShipVia: 3, - Freight: 16.3700, - ShipName: 'Island Trading', - ShipAddress: 'Garden House Crowther Way', - ShipCity: 'Cowes', - ShipRegion: 'Isle of Wight', - ShipPostalCode: 'PO31 7PJ', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10474, - CustomerID: 'PERIC', - EmployeeID: 5, - OrderDate: '2019-03-13T00:00:00', - RequiredDate: '2019-04-10T00:00:00', - ShippedDate: '2019-03-21T00:00:00', - ShipVia: 2, - Freight: 83.4900, - ShipName: 'Pericles Comidas clásicas', - ShipAddress: 'Calle Dr. Jorge Cash 321', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10475, - CustomerID: 'SUPRD', - EmployeeID: 9, - OrderDate: '2019-03-14T00:00:00', - RequiredDate: '2019-04-11T00:00:00', - ShippedDate: '2019-04-04T00:00:00', - ShipVia: 1, - Freight: 68.5200, - ShipName: 'Suprêmes délices', - ShipAddress: 'Boulevard Tirou, 255', - ShipCity: 'Charleroi', - ShipRegion: null, - ShipPostalCode: 'B-6000', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10476, - CustomerID: 'HILAA', - EmployeeID: 8, - OrderDate: '2019-03-17T00:00:00', - RequiredDate: '2019-04-14T00:00:00', - ShippedDate: '2019-03-24T00:00:00', - ShipVia: 3, - Freight: 4.4100, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10477, - CustomerID: 'PRINI', - EmployeeID: 5, - OrderDate: '2019-03-17T00:00:00', - RequiredDate: '2019-04-14T00:00:00', - ShippedDate: '2019-03-25T00:00:00', - ShipVia: 2, - Freight: 13.0200, - ShipName: 'Princesa Isabel Vinhos', - ShipAddress: 'Estrada da saúde n. 58', - ShipCity: 'Lisboa', - ShipRegion: null, - ShipPostalCode: '1756', - ShipCountry: 'Portugal', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10478, - CustomerID: 'VICTE', - EmployeeID: 2, - OrderDate: '2019-03-18T00:00:00', - RequiredDate: '2019-04-01T00:00:00', - ShippedDate: '2019-03-26T00:00:00', - ShipVia: 3, - Freight: 4.8100, - ShipName: 'Victuailles en stock', - ShipAddress: '2, rue du Commerce', - ShipCity: 'Lyon', - ShipRegion: null, - ShipPostalCode: '69004', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10479, - CustomerID: 'RATTC', - EmployeeID: 3, - OrderDate: '2019-03-19T00:00:00', - RequiredDate: '2019-04-16T00:00:00', - ShippedDate: '2019-03-21T00:00:00', - ShipVia: 3, - Freight: 708.9500, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10480, - CustomerID: 'FOLIG', - EmployeeID: 6, - OrderDate: '2019-03-20T00:00:00', - RequiredDate: '2019-04-17T00:00:00', - ShippedDate: '2019-03-24T00:00:00', - ShipVia: 2, - Freight: 1.3500, - ShipName: 'Folies gourmandes', - ShipAddress: '184, chaussée de Tournai', - ShipCity: 'Lille', - ShipRegion: null, - ShipPostalCode: '59000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10481, - CustomerID: 'RICAR', - EmployeeID: 8, - OrderDate: '2019-03-20T00:00:00', - RequiredDate: '2019-04-17T00:00:00', - ShippedDate: '2019-03-25T00:00:00', - ShipVia: 2, - Freight: 64.3300, - ShipName: 'Ricardo Adocicados', - ShipAddress: 'Av. Copacabana, 267', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-890', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10482, - CustomerID: 'LAZYK', - EmployeeID: 1, - OrderDate: '2019-03-21T00:00:00', - RequiredDate: '2019-04-18T00:00:00', - ShippedDate: '2019-04-10T00:00:00', - ShipVia: 3, - Freight: 7.4800, - ShipName: 'Lazy K Kountry Store', - ShipAddress: '12 Orchestra Terrace', - ShipCity: 'Walla Walla', - ShipRegion: 'WA', - ShipPostalCode: '99362', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10483, - CustomerID: 'WHITC', - EmployeeID: 7, - OrderDate: '2019-03-24T00:00:00', - RequiredDate: '2019-04-21T00:00:00', - ShippedDate: '2019-04-25T00:00:00', - ShipVia: 2, - Freight: 15.2800, - ShipName: 'White Clover Markets', - ShipAddress: '1029 - 12th Ave. S.', - ShipCity: 'Seattle', - ShipRegion: 'WA', - ShipPostalCode: '98124', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10484, - CustomerID: 'BSBEV', - EmployeeID: 3, - OrderDate: '2019-03-24T00:00:00', - RequiredDate: '2019-04-21T00:00:00', - ShippedDate: '2019-04-01T00:00:00', - ShipVia: 3, - Freight: 6.8800, - ShipName: 'B\'s Beverages', - ShipAddress: 'Fauntleroy Circus', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'EC2 5NT', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10485, - CustomerID: 'LINOD', - EmployeeID: 4, - OrderDate: '2019-03-25T00:00:00', - RequiredDate: '2019-04-08T00:00:00', - ShippedDate: '2019-03-31T00:00:00', - ShipVia: 2, - Freight: 64.4500, - ShipName: 'LINO-Delicateses', - ShipAddress: 'Ave. 5 de Mayo Porlamar', - ShipCity: 'I. de Margarita', - ShipRegion: 'Nueva Esparta', - ShipPostalCode: '4980', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10486, - CustomerID: 'HILAA', - EmployeeID: 1, - OrderDate: '2019-03-26T00:00:00', - RequiredDate: '2019-04-23T00:00:00', - ShippedDate: '2019-04-02T00:00:00', - ShipVia: 2, - Freight: 30.5300, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10487, - CustomerID: 'QUEEN', - EmployeeID: 2, - OrderDate: '2019-03-26T00:00:00', - RequiredDate: '2019-04-23T00:00:00', - ShippedDate: '2019-03-28T00:00:00', - ShipVia: 2, - Freight: 71.0700, - ShipName: 'Queen Cozinha', - ShipAddress: 'Alameda dos Canàrios, 891', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05487-020', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10488, - CustomerID: 'FRANK', - EmployeeID: 8, - OrderDate: '2019-03-27T00:00:00', - RequiredDate: '2019-04-24T00:00:00', - ShippedDate: '2019-04-02T00:00:00', - ShipVia: 2, - Freight: 4.9300, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10489, - CustomerID: 'PICCO', - EmployeeID: 6, - OrderDate: '2019-03-28T00:00:00', - RequiredDate: '2019-04-25T00:00:00', - ShippedDate: '2019-04-09T00:00:00', - ShipVia: 2, - Freight: 5.2900, - ShipName: 'Piccolo und mehr', - ShipAddress: 'Geislweg 14', - ShipCity: 'Salzburg', - ShipRegion: null, - ShipPostalCode: '5020', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10490, - CustomerID: 'HILAA', - EmployeeID: 7, - OrderDate: '2019-03-31T00:00:00', - RequiredDate: '2019-04-28T00:00:00', - ShippedDate: '2019-04-03T00:00:00', - ShipVia: 2, - Freight: 210.1900, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10491, - CustomerID: 'FURIB', - EmployeeID: 8, - OrderDate: '2019-03-31T00:00:00', - RequiredDate: '2019-04-28T00:00:00', - ShippedDate: '2019-04-08T00:00:00', - ShipVia: 3, - Freight: 16.9600, - ShipName: 'Furia Bacalhau e Frutos do Mar', - ShipAddress: 'Jardim das rosas n. 32', - ShipCity: 'Lisboa', - ShipRegion: null, - ShipPostalCode: '1675', - ShipCountry: 'Portugal', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10492, - CustomerID: 'BOTTM', - EmployeeID: 3, - OrderDate: '2019-04-01T00:00:00', - RequiredDate: '2019-04-29T00:00:00', - ShippedDate: '2019-04-11T00:00:00', - ShipVia: 1, - Freight: 62.8900, - ShipName: 'Bottom-Dollar Markets', - ShipAddress: '23 Tsawassen Blvd.', - ShipCity: 'Tsawassen', - ShipRegion: 'BC', - ShipPostalCode: 'T2F 8M4', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10493, - CustomerID: 'LAMAI', - EmployeeID: 4, - OrderDate: '2019-04-02T00:00:00', - RequiredDate: '2019-04-30T00:00:00', - ShippedDate: '2019-04-10T00:00:00', - ShipVia: 3, - Freight: 10.6400, - ShipName: 'La maison d\'Asie', - ShipAddress: '1 rue Alsace-Lorraine', - ShipCity: 'Toulouse', - ShipRegion: null, - ShipPostalCode: '31000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10494, - CustomerID: 'COMMI', - EmployeeID: 4, - OrderDate: '2019-04-02T00:00:00', - RequiredDate: '2019-04-30T00:00:00', - ShippedDate: '2019-04-09T00:00:00', - ShipVia: 2, - Freight: 65.9900, - ShipName: 'Comércio Mineiro', - ShipAddress: 'Av. dos Lusíadas, 23', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05432-043', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10495, - CustomerID: 'LAUGB', - EmployeeID: 3, - OrderDate: '2019-04-03T00:00:00', - RequiredDate: '2019-05-01T00:00:00', - ShippedDate: '2019-04-11T00:00:00', - ShipVia: 3, - Freight: 4.6500, - ShipName: 'Laughing Bacchus Wine Cellars', - ShipAddress: '2319 Elm St.', - ShipCity: 'Vancouver', - ShipRegion: 'BC', - ShipPostalCode: 'V3F 2K1', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10496, - CustomerID: 'TRADH', - EmployeeID: 7, - OrderDate: '2019-04-04T00:00:00', - RequiredDate: '2019-05-02T00:00:00', - ShippedDate: '2019-04-07T00:00:00', - ShipVia: 2, - Freight: 46.7700, - ShipName: 'Tradiçao Hipermercados', - ShipAddress: 'Av. Inês de Castro, 414', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05634-030', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10497, - CustomerID: 'LEHMS', - EmployeeID: 7, - OrderDate: '2019-04-04T00:00:00', - RequiredDate: '2019-05-02T00:00:00', - ShippedDate: '2019-04-07T00:00:00', - ShipVia: 1, - Freight: 36.2100, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10498, - CustomerID: 'HILAA', - EmployeeID: 8, - OrderDate: '2019-04-07T00:00:00', - RequiredDate: '2019-05-05T00:00:00', - ShippedDate: '2019-04-11T00:00:00', - ShipVia: 2, - Freight: 29.7500, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10499, - CustomerID: 'LILAS', - EmployeeID: 4, - OrderDate: '2019-04-08T00:00:00', - RequiredDate: '2019-05-06T00:00:00', - ShippedDate: '2019-04-16T00:00:00', - ShipVia: 2, - Freight: 102.0200, - ShipName: 'LILA-Supermercado', - ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', - ShipCity: 'Barquisimeto', - ShipRegion: 'Lara', - ShipPostalCode: '3508', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10500, - CustomerID: 'LAMAI', - EmployeeID: 6, - OrderDate: '2019-04-09T00:00:00', - RequiredDate: '2019-05-07T00:00:00', - ShippedDate: '2019-04-17T00:00:00', - ShipVia: 1, - Freight: 42.6800, - ShipName: 'La maison d\'Asie', - ShipAddress: '1 rue Alsace-Lorraine', - ShipCity: 'Toulouse', - ShipRegion: null, - ShipPostalCode: '31000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10501, - CustomerID: 'BLAUS', - EmployeeID: 9, - OrderDate: '2019-04-09T00:00:00', - RequiredDate: '2019-05-07T00:00:00', - ShippedDate: '2019-04-16T00:00:00', - ShipVia: 3, - Freight: 8.8500, - ShipName: 'Blauer See Delikatessen', - ShipAddress: 'Forsterstr. 57', - ShipCity: 'Mannheim', - ShipRegion: null, - ShipPostalCode: '68306', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10502, - CustomerID: 'PERIC', - EmployeeID: 2, - OrderDate: '2019-04-10T00:00:00', - RequiredDate: '2019-05-08T00:00:00', - ShippedDate: '2019-04-29T00:00:00', - ShipVia: 1, - Freight: 69.3200, - ShipName: 'Pericles Comidas clásicas', - ShipAddress: 'Calle Dr. Jorge Cash 321', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10503, - CustomerID: 'HUNGO', - EmployeeID: 6, - OrderDate: '2019-04-11T00:00:00', - RequiredDate: '2019-05-09T00:00:00', - ShippedDate: '2019-04-16T00:00:00', - ShipVia: 2, - Freight: 16.7400, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10504, - CustomerID: 'WHITC', - EmployeeID: 4, - OrderDate: '2019-04-11T00:00:00', - RequiredDate: '2019-05-09T00:00:00', - ShippedDate: '2019-04-18T00:00:00', - ShipVia: 3, - Freight: 59.1300, - ShipName: 'White Clover Markets', - ShipAddress: '1029 - 12th Ave. S.', - ShipCity: 'Seattle', - ShipRegion: 'WA', - ShipPostalCode: '98124', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10505, - CustomerID: 'MEREP', - EmployeeID: 3, - OrderDate: '2019-04-14T00:00:00', - RequiredDate: '2019-05-12T00:00:00', - ShippedDate: '2019-04-21T00:00:00', - ShipVia: 3, - Freight: 7.1300, - ShipName: 'Mère Paillarde', - ShipAddress: '43 rue St. Laurent', - ShipCity: 'Montréal', - ShipRegion: 'Québec', - ShipPostalCode: 'H1J 1C3', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10506, - CustomerID: 'KOENE', - EmployeeID: 9, - OrderDate: '2019-04-15T00:00:00', - RequiredDate: '2019-05-13T00:00:00', - ShippedDate: '2019-05-02T00:00:00', - ShipVia: 2, - Freight: 21.1900, - ShipName: 'Königlich Essen', - ShipAddress: 'Maubelstr. 90', - ShipCity: 'Brandenburg', - ShipRegion: null, - ShipPostalCode: '14776', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10507, - CustomerID: 'ANTON', - EmployeeID: 7, - OrderDate: '2019-04-15T00:00:00', - RequiredDate: '2019-05-13T00:00:00', - ShippedDate: '2019-04-22T00:00:00', - ShipVia: 1, - Freight: 47.4500, - ShipName: 'Antonio Moreno Taquería', - ShipAddress: 'Mataderos 2312', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05023', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10508, - CustomerID: 'OTTIK', - EmployeeID: 1, - OrderDate: '2019-04-16T00:00:00', - RequiredDate: '2019-05-14T00:00:00', - ShippedDate: '2019-05-13T00:00:00', - ShipVia: 2, - Freight: 4.9900, - ShipName: 'Ottilies Käseladen', - ShipAddress: 'Mehrheimerstr. 369', - ShipCity: 'Köln', - ShipRegion: null, - ShipPostalCode: '50739', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10509, - CustomerID: 'BLAUS', - EmployeeID: 4, - OrderDate: '2019-04-17T00:00:00', - RequiredDate: '2019-05-15T00:00:00', - ShippedDate: '2019-04-29T00:00:00', - ShipVia: 1, - Freight: 0.1500, - ShipName: 'Blauer See Delikatessen', - ShipAddress: 'Forsterstr. 57', - ShipCity: 'Mannheim', - ShipRegion: null, - ShipPostalCode: '68306', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10510, - CustomerID: 'SAVEA', - EmployeeID: 6, - OrderDate: '2019-04-18T00:00:00', - RequiredDate: '2019-05-16T00:00:00', - ShippedDate: '2019-04-28T00:00:00', - ShipVia: 3, - Freight: 367.6300, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10511, - CustomerID: 'BONAP', - EmployeeID: 4, - OrderDate: '2019-04-18T00:00:00', - RequiredDate: '2019-05-16T00:00:00', - ShippedDate: '2019-04-21T00:00:00', - ShipVia: 3, - Freight: 350.6400, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10512, - CustomerID: 'FAMIA', - EmployeeID: 7, - OrderDate: '2019-04-21T00:00:00', - RequiredDate: '2019-05-19T00:00:00', - ShippedDate: '2019-04-24T00:00:00', - ShipVia: 2, - Freight: 3.5300, - ShipName: 'Familia Arquibaldo', - ShipAddress: 'Rua Orós, 92', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05442-030', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10513, - CustomerID: 'WANDK', - EmployeeID: 7, - OrderDate: '2019-04-22T00:00:00', - RequiredDate: '2019-06-03T00:00:00', - ShippedDate: '2019-04-28T00:00:00', - ShipVia: 1, - Freight: 105.6500, - ShipName: 'Die Wandernde Kuh', - ShipAddress: 'Adenauerallee 900', - ShipCity: 'Stuttgart', - ShipRegion: null, - ShipPostalCode: '70563', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10514, - CustomerID: 'ERNSH', - EmployeeID: 3, - OrderDate: '2019-04-22T00:00:00', - RequiredDate: '2019-05-20T00:00:00', - ShippedDate: '2019-05-16T00:00:00', - ShipVia: 2, - Freight: 789.9500, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10515, - CustomerID: 'QUICK', - EmployeeID: 2, - OrderDate: '2019-04-23T00:00:00', - RequiredDate: '2019-05-07T00:00:00', - ShippedDate: '2019-05-23T00:00:00', - ShipVia: 1, - Freight: 204.4700, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10516, - CustomerID: 'HUNGO', - EmployeeID: 2, - OrderDate: '2019-04-24T00:00:00', - RequiredDate: '2019-05-22T00:00:00', - ShippedDate: '2019-05-01T00:00:00', - ShipVia: 3, - Freight: 62.7800, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10517, - CustomerID: 'NORTS', - EmployeeID: 3, - OrderDate: '2019-04-24T00:00:00', - RequiredDate: '2019-05-22T00:00:00', - ShippedDate: '2019-04-29T00:00:00', - ShipVia: 3, - Freight: 32.0700, - ShipName: 'North/South', - ShipAddress: 'South House 300 Queensbridge', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'SW7 1RZ', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10518, - CustomerID: 'TORTU', - EmployeeID: 4, - OrderDate: '2019-04-25T00:00:00', - RequiredDate: '2019-05-09T00:00:00', - ShippedDate: '2019-05-05T00:00:00', - ShipVia: 2, - Freight: 218.1500, - ShipName: 'Tortuga Restaurante', - ShipAddress: 'Avda. Azteca 123', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10519, - CustomerID: 'CHOPS', - EmployeeID: 6, - OrderDate: '2019-04-28T00:00:00', - RequiredDate: '2019-05-26T00:00:00', - ShippedDate: '2019-05-01T00:00:00', - ShipVia: 3, - Freight: 91.7600, - ShipName: 'Chop-suey Chinese', - ShipAddress: 'Hauptstr. 31', - ShipCity: 'Bern', - ShipRegion: null, - ShipPostalCode: '3012', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10520, - CustomerID: 'SANTG', - EmployeeID: 7, - OrderDate: '2019-04-29T00:00:00', - RequiredDate: '2019-05-27T00:00:00', - ShippedDate: '2019-05-01T00:00:00', - ShipVia: 1, - Freight: 13.3700, - ShipName: 'Santé Gourmet', - ShipAddress: 'Erling Skakkes gate 78', - ShipCity: 'Stavern', - ShipRegion: null, - ShipPostalCode: '4110', - ShipCountry: 'Norway', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10521, - CustomerID: 'CACTU', - EmployeeID: 8, - OrderDate: '2019-04-29T00:00:00', - RequiredDate: '2019-05-27T00:00:00', - ShippedDate: '2019-05-02T00:00:00', - ShipVia: 2, - Freight: 17.2200, - ShipName: 'Cactus Comidas para llevar', - ShipAddress: 'Cerrito 333', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10522, - CustomerID: 'LEHMS', - EmployeeID: 4, - OrderDate: '2019-04-30T00:00:00', - RequiredDate: '2019-05-28T00:00:00', - ShippedDate: '2019-05-06T00:00:00', - ShipVia: 1, - Freight: 45.3300, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10523, - CustomerID: 'SEVES', - EmployeeID: 7, - OrderDate: '2019-05-01T00:00:00', - RequiredDate: '2019-05-29T00:00:00', - ShippedDate: '2019-05-30T00:00:00', - ShipVia: 2, - Freight: 77.6300, - ShipName: 'Seven Seas Imports', - ShipAddress: '90 Wadhurst Rd.', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'OX15 4NB', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10524, - CustomerID: 'BERGS', - EmployeeID: 1, - OrderDate: '2019-05-01T00:00:00', - RequiredDate: '2019-05-29T00:00:00', - ShippedDate: '2019-05-07T00:00:00', - ShipVia: 2, - Freight: 244.7900, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10525, - CustomerID: 'BONAP', - EmployeeID: 1, - OrderDate: '2019-05-02T00:00:00', - RequiredDate: '2019-05-30T00:00:00', - ShippedDate: '2019-05-23T00:00:00', - ShipVia: 2, - Freight: 11.0600, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10526, - CustomerID: 'WARTH', - EmployeeID: 4, - OrderDate: '2019-05-05T00:00:00', - RequiredDate: '2019-06-02T00:00:00', - ShippedDate: '2019-05-15T00:00:00', - ShipVia: 2, - Freight: 58.5900, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10527, - CustomerID: 'QUICK', - EmployeeID: 7, - OrderDate: '2019-05-05T00:00:00', - RequiredDate: '2019-06-02T00:00:00', - ShippedDate: '2019-05-07T00:00:00', - ShipVia: 1, - Freight: 41.9000, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10528, - CustomerID: 'GREAL', - EmployeeID: 6, - OrderDate: '2019-05-06T00:00:00', - RequiredDate: '2019-05-20T00:00:00', - ShippedDate: '2019-05-09T00:00:00', - ShipVia: 2, - Freight: 3.3500, - ShipName: 'Great Lakes Food Market', - ShipAddress: '2732 Baker Blvd.', - ShipCity: 'Eugene', - ShipRegion: 'OR', - ShipPostalCode: '97403', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10529, - CustomerID: 'MAISD', - EmployeeID: 5, - OrderDate: '2019-05-07T00:00:00', - RequiredDate: '2019-06-04T00:00:00', - ShippedDate: '2019-05-09T00:00:00', - ShipVia: 2, - Freight: 66.6900, - ShipName: 'Maison Dewey', - ShipAddress: 'Rue Joseph-Bens 532', - ShipCity: 'Bruxelles', - ShipRegion: null, - ShipPostalCode: 'B-1180', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10530, - CustomerID: 'PICCO', - EmployeeID: 3, - OrderDate: '2019-05-08T00:00:00', - RequiredDate: '2019-06-05T00:00:00', - ShippedDate: '2019-05-12T00:00:00', - ShipVia: 2, - Freight: 339.2200, - ShipName: 'Piccolo und mehr', - ShipAddress: 'Geislweg 14', - ShipCity: 'Salzburg', - ShipRegion: null, - ShipPostalCode: '5020', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10531, - CustomerID: 'OCEAN', - EmployeeID: 7, - OrderDate: '2019-05-08T00:00:00', - RequiredDate: '2019-06-05T00:00:00', - ShippedDate: '2019-05-19T00:00:00', - ShipVia: 1, - Freight: 8.1200, - ShipName: 'Océano Atlántico Ltda.', - ShipAddress: 'Ing. Gustavo Moncada 8585 Piso 20-A', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10532, - CustomerID: 'EASTC', - EmployeeID: 7, - OrderDate: '2019-05-09T00:00:00', - RequiredDate: '2019-06-06T00:00:00', - ShippedDate: '2019-05-12T00:00:00', - ShipVia: 3, - Freight: 74.4600, - ShipName: 'Eastern Connection', - ShipAddress: '35 King George', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'WX3 6FW', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10533, - CustomerID: 'FOLKO', - EmployeeID: 8, - OrderDate: '2019-05-12T00:00:00', - RequiredDate: '2019-06-09T00:00:00', - ShippedDate: '2019-05-22T00:00:00', - ShipVia: 1, - Freight: 188.0400, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10534, - CustomerID: 'LEHMS', - EmployeeID: 8, - OrderDate: '2019-05-12T00:00:00', - RequiredDate: '2019-06-09T00:00:00', - ShippedDate: '2019-05-14T00:00:00', - ShipVia: 2, - Freight: 27.9400, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10535, - CustomerID: 'ANTON', - EmployeeID: 4, - OrderDate: '2019-05-13T00:00:00', - RequiredDate: '2019-06-10T00:00:00', - ShippedDate: '2019-05-21T00:00:00', - ShipVia: 1, - Freight: 15.6400, - ShipName: 'Antonio Moreno Taquería', - ShipAddress: 'Mataderos 2312', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05023', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10536, - CustomerID: 'LEHMS', - EmployeeID: 3, - OrderDate: '2019-05-14T00:00:00', - RequiredDate: '2019-06-11T00:00:00', - ShippedDate: '2019-06-06T00:00:00', - ShipVia: 2, - Freight: 58.8800, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10537, - CustomerID: 'RICSU', - EmployeeID: 1, - OrderDate: '2019-05-14T00:00:00', - RequiredDate: '2019-05-28T00:00:00', - ShippedDate: '2019-05-19T00:00:00', - ShipVia: 1, - Freight: 78.8500, - ShipName: 'Richter Supermarkt', - ShipAddress: 'Starenweg 5', - ShipCity: 'Genève', - ShipRegion: null, - ShipPostalCode: '1204', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10538, - CustomerID: 'BSBEV', - EmployeeID: 9, - OrderDate: '2019-05-15T00:00:00', - RequiredDate: '2019-06-12T00:00:00', - ShippedDate: '2019-05-16T00:00:00', - ShipVia: 3, - Freight: 4.8700, - ShipName: 'B\'s Beverages', - ShipAddress: 'Fauntleroy Circus', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'EC2 5NT', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10539, - CustomerID: 'BSBEV', - EmployeeID: 6, - OrderDate: '2019-05-16T00:00:00', - RequiredDate: '2019-06-13T00:00:00', - ShippedDate: '2019-05-23T00:00:00', - ShipVia: 3, - Freight: 12.3600, - ShipName: 'B\'s Beverages', - ShipAddress: 'Fauntleroy Circus', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'EC2 5NT', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10540, - CustomerID: 'QUICK', - EmployeeID: 3, - OrderDate: '2019-05-19T00:00:00', - RequiredDate: '2019-06-16T00:00:00', - ShippedDate: '2019-06-13T00:00:00', - ShipVia: 3, - Freight: 1007.6400, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10541, - CustomerID: 'HANAR', - EmployeeID: 2, - OrderDate: '2019-05-19T00:00:00', - RequiredDate: '2019-06-16T00:00:00', - ShippedDate: '2019-05-29T00:00:00', - ShipVia: 1, - Freight: 68.6500, - ShipName: 'Hanari Carnes', - ShipAddress: 'Rua do Paço, 67', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '05454-876', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10542, - CustomerID: 'KOENE', - EmployeeID: 1, - OrderDate: '2019-05-20T00:00:00', - RequiredDate: '2019-06-17T00:00:00', - ShippedDate: '2019-05-26T00:00:00', - ShipVia: 3, - Freight: 10.9500, - ShipName: 'Königlich Essen', - ShipAddress: 'Maubelstr. 90', - ShipCity: 'Brandenburg', - ShipRegion: null, - ShipPostalCode: '14776', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10543, - CustomerID: 'LILAS', - EmployeeID: 8, - OrderDate: '2019-05-21T00:00:00', - RequiredDate: '2019-06-18T00:00:00', - ShippedDate: '2019-05-23T00:00:00', - ShipVia: 2, - Freight: 48.1700, - ShipName: 'LILA-Supermercado', - ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', - ShipCity: 'Barquisimeto', - ShipRegion: 'Lara', - ShipPostalCode: '3508', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10544, - CustomerID: 'LONEP', - EmployeeID: 4, - OrderDate: '2019-05-21T00:00:00', - RequiredDate: '2019-06-18T00:00:00', - ShippedDate: '2019-05-30T00:00:00', - ShipVia: 1, - Freight: 24.9100, - ShipName: 'Lonesome Pine Restaurant', - ShipAddress: '89 Chiaroscuro Rd.', - ShipCity: 'Portland', - ShipRegion: 'OR', - ShipPostalCode: '97219', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10545, - CustomerID: 'LAZYK', - EmployeeID: 8, - OrderDate: '2019-05-22T00:00:00', - RequiredDate: '2019-06-19T00:00:00', - ShippedDate: '2019-06-26T00:00:00', - ShipVia: 2, - Freight: 11.9200, - ShipName: 'Lazy K Kountry Store', - ShipAddress: '12 Orchestra Terrace', - ShipCity: 'Walla Walla', - ShipRegion: 'WA', - ShipPostalCode: '99362', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10546, - CustomerID: 'VICTE', - EmployeeID: 1, - OrderDate: '2019-05-23T00:00:00', - RequiredDate: '2019-06-20T00:00:00', - ShippedDate: '2019-05-27T00:00:00', - ShipVia: 3, - Freight: 194.7200, - ShipName: 'Victuailles en stock', - ShipAddress: '2, rue du Commerce', - ShipCity: 'Lyon', - ShipRegion: null, - ShipPostalCode: '69004', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10547, - CustomerID: 'SEVES', - EmployeeID: 3, - OrderDate: '2019-05-23T00:00:00', - RequiredDate: '2019-06-20T00:00:00', - ShippedDate: '2019-06-02T00:00:00', - ShipVia: 2, - Freight: 178.4300, - ShipName: 'Seven Seas Imports', - ShipAddress: '90 Wadhurst Rd.', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'OX15 4NB', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10548, - CustomerID: 'TOMSP', - EmployeeID: 3, - OrderDate: '2019-05-26T00:00:00', - RequiredDate: '2019-06-23T00:00:00', - ShippedDate: '2019-06-02T00:00:00', - ShipVia: 2, - Freight: 1.4300, - ShipName: 'Toms Spezialitäten', - ShipAddress: 'Luisenstr. 48', - ShipCity: 'Münster', - ShipRegion: null, - ShipPostalCode: '44087', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10549, - CustomerID: 'QUICK', - EmployeeID: 5, - OrderDate: '2019-05-27T00:00:00', - RequiredDate: '2019-06-10T00:00:00', - ShippedDate: '2019-05-30T00:00:00', - ShipVia: 1, - Freight: 171.2400, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10550, - CustomerID: 'GODOS', - EmployeeID: 7, - OrderDate: '2019-05-28T00:00:00', - RequiredDate: '2019-06-25T00:00:00', - ShippedDate: '2019-06-06T00:00:00', - ShipVia: 3, - Freight: 4.3200, - ShipName: 'Godos Cocina Típica', - ShipAddress: 'C/ Romero, 33', - ShipCity: 'Sevilla', - ShipRegion: null, - ShipPostalCode: '41101', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10551, - CustomerID: 'FURIB', - EmployeeID: 4, - OrderDate: '2019-05-28T00:00:00', - RequiredDate: '2019-07-09T00:00:00', - ShippedDate: '2019-06-06T00:00:00', - ShipVia: 3, - Freight: 72.9500, - ShipName: 'Furia Bacalhau e Frutos do Mar', - ShipAddress: 'Jardim das rosas n. 32', - ShipCity: 'Lisboa', - ShipRegion: null, - ShipPostalCode: '1675', - ShipCountry: 'Portugal', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10552, - CustomerID: 'HILAA', - EmployeeID: 2, - OrderDate: '2019-05-29T00:00:00', - RequiredDate: '2019-06-26T00:00:00', - ShippedDate: '2019-06-05T00:00:00', - ShipVia: 1, - Freight: 83.2200, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10553, - CustomerID: 'WARTH', - EmployeeID: 2, - OrderDate: '2019-05-30T00:00:00', - RequiredDate: '2019-06-27T00:00:00', - ShippedDate: '2019-06-03T00:00:00', - ShipVia: 2, - Freight: 149.4900, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10554, - CustomerID: 'OTTIK', - EmployeeID: 4, - OrderDate: '2019-05-30T00:00:00', - RequiredDate: '2019-06-27T00:00:00', - ShippedDate: '2019-06-05T00:00:00', - ShipVia: 3, - Freight: 120.9700, - ShipName: 'Ottilies Käseladen', - ShipAddress: 'Mehrheimerstr. 369', - ShipCity: 'Köln', - ShipRegion: null, - ShipPostalCode: '50739', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10555, - CustomerID: 'SAVEA', - EmployeeID: 6, - OrderDate: '2019-06-02T00:00:00', - RequiredDate: '2019-06-30T00:00:00', - ShippedDate: '2019-06-04T00:00:00', - ShipVia: 3, - Freight: 252.4900, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10556, - CustomerID: 'SIMOB', - EmployeeID: 2, - OrderDate: '2019-06-03T00:00:00', - RequiredDate: '2019-07-15T00:00:00', - ShippedDate: '2019-06-13T00:00:00', - ShipVia: 1, - Freight: 9.8000, - ShipName: 'Simons bistro', - ShipAddress: 'Vinbæltet 34', - ShipCity: 'Kobenhavn', - ShipRegion: null, - ShipPostalCode: '1734', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10557, - CustomerID: 'LEHMS', - EmployeeID: 9, - OrderDate: '2019-06-03T00:00:00', - RequiredDate: '2019-06-17T00:00:00', - ShippedDate: '2019-06-06T00:00:00', - ShipVia: 2, - Freight: 96.7200, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10558, - CustomerID: 'AROUT', - EmployeeID: 1, - OrderDate: '2019-06-04T00:00:00', - RequiredDate: '2019-07-02T00:00:00', - ShippedDate: '2019-06-10T00:00:00', - ShipVia: 2, - Freight: 72.9700, - ShipName: 'Around the Horn', - ShipAddress: 'Brook Farm Stratford St. Mary', - ShipCity: 'Colchester', - ShipRegion: 'Essex', - ShipPostalCode: 'CO7 6JX', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10559, - CustomerID: 'BLONP', - EmployeeID: 6, - OrderDate: '2019-06-05T00:00:00', - RequiredDate: '2019-07-03T00:00:00', - ShippedDate: '2019-06-13T00:00:00', - ShipVia: 1, - Freight: 8.0500, - ShipName: 'Blondel père et fils', - ShipAddress: '24, place Kléber', - ShipCity: 'Strasbourg', - ShipRegion: null, - ShipPostalCode: '67000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10560, - CustomerID: 'FRANK', - EmployeeID: 8, - OrderDate: '2019-06-06T00:00:00', - RequiredDate: '2019-07-04T00:00:00', - ShippedDate: '2019-06-09T00:00:00', - ShipVia: 1, - Freight: 36.6500, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10561, - CustomerID: 'FOLKO', - EmployeeID: 2, - OrderDate: '2019-06-06T00:00:00', - RequiredDate: '2019-07-04T00:00:00', - ShippedDate: '2019-06-09T00:00:00', - ShipVia: 2, - Freight: 242.2100, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10562, - CustomerID: 'REGGC', - EmployeeID: 1, - OrderDate: '2019-06-09T00:00:00', - RequiredDate: '2019-07-07T00:00:00', - ShippedDate: '2019-06-12T00:00:00', - ShipVia: 1, - Freight: 22.9500, - ShipName: 'Reggiani Caseifici', - ShipAddress: 'Strada Provinciale 124', - ShipCity: 'Reggio Emilia', - ShipRegion: null, - ShipPostalCode: '42100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10563, - CustomerID: 'RICAR', - EmployeeID: 2, - OrderDate: '2019-06-10T00:00:00', - RequiredDate: '2019-07-22T00:00:00', - ShippedDate: '2019-06-24T00:00:00', - ShipVia: 2, - Freight: 60.4300, - ShipName: 'Ricardo Adocicados', - ShipAddress: 'Av. Copacabana, 267', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-890', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10564, - CustomerID: 'RATTC', - EmployeeID: 4, - OrderDate: '2019-06-10T00:00:00', - RequiredDate: '2019-07-08T00:00:00', - ShippedDate: '2019-06-16T00:00:00', - ShipVia: 3, - Freight: 13.7500, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10565, - CustomerID: 'MEREP', - EmployeeID: 8, - OrderDate: '2019-06-11T00:00:00', - RequiredDate: '2019-07-09T00:00:00', - ShippedDate: '2019-06-18T00:00:00', - ShipVia: 2, - Freight: 7.1500, - ShipName: 'Mère Paillarde', - ShipAddress: '43 rue St. Laurent', - ShipCity: 'Montréal', - ShipRegion: 'Québec', - ShipPostalCode: 'H1J 1C3', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10566, - CustomerID: 'BLONP', - EmployeeID: 9, - OrderDate: '2019-06-12T00:00:00', - RequiredDate: '2019-07-10T00:00:00', - ShippedDate: '2019-06-18T00:00:00', - ShipVia: 1, - Freight: 88.4000, - ShipName: 'Blondel père et fils', - ShipAddress: '24, place Kléber', - ShipCity: 'Strasbourg', - ShipRegion: null, - ShipPostalCode: '67000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10567, - CustomerID: 'HUNGO', - EmployeeID: 1, - OrderDate: '2019-06-12T00:00:00', - RequiredDate: '2019-07-10T00:00:00', - ShippedDate: '2019-06-17T00:00:00', - ShipVia: 1, - Freight: 33.9700, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10568, - CustomerID: 'GALED', - EmployeeID: 3, - OrderDate: '2019-06-13T00:00:00', - RequiredDate: '2019-07-11T00:00:00', - ShippedDate: '2019-07-09T00:00:00', - ShipVia: 3, - Freight: 6.5400, - ShipName: 'Galería del gastronómo', - ShipAddress: 'Rambla de Cataluña, 23', - ShipCity: 'Barcelona', - ShipRegion: null, - ShipPostalCode: '8022', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10569, - CustomerID: 'RATTC', - EmployeeID: 5, - OrderDate: '2019-06-16T00:00:00', - RequiredDate: '2019-07-14T00:00:00', - ShippedDate: '2019-07-11T00:00:00', - ShipVia: 1, - Freight: 58.9800, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10570, - CustomerID: 'MEREP', - EmployeeID: 3, - OrderDate: '2019-06-17T00:00:00', - RequiredDate: '2019-07-15T00:00:00', - ShippedDate: '2019-06-19T00:00:00', - ShipVia: 3, - Freight: 188.9900, - ShipName: 'Mère Paillarde', - ShipAddress: '43 rue St. Laurent', - ShipCity: 'Montréal', - ShipRegion: 'Québec', - ShipPostalCode: 'H1J 1C3', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10571, - CustomerID: 'ERNSH', - EmployeeID: 8, - OrderDate: '2019-06-17T00:00:00', - RequiredDate: '2019-07-29T00:00:00', - ShippedDate: '2019-07-04T00:00:00', - ShipVia: 3, - Freight: 26.0600, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10572, - CustomerID: 'BERGS', - EmployeeID: 3, - OrderDate: '2019-06-18T00:00:00', - RequiredDate: '2019-07-16T00:00:00', - ShippedDate: '2019-06-25T00:00:00', - ShipVia: 2, - Freight: 116.4300, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10573, - CustomerID: 'ANTON', - EmployeeID: 7, - OrderDate: '2019-06-19T00:00:00', - RequiredDate: '2019-07-17T00:00:00', - ShippedDate: '2019-06-20T00:00:00', - ShipVia: 3, - Freight: 84.8400, - ShipName: 'Antonio Moreno Taquería', - ShipAddress: 'Mataderos 2312', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05023', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10574, - CustomerID: 'TRAIH', - EmployeeID: 4, - OrderDate: '2019-06-19T00:00:00', - RequiredDate: '2019-07-17T00:00:00', - ShippedDate: '2019-06-30T00:00:00', - ShipVia: 2, - Freight: 37.6000, - ShipName: 'Trail\'s Head Gourmet Provisioners', - ShipAddress: '722 DaVinci Blvd.', - ShipCity: 'Kirkland', - ShipRegion: 'WA', - ShipPostalCode: '98034', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10575, - CustomerID: 'MORGK', - EmployeeID: 5, - OrderDate: '2019-06-20T00:00:00', - RequiredDate: '2019-07-04T00:00:00', - ShippedDate: '2019-06-30T00:00:00', - ShipVia: 1, - Freight: 127.3400, - ShipName: 'Morgenstern Gesundkost', - ShipAddress: 'Heerstr. 22', - ShipCity: 'Leipzig', - ShipRegion: null, - ShipPostalCode: '04179', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10576, - CustomerID: 'TORTU', - EmployeeID: 3, - OrderDate: '2019-06-23T00:00:00', - RequiredDate: '2019-07-07T00:00:00', - ShippedDate: '2019-06-30T00:00:00', - ShipVia: 3, - Freight: 18.5600, - ShipName: 'Tortuga Restaurante', - ShipAddress: 'Avda. Azteca 123', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10577, - CustomerID: 'TRAIH', - EmployeeID: 9, - OrderDate: '2019-06-23T00:00:00', - RequiredDate: '2019-08-04T00:00:00', - ShippedDate: '2019-06-30T00:00:00', - ShipVia: 2, - Freight: 25.4100, - ShipName: 'Trail\'s Head Gourmet Provisioners', - ShipAddress: '722 DaVinci Blvd.', - ShipCity: 'Kirkland', - ShipRegion: 'WA', - ShipPostalCode: '98034', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10578, - CustomerID: 'BSBEV', - EmployeeID: 4, - OrderDate: '2019-06-24T00:00:00', - RequiredDate: '2019-07-22T00:00:00', - ShippedDate: '2019-07-25T00:00:00', - ShipVia: 3, - Freight: 29.6000, - ShipName: 'B\'s Beverages', - ShipAddress: 'Fauntleroy Circus', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'EC2 5NT', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10579, - CustomerID: 'LETSS', - EmployeeID: 1, - OrderDate: '2019-06-25T00:00:00', - RequiredDate: '2019-07-23T00:00:00', - ShippedDate: '2019-07-04T00:00:00', - ShipVia: 2, - Freight: 13.7300, - ShipName: 'Let\'s Stop N Shop', - ShipAddress: '87 Polk St. Suite 5', - ShipCity: 'San Francisco', - ShipRegion: 'CA', - ShipPostalCode: '94117', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10580, - CustomerID: 'OTTIK', - EmployeeID: 4, - OrderDate: '2019-06-26T00:00:00', - RequiredDate: '2019-07-24T00:00:00', - ShippedDate: '2019-07-01T00:00:00', - ShipVia: 3, - Freight: 75.8900, - ShipName: 'Ottilies Käseladen', - ShipAddress: 'Mehrheimerstr. 369', - ShipCity: 'Köln', - ShipRegion: null, - ShipPostalCode: '50739', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10581, - CustomerID: 'FAMIA', - EmployeeID: 3, - OrderDate: '2019-06-26T00:00:00', - RequiredDate: '2019-07-24T00:00:00', - ShippedDate: '2019-07-02T00:00:00', - ShipVia: 1, - Freight: 3.0100, - ShipName: 'Familia Arquibaldo', - ShipAddress: 'Rua Orós, 92', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05442-030', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10582, - CustomerID: 'BLAUS', - EmployeeID: 3, - OrderDate: '2019-06-27T00:00:00', - RequiredDate: '2019-07-25T00:00:00', - ShippedDate: '2019-07-14T00:00:00', - ShipVia: 2, - Freight: 27.7100, - ShipName: 'Blauer See Delikatessen', - ShipAddress: 'Forsterstr. 57', - ShipCity: 'Mannheim', - ShipRegion: null, - ShipPostalCode: '68306', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10583, - CustomerID: 'WARTH', - EmployeeID: 2, - OrderDate: '2019-06-30T00:00:00', - RequiredDate: '2019-07-28T00:00:00', - ShippedDate: '2019-07-04T00:00:00', - ShipVia: 2, - Freight: 7.2800, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10584, - CustomerID: 'BLONP', - EmployeeID: 4, - OrderDate: '2019-06-30T00:00:00', - RequiredDate: '2019-07-28T00:00:00', - ShippedDate: '2019-07-04T00:00:00', - ShipVia: 1, - Freight: 59.1400, - ShipName: 'Blondel père et fils', - ShipAddress: '24, place Kléber', - ShipCity: 'Strasbourg', - ShipRegion: null, - ShipPostalCode: '67000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10585, - CustomerID: 'WELLI', - EmployeeID: 7, - OrderDate: '2019-07-01T00:00:00', - RequiredDate: '2019-07-29T00:00:00', - ShippedDate: '2019-07-10T00:00:00', - ShipVia: 1, - Freight: 13.4100, - ShipName: 'Wellington Importadora', - ShipAddress: 'Rua do Mercado, 12', - ShipCity: 'Resende', - ShipRegion: 'SP', - ShipPostalCode: '08737-363', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10586, - CustomerID: 'REGGC', - EmployeeID: 9, - OrderDate: '2019-07-02T00:00:00', - RequiredDate: '2019-07-30T00:00:00', - ShippedDate: '2019-07-09T00:00:00', - ShipVia: 1, - Freight: 0.4800, - ShipName: 'Reggiani Caseifici', - ShipAddress: 'Strada Provinciale 124', - ShipCity: 'Reggio Emilia', - ShipRegion: null, - ShipPostalCode: '42100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10587, - CustomerID: 'QUEDE', - EmployeeID: 1, - OrderDate: '2019-07-02T00:00:00', - RequiredDate: '2019-07-30T00:00:00', - ShippedDate: '2019-07-09T00:00:00', - ShipVia: 1, - Freight: 62.5200, - ShipName: 'Que Delícia', - ShipAddress: 'Rua da Panificadora, 12', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-673', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10588, - CustomerID: 'QUICK', - EmployeeID: 2, - OrderDate: '2019-07-03T00:00:00', - RequiredDate: '2019-07-31T00:00:00', - ShippedDate: '2019-07-10T00:00:00', - ShipVia: 3, - Freight: 194.6700, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10589, - CustomerID: 'GREAL', - EmployeeID: 8, - OrderDate: '2019-07-04T00:00:00', - RequiredDate: '2019-08-01T00:00:00', - ShippedDate: '2019-07-14T00:00:00', - ShipVia: 2, - Freight: 4.4200, - ShipName: 'Great Lakes Food Market', - ShipAddress: '2732 Baker Blvd.', - ShipCity: 'Eugene', - ShipRegion: 'OR', - ShipPostalCode: '97403', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10590, - CustomerID: 'MEREP', - EmployeeID: 4, - OrderDate: '2019-07-07T00:00:00', - RequiredDate: '2019-08-04T00:00:00', - ShippedDate: '2019-07-14T00:00:00', - ShipVia: 3, - Freight: 44.7700, - ShipName: 'Mère Paillarde', - ShipAddress: '43 rue St. Laurent', - ShipCity: 'Montréal', - ShipRegion: 'Québec', - ShipPostalCode: 'H1J 1C3', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10591, - CustomerID: 'VAFFE', - EmployeeID: 1, - OrderDate: '2019-07-07T00:00:00', - RequiredDate: '2019-07-21T00:00:00', - ShippedDate: '2019-07-16T00:00:00', - ShipVia: 1, - Freight: 55.9200, - ShipName: 'Vaffeljernet', - ShipAddress: 'Smagsloget 45', - ShipCity: 'Århus', - ShipRegion: null, - ShipPostalCode: '8200', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10592, - CustomerID: 'LEHMS', - EmployeeID: 3, - OrderDate: '2019-07-08T00:00:00', - RequiredDate: '2019-08-05T00:00:00', - ShippedDate: '2019-07-16T00:00:00', - ShipVia: 1, - Freight: 32.1000, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10593, - CustomerID: 'LEHMS', - EmployeeID: 7, - OrderDate: '2019-07-09T00:00:00', - RequiredDate: '2019-08-06T00:00:00', - ShippedDate: '2019-08-13T00:00:00', - ShipVia: 2, - Freight: 174.2000, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10594, - CustomerID: 'OLDWO', - EmployeeID: 3, - OrderDate: '2019-07-09T00:00:00', - RequiredDate: '2019-08-06T00:00:00', - ShippedDate: '2019-07-16T00:00:00', - ShipVia: 2, - Freight: 5.2400, - ShipName: 'Old World Delicatessen', - ShipAddress: '2743 Bering St.', - ShipCity: 'Anchorage', - ShipRegion: 'AK', - ShipPostalCode: '99508', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10595, - CustomerID: 'ERNSH', - EmployeeID: 2, - OrderDate: '2019-07-10T00:00:00', - RequiredDate: '2019-08-07T00:00:00', - ShippedDate: '2019-07-14T00:00:00', - ShipVia: 1, - Freight: 96.7800, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10596, - CustomerID: 'WHITC', - EmployeeID: 8, - OrderDate: '2019-07-11T00:00:00', - RequiredDate: '2019-08-08T00:00:00', - ShippedDate: '2019-08-12T00:00:00', - ShipVia: 1, - Freight: 16.3400, - ShipName: 'White Clover Markets', - ShipAddress: '1029 - 12th Ave. S.', - ShipCity: 'Seattle', - ShipRegion: 'WA', - ShipPostalCode: '98124', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10597, - CustomerID: 'PICCO', - EmployeeID: 7, - OrderDate: '2019-07-11T00:00:00', - RequiredDate: '2019-08-08T00:00:00', - ShippedDate: '2019-07-18T00:00:00', - ShipVia: 3, - Freight: 35.1200, - ShipName: 'Piccolo und mehr', - ShipAddress: 'Geislweg 14', - ShipCity: 'Salzburg', - ShipRegion: null, - ShipPostalCode: '5020', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10598, - CustomerID: 'RATTC', - EmployeeID: 1, - OrderDate: '2019-07-14T00:00:00', - RequiredDate: '2019-08-11T00:00:00', - ShippedDate: '2019-07-18T00:00:00', - ShipVia: 3, - Freight: 44.4200, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10599, - CustomerID: 'BSBEV', - EmployeeID: 6, - OrderDate: '2019-07-15T00:00:00', - RequiredDate: '2019-08-26T00:00:00', - ShippedDate: '2019-07-21T00:00:00', - ShipVia: 3, - Freight: 29.9800, - ShipName: 'B\'s Beverages', - ShipAddress: 'Fauntleroy Circus', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'EC2 5NT', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10600, - CustomerID: 'HUNGC', - EmployeeID: 4, - OrderDate: '2019-07-16T00:00:00', - RequiredDate: '2019-08-13T00:00:00', - ShippedDate: '2019-07-21T00:00:00', - ShipVia: 1, - Freight: 45.1300, - ShipName: 'Hungry Coyote Import Store', - ShipAddress: 'City Center Plaza 516 Main St.', - ShipCity: 'Elgin', - ShipRegion: 'OR', - ShipPostalCode: '97827', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10601, - CustomerID: 'HILAA', - EmployeeID: 7, - OrderDate: '2019-07-16T00:00:00', - RequiredDate: '2019-08-27T00:00:00', - ShippedDate: '2019-07-22T00:00:00', - ShipVia: 1, - Freight: 58.3000, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10602, - CustomerID: 'VAFFE', - EmployeeID: 8, - OrderDate: '2019-07-17T00:00:00', - RequiredDate: '2019-08-14T00:00:00', - ShippedDate: '2019-07-22T00:00:00', - ShipVia: 2, - Freight: 2.9200, - ShipName: 'Vaffeljernet', - ShipAddress: 'Smagsloget 45', - ShipCity: 'Århus', - ShipRegion: null, - ShipPostalCode: '8200', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10603, - CustomerID: 'SAVEA', - EmployeeID: 8, - OrderDate: '2019-07-18T00:00:00', - RequiredDate: '2019-08-15T00:00:00', - ShippedDate: '2019-08-08T00:00:00', - ShipVia: 2, - Freight: 48.7700, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10604, - CustomerID: 'FURIB', - EmployeeID: 1, - OrderDate: '2019-07-18T00:00:00', - RequiredDate: '2019-08-15T00:00:00', - ShippedDate: '2019-07-29T00:00:00', - ShipVia: 1, - Freight: 7.4600, - ShipName: 'Furia Bacalhau e Frutos do Mar', - ShipAddress: 'Jardim das rosas n. 32', - ShipCity: 'Lisboa', - ShipRegion: null, - ShipPostalCode: '1675', - ShipCountry: 'Portugal', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10605, - CustomerID: 'MEREP', - EmployeeID: 1, - OrderDate: '2019-07-21T00:00:00', - RequiredDate: '2019-08-18T00:00:00', - ShippedDate: '2019-07-29T00:00:00', - ShipVia: 2, - Freight: 379.1300, - ShipName: 'Mère Paillarde', - ShipAddress: '43 rue St. Laurent', - ShipCity: 'Montréal', - ShipRegion: 'Québec', - ShipPostalCode: 'H1J 1C3', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10606, - CustomerID: 'TRADH', - EmployeeID: 4, - OrderDate: '2019-07-22T00:00:00', - RequiredDate: '2019-08-19T00:00:00', - ShippedDate: '2019-07-31T00:00:00', - ShipVia: 3, - Freight: 79.4000, - ShipName: 'Tradiçao Hipermercados', - ShipAddress: 'Av. Inês de Castro, 414', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05634-030', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10607, - CustomerID: 'SAVEA', - EmployeeID: 5, - OrderDate: '2019-07-22T00:00:00', - RequiredDate: '2019-08-19T00:00:00', - ShippedDate: '2019-07-25T00:00:00', - ShipVia: 1, - Freight: 200.2400, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10608, - CustomerID: 'TOMSP', - EmployeeID: 4, - OrderDate: '2019-07-23T00:00:00', - RequiredDate: '2019-08-20T00:00:00', - ShippedDate: '2019-08-01T00:00:00', - ShipVia: 2, - Freight: 27.7900, - ShipName: 'Toms Spezialitäten', - ShipAddress: 'Luisenstr. 48', - ShipCity: 'Münster', - ShipRegion: null, - ShipPostalCode: '44087', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10609, - CustomerID: 'DUMON', - EmployeeID: 7, - OrderDate: '2019-07-24T00:00:00', - RequiredDate: '2019-08-21T00:00:00', - ShippedDate: '2019-07-30T00:00:00', - ShipVia: 2, - Freight: 1.8500, - ShipName: 'Du monde entier', - ShipAddress: '67, rue des Cinquante Otages', - ShipCity: 'Nantes', - ShipRegion: null, - ShipPostalCode: '44000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10610, - CustomerID: 'LAMAI', - EmployeeID: 8, - OrderDate: '2019-07-25T00:00:00', - RequiredDate: '2019-08-22T00:00:00', - ShippedDate: '2019-08-06T00:00:00', - ShipVia: 1, - Freight: 26.7800, - ShipName: 'La maison d\'Asie', - ShipAddress: '1 rue Alsace-Lorraine', - ShipCity: 'Toulouse', - ShipRegion: null, - ShipPostalCode: '31000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10611, - CustomerID: 'WOLZA', - EmployeeID: 6, - OrderDate: '2019-07-25T00:00:00', - RequiredDate: '2019-08-22T00:00:00', - ShippedDate: '2019-08-01T00:00:00', - ShipVia: 2, - Freight: 80.6500, - ShipName: 'Wolski Zajazd', - ShipAddress: 'ul. Filtrowa 68', - ShipCity: 'Warszawa', - ShipRegion: null, - ShipPostalCode: '01-012', - ShipCountry: 'Poland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10612, - CustomerID: 'SAVEA', - EmployeeID: 1, - OrderDate: '2019-07-28T00:00:00', - RequiredDate: '2019-08-25T00:00:00', - ShippedDate: '2019-08-01T00:00:00', - ShipVia: 2, - Freight: 544.0800, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10613, - CustomerID: 'HILAA', - EmployeeID: 4, - OrderDate: '2019-07-29T00:00:00', - RequiredDate: '2019-08-26T00:00:00', - ShippedDate: '2019-08-01T00:00:00', - ShipVia: 2, - Freight: 8.1100, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10614, - CustomerID: 'BLAUS', - EmployeeID: 8, - OrderDate: '2019-07-29T00:00:00', - RequiredDate: '2019-08-26T00:00:00', - ShippedDate: '2019-08-01T00:00:00', - ShipVia: 3, - Freight: 1.9300, - ShipName: 'Blauer See Delikatessen', - ShipAddress: 'Forsterstr. 57', - ShipCity: 'Mannheim', - ShipRegion: null, - ShipPostalCode: '68306', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10615, - CustomerID: 'WILMK', - EmployeeID: 2, - OrderDate: '2019-07-30T00:00:00', - RequiredDate: '2019-08-27T00:00:00', - ShippedDate: '2019-08-06T00:00:00', - ShipVia: 3, - Freight: 0.7500, - ShipName: 'Wilman Kala', - ShipAddress: 'Keskuskatu 45', - ShipCity: 'Helsinki', - ShipRegion: null, - ShipPostalCode: '21240', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10616, - CustomerID: 'GREAL', - EmployeeID: 1, - OrderDate: '2019-07-31T00:00:00', - RequiredDate: '2019-08-28T00:00:00', - ShippedDate: '2019-08-05T00:00:00', - ShipVia: 2, - Freight: 116.5300, - ShipName: 'Great Lakes Food Market', - ShipAddress: '2732 Baker Blvd.', - ShipCity: 'Eugene', - ShipRegion: 'OR', - ShipPostalCode: '97403', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10617, - CustomerID: 'GREAL', - EmployeeID: 4, - OrderDate: '2019-07-31T00:00:00', - RequiredDate: '2019-08-28T00:00:00', - ShippedDate: '2019-08-04T00:00:00', - ShipVia: 2, - Freight: 18.5300, - ShipName: 'Great Lakes Food Market', - ShipAddress: '2732 Baker Blvd.', - ShipCity: 'Eugene', - ShipRegion: 'OR', - ShipPostalCode: '97403', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10618, - CustomerID: 'MEREP', - EmployeeID: 1, - OrderDate: '2019-08-01T00:00:00', - RequiredDate: '2019-09-12T00:00:00', - ShippedDate: '2019-08-08T00:00:00', - ShipVia: 1, - Freight: 154.6800, - ShipName: 'Mère Paillarde', - ShipAddress: '43 rue St. Laurent', - ShipCity: 'Montréal', - ShipRegion: 'Québec', - ShipPostalCode: 'H1J 1C3', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10619, - CustomerID: 'MEREP', - EmployeeID: 3, - OrderDate: '2019-08-04T00:00:00', - RequiredDate: '2019-09-01T00:00:00', - ShippedDate: '2019-08-07T00:00:00', - ShipVia: 3, - Freight: 91.0500, - ShipName: 'Mère Paillarde', - ShipAddress: '43 rue St. Laurent', - ShipCity: 'Montréal', - ShipRegion: 'Québec', - ShipPostalCode: 'H1J 1C3', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10620, - CustomerID: 'LAUGB', - EmployeeID: 2, - OrderDate: '2019-08-05T00:00:00', - RequiredDate: '2019-09-02T00:00:00', - ShippedDate: '2019-08-14T00:00:00', - ShipVia: 3, - Freight: 0.9400, - ShipName: 'Laughing Bacchus Wine Cellars', - ShipAddress: '2319 Elm St.', - ShipCity: 'Vancouver', - ShipRegion: 'BC', - ShipPostalCode: 'V3F 2K1', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10621, - CustomerID: 'ISLAT', - EmployeeID: 4, - OrderDate: '2019-08-05T00:00:00', - RequiredDate: '2019-09-02T00:00:00', - ShippedDate: '2019-08-11T00:00:00', - ShipVia: 2, - Freight: 23.7300, - ShipName: 'Island Trading', - ShipAddress: 'Garden House Crowther Way', - ShipCity: 'Cowes', - ShipRegion: 'Isle of Wight', - ShipPostalCode: 'PO31 7PJ', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10622, - CustomerID: 'RICAR', - EmployeeID: 4, - OrderDate: '2019-08-06T00:00:00', - RequiredDate: '2019-09-03T00:00:00', - ShippedDate: '2019-08-11T00:00:00', - ShipVia: 3, - Freight: 50.9700, - ShipName: 'Ricardo Adocicados', - ShipAddress: 'Av. Copacabana, 267', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-890', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10623, - CustomerID: 'FRANK', - EmployeeID: 8, - OrderDate: '2019-08-07T00:00:00', - RequiredDate: '2019-09-04T00:00:00', - ShippedDate: '2019-08-12T00:00:00', - ShipVia: 2, - Freight: 97.1800, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10624, - CustomerID: 'THECR', - EmployeeID: 4, - OrderDate: '2019-08-07T00:00:00', - RequiredDate: '2019-09-04T00:00:00', - ShippedDate: '2019-08-19T00:00:00', - ShipVia: 2, - Freight: 94.8000, - ShipName: 'The Cracker Box', - ShipAddress: '55 Grizzly Peak Rd.', - ShipCity: 'Butte', - ShipRegion: 'MT', - ShipPostalCode: '59801', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10625, - CustomerID: 'ANATR', - EmployeeID: 3, - OrderDate: '2019-08-08T00:00:00', - RequiredDate: '2019-09-05T00:00:00', - ShippedDate: '2019-08-14T00:00:00', - ShipVia: 1, - Freight: 43.9000, - ShipName: 'Ana Trujillo Emparedados y helados', - ShipAddress: 'Avda. de la Constitución 2222', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05021', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10626, - CustomerID: 'BERGS', - EmployeeID: 1, - OrderDate: '2019-08-11T00:00:00', - RequiredDate: '2019-09-08T00:00:00', - ShippedDate: '2019-08-20T00:00:00', - ShipVia: 2, - Freight: 138.6900, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10627, - CustomerID: 'SAVEA', - EmployeeID: 8, - OrderDate: '2019-08-11T00:00:00', - RequiredDate: '2019-09-22T00:00:00', - ShippedDate: '2019-08-21T00:00:00', - ShipVia: 3, - Freight: 107.4600, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10628, - CustomerID: 'BLONP', - EmployeeID: 4, - OrderDate: '2019-08-12T00:00:00', - RequiredDate: '2019-09-09T00:00:00', - ShippedDate: '2019-08-20T00:00:00', - ShipVia: 3, - Freight: 30.3600, - ShipName: 'Blondel père et fils', - ShipAddress: '24, place Kléber', - ShipCity: 'Strasbourg', - ShipRegion: null, - ShipPostalCode: '67000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10629, - CustomerID: 'GODOS', - EmployeeID: 4, - OrderDate: '2019-08-12T00:00:00', - RequiredDate: '2019-09-09T00:00:00', - ShippedDate: '2019-08-20T00:00:00', - ShipVia: 3, - Freight: 85.4600, - ShipName: 'Godos Cocina Típica', - ShipAddress: 'C/ Romero, 33', - ShipCity: 'Sevilla', - ShipRegion: null, - ShipPostalCode: '41101', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10630, - CustomerID: 'KOENE', - EmployeeID: 1, - OrderDate: '2019-08-13T00:00:00', - RequiredDate: '2019-09-10T00:00:00', - ShippedDate: '2019-08-19T00:00:00', - ShipVia: 2, - Freight: 32.3500, - ShipName: 'Königlich Essen', - ShipAddress: 'Maubelstr. 90', - ShipCity: 'Brandenburg', - ShipRegion: null, - ShipPostalCode: '14776', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10631, - CustomerID: 'LAMAI', - EmployeeID: 8, - OrderDate: '2019-08-14T00:00:00', - RequiredDate: '2019-09-11T00:00:00', - ShippedDate: '2019-08-15T00:00:00', - ShipVia: 1, - Freight: 0.8700, - ShipName: 'La maison d\'Asie', - ShipAddress: '1 rue Alsace-Lorraine', - ShipCity: 'Toulouse', - ShipRegion: null, - ShipPostalCode: '31000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10632, - CustomerID: 'WANDK', - EmployeeID: 8, - OrderDate: '2019-08-14T00:00:00', - RequiredDate: '2019-09-11T00:00:00', - ShippedDate: '2019-08-19T00:00:00', - ShipVia: 1, - Freight: 41.3800, - ShipName: 'Die Wandernde Kuh', - ShipAddress: 'Adenauerallee 900', - ShipCity: 'Stuttgart', - ShipRegion: null, - ShipPostalCode: '70563', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10633, - CustomerID: 'ERNSH', - EmployeeID: 7, - OrderDate: '2019-08-15T00:00:00', - RequiredDate: '2019-09-12T00:00:00', - ShippedDate: '2019-08-18T00:00:00', - ShipVia: 3, - Freight: 477.9000, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10634, - CustomerID: 'FOLIG', - EmployeeID: 4, - OrderDate: '2019-08-15T00:00:00', - RequiredDate: '2019-09-12T00:00:00', - ShippedDate: '2019-08-21T00:00:00', - ShipVia: 3, - Freight: 487.3800, - ShipName: 'Folies gourmandes', - ShipAddress: '184, chaussée de Tournai', - ShipCity: 'Lille', - ShipRegion: null, - ShipPostalCode: '59000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10635, - CustomerID: 'MAGAA', - EmployeeID: 8, - OrderDate: '2019-08-18T00:00:00', - RequiredDate: '2019-09-15T00:00:00', - ShippedDate: '2019-08-21T00:00:00', - ShipVia: 3, - Freight: 47.4600, - ShipName: 'Magazzini Alimentari Riuniti', - ShipAddress: 'Via Ludovico il Moro 22', - ShipCity: 'Bergamo', - ShipRegion: null, - ShipPostalCode: '24100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10636, - CustomerID: 'WARTH', - EmployeeID: 4, - OrderDate: '2019-08-19T00:00:00', - RequiredDate: '2019-09-16T00:00:00', - ShippedDate: '2019-08-26T00:00:00', - ShipVia: 1, - Freight: 1.1500, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10637, - CustomerID: 'QUEEN', - EmployeeID: 6, - OrderDate: '2019-08-19T00:00:00', - RequiredDate: '2019-09-16T00:00:00', - ShippedDate: '2019-08-26T00:00:00', - ShipVia: 1, - Freight: 201.2900, - ShipName: 'Queen Cozinha', - ShipAddress: 'Alameda dos Canàrios, 891', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05487-020', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10638, - CustomerID: 'LINOD', - EmployeeID: 3, - OrderDate: '2019-08-20T00:00:00', - RequiredDate: '2019-09-17T00:00:00', - ShippedDate: '2019-09-01T00:00:00', - ShipVia: 1, - Freight: 158.4400, - ShipName: 'LINO-Delicateses', - ShipAddress: 'Ave. 5 de Mayo Porlamar', - ShipCity: 'I. de Margarita', - ShipRegion: 'Nueva Esparta', - ShipPostalCode: '4980', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10639, - CustomerID: 'SANTG', - EmployeeID: 7, - OrderDate: '2019-08-20T00:00:00', - RequiredDate: '2019-09-17T00:00:00', - ShippedDate: '2019-08-27T00:00:00', - ShipVia: 3, - Freight: 38.6400, - ShipName: 'Santé Gourmet', - ShipAddress: 'Erling Skakkes gate 78', - ShipCity: 'Stavern', - ShipRegion: null, - ShipPostalCode: '4110', - ShipCountry: 'Norway', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10640, - CustomerID: 'WANDK', - EmployeeID: 4, - OrderDate: '2019-08-21T00:00:00', - RequiredDate: '2019-09-18T00:00:00', - ShippedDate: '2019-08-28T00:00:00', - ShipVia: 1, - Freight: 23.5500, - ShipName: 'Die Wandernde Kuh', - ShipAddress: 'Adenauerallee 900', - ShipCity: 'Stuttgart', - ShipRegion: null, - ShipPostalCode: '70563', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10641, - CustomerID: 'HILAA', - EmployeeID: 4, - OrderDate: '2019-08-22T00:00:00', - RequiredDate: '2019-09-19T00:00:00', - ShippedDate: '2019-08-26T00:00:00', - ShipVia: 2, - Freight: 179.6100, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10642, - CustomerID: 'SIMOB', - EmployeeID: 7, - OrderDate: '2019-08-22T00:00:00', - RequiredDate: '2019-09-19T00:00:00', - ShippedDate: '2019-09-05T00:00:00', - ShipVia: 3, - Freight: 41.8900, - ShipName: 'Simons bistro', - ShipAddress: 'Vinbæltet 34', - ShipCity: 'Kobenhavn', - ShipRegion: null, - ShipPostalCode: '1734', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10643, - CustomerID: 'ALFKI', - EmployeeID: 6, - OrderDate: '2019-08-25T00:00:00', - RequiredDate: '2019-09-22T00:00:00', - ShippedDate: '2019-09-02T00:00:00', - ShipVia: 1, - Freight: 29.4600, - ShipName: 'Alfreds Futterkiste', - ShipAddress: 'Obere Str. 57', - ShipCity: 'Berlin', - ShipRegion: null, - ShipPostalCode: '12209', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10644, - CustomerID: 'WELLI', - EmployeeID: 3, - OrderDate: '2019-08-25T00:00:00', - RequiredDate: '2019-09-22T00:00:00', - ShippedDate: '2019-09-01T00:00:00', - ShipVia: 2, - Freight: 0.1400, - ShipName: 'Wellington Importadora', - ShipAddress: 'Rua do Mercado, 12', - ShipCity: 'Resende', - ShipRegion: 'SP', - ShipPostalCode: '08737-363', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10645, - CustomerID: 'HANAR', - EmployeeID: 4, - OrderDate: '2019-08-26T00:00:00', - RequiredDate: '2019-09-23T00:00:00', - ShippedDate: '2019-09-02T00:00:00', - ShipVia: 1, - Freight: 12.4100, - ShipName: 'Hanari Carnes', - ShipAddress: 'Rua do Paço, 67', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '05454-876', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10646, - CustomerID: 'HUNGO', - EmployeeID: 9, - OrderDate: '2019-08-27T00:00:00', - RequiredDate: '2019-10-08T00:00:00', - ShippedDate: '2019-09-03T00:00:00', - ShipVia: 3, - Freight: 142.3300, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10647, - CustomerID: 'QUEDE', - EmployeeID: 4, - OrderDate: '2019-08-27T00:00:00', - RequiredDate: '2019-09-10T00:00:00', - ShippedDate: '2019-09-03T00:00:00', - ShipVia: 2, - Freight: 45.5400, - ShipName: 'Que Delícia', - ShipAddress: 'Rua da Panificadora, 12', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-673', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10648, - CustomerID: 'RICAR', - EmployeeID: 5, - OrderDate: '2019-08-28T00:00:00', - RequiredDate: '2019-10-09T00:00:00', - ShippedDate: '2019-09-09T00:00:00', - ShipVia: 2, - Freight: 14.2500, - ShipName: 'Ricardo Adocicados', - ShipAddress: 'Av. Copacabana, 267', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-890', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10649, - CustomerID: 'MAISD', - EmployeeID: 5, - OrderDate: '2019-08-28T00:00:00', - RequiredDate: '2019-09-25T00:00:00', - ShippedDate: '2019-08-29T00:00:00', - ShipVia: 3, - Freight: 6.2000, - ShipName: 'Maison Dewey', - ShipAddress: 'Rue Joseph-Bens 532', - ShipCity: 'Bruxelles', - ShipRegion: null, - ShipPostalCode: 'B-1180', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10650, - CustomerID: 'FAMIA', - EmployeeID: 5, - OrderDate: '2019-08-29T00:00:00', - RequiredDate: '2019-09-26T00:00:00', - ShippedDate: '2019-09-03T00:00:00', - ShipVia: 3, - Freight: 176.8100, - ShipName: 'Familia Arquibaldo', - ShipAddress: 'Rua Orós, 92', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05442-030', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10651, - CustomerID: 'WANDK', - EmployeeID: 8, - OrderDate: '2019-09-01T00:00:00', - RequiredDate: '2019-09-29T00:00:00', - ShippedDate: '2019-09-11T00:00:00', - ShipVia: 2, - Freight: 20.6000, - ShipName: 'Die Wandernde Kuh', - ShipAddress: 'Adenauerallee 900', - ShipCity: 'Stuttgart', - ShipRegion: null, - ShipPostalCode: '70563', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10652, - CustomerID: 'GOURL', - EmployeeID: 4, - OrderDate: '2019-09-01T00:00:00', - RequiredDate: '2019-09-29T00:00:00', - ShippedDate: '2019-09-08T00:00:00', - ShipVia: 2, - Freight: 7.1400, - ShipName: 'Gourmet Lanchonetes', - ShipAddress: 'Av. Brasil, 442', - ShipCity: 'Campinas', - ShipRegion: 'SP', - ShipPostalCode: '04876-786', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10653, - CustomerID: 'FRANK', - EmployeeID: 1, - OrderDate: '2019-09-02T00:00:00', - RequiredDate: '2019-09-30T00:00:00', - ShippedDate: '2019-09-19T00:00:00', - ShipVia: 1, - Freight: 93.2500, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10654, - CustomerID: 'BERGS', - EmployeeID: 5, - OrderDate: '2019-09-02T00:00:00', - RequiredDate: '2019-09-30T00:00:00', - ShippedDate: '2019-09-11T00:00:00', - ShipVia: 1, - Freight: 55.2600, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10655, - CustomerID: 'REGGC', - EmployeeID: 1, - OrderDate: '2019-09-03T00:00:00', - RequiredDate: '2019-10-01T00:00:00', - ShippedDate: '2019-09-11T00:00:00', - ShipVia: 2, - Freight: 4.4100, - ShipName: 'Reggiani Caseifici', - ShipAddress: 'Strada Provinciale 124', - ShipCity: 'Reggio Emilia', - ShipRegion: null, - ShipPostalCode: '42100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10656, - CustomerID: 'GREAL', - EmployeeID: 6, - OrderDate: '2019-09-04T00:00:00', - RequiredDate: '2019-10-02T00:00:00', - ShippedDate: '2019-09-10T00:00:00', - ShipVia: 1, - Freight: 57.1500, - ShipName: 'Great Lakes Food Market', - ShipAddress: '2732 Baker Blvd.', - ShipCity: 'Eugene', - ShipRegion: 'OR', - ShipPostalCode: '97403', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10657, - CustomerID: 'SAVEA', - EmployeeID: 2, - OrderDate: '2019-09-04T00:00:00', - RequiredDate: '2019-10-02T00:00:00', - ShippedDate: '2019-09-15T00:00:00', - ShipVia: 2, - Freight: 352.6900, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10658, - CustomerID: 'QUICK', - EmployeeID: 4, - OrderDate: '2019-09-05T00:00:00', - RequiredDate: '2019-10-03T00:00:00', - ShippedDate: '2019-09-08T00:00:00', - ShipVia: 1, - Freight: 364.1500, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10659, - CustomerID: 'QUEEN', - EmployeeID: 7, - OrderDate: '2019-09-05T00:00:00', - RequiredDate: '2019-10-03T00:00:00', - ShippedDate: '2019-09-10T00:00:00', - ShipVia: 2, - Freight: 105.8100, - ShipName: 'Queen Cozinha', - ShipAddress: 'Alameda dos Canàrios, 891', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05487-020', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10660, - CustomerID: 'HUNGC', - EmployeeID: 8, - OrderDate: '2019-09-08T00:00:00', - RequiredDate: '2019-10-06T00:00:00', - ShippedDate: '2019-10-15T00:00:00', - ShipVia: 1, - Freight: 111.2900, - ShipName: 'Hungry Coyote Import Store', - ShipAddress: 'City Center Plaza 516 Main St.', - ShipCity: 'Elgin', - ShipRegion: 'OR', - ShipPostalCode: '97827', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10661, - CustomerID: 'HUNGO', - EmployeeID: 7, - OrderDate: '2019-09-09T00:00:00', - RequiredDate: '2019-10-07T00:00:00', - ShippedDate: '2019-09-15T00:00:00', - ShipVia: 3, - Freight: 17.5500, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10662, - CustomerID: 'LONEP', - EmployeeID: 3, - OrderDate: '2019-09-09T00:00:00', - RequiredDate: '2019-10-07T00:00:00', - ShippedDate: '2019-09-18T00:00:00', - ShipVia: 2, - Freight: 1.2800, - ShipName: 'Lonesome Pine Restaurant', - ShipAddress: '89 Chiaroscuro Rd.', - ShipCity: 'Portland', - ShipRegion: 'OR', - ShipPostalCode: '97219', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10663, - CustomerID: 'BONAP', - EmployeeID: 2, - OrderDate: '2019-09-10T00:00:00', - RequiredDate: '2019-09-24T00:00:00', - ShippedDate: '2019-10-03T00:00:00', - ShipVia: 2, - Freight: 113.1500, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10664, - CustomerID: 'FURIB', - EmployeeID: 1, - OrderDate: '2019-09-10T00:00:00', - RequiredDate: '2019-10-08T00:00:00', - ShippedDate: '2019-09-19T00:00:00', - ShipVia: 3, - Freight: 1.2700, - ShipName: 'Furia Bacalhau e Frutos do Mar', - ShipAddress: 'Jardim das rosas n. 32', - ShipCity: 'Lisboa', - ShipRegion: null, - ShipPostalCode: '1675', - ShipCountry: 'Portugal', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10665, - CustomerID: 'LONEP', - EmployeeID: 1, - OrderDate: '2019-09-11T00:00:00', - RequiredDate: '2019-10-09T00:00:00', - ShippedDate: '2019-09-17T00:00:00', - ShipVia: 2, - Freight: 26.3100, - ShipName: 'Lonesome Pine Restaurant', - ShipAddress: '89 Chiaroscuro Rd.', - ShipCity: 'Portland', - ShipRegion: 'OR', - ShipPostalCode: '97219', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10666, - CustomerID: 'RICSU', - EmployeeID: 7, - OrderDate: '2019-09-12T00:00:00', - RequiredDate: '2019-10-10T00:00:00', - ShippedDate: '2019-09-22T00:00:00', - ShipVia: 2, - Freight: 232.4200, - ShipName: 'Richter Supermarkt', - ShipAddress: 'Starenweg 5', - ShipCity: 'Genève', - ShipRegion: null, - ShipPostalCode: '1204', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10667, - CustomerID: 'ERNSH', - EmployeeID: 7, - OrderDate: '2019-09-12T00:00:00', - RequiredDate: '2019-10-10T00:00:00', - ShippedDate: '2019-09-19T00:00:00', - ShipVia: 1, - Freight: 78.0900, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10668, - CustomerID: 'WANDK', - EmployeeID: 1, - OrderDate: '2019-09-15T00:00:00', - RequiredDate: '2019-10-13T00:00:00', - ShippedDate: '2019-09-23T00:00:00', - ShipVia: 2, - Freight: 47.2200, - ShipName: 'Die Wandernde Kuh', - ShipAddress: 'Adenauerallee 900', - ShipCity: 'Stuttgart', - ShipRegion: null, - ShipPostalCode: '70563', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10669, - CustomerID: 'SIMOB', - EmployeeID: 2, - OrderDate: '2019-09-15T00:00:00', - RequiredDate: '2019-10-13T00:00:00', - ShippedDate: '2019-09-22T00:00:00', - ShipVia: 1, - Freight: 24.3900, - ShipName: 'Simons bistro', - ShipAddress: 'Vinbæltet 34', - ShipCity: 'Kobenhavn', - ShipRegion: null, - ShipPostalCode: '1734', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10670, - CustomerID: 'FRANK', - EmployeeID: 4, - OrderDate: '2019-09-16T00:00:00', - RequiredDate: '2019-10-14T00:00:00', - ShippedDate: '2019-09-18T00:00:00', - ShipVia: 1, - Freight: 203.4800, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10671, - CustomerID: 'FRANR', - EmployeeID: 1, - OrderDate: '2019-09-17T00:00:00', - RequiredDate: '2019-10-15T00:00:00', - ShippedDate: '2019-09-24T00:00:00', - ShipVia: 1, - Freight: 30.3400, - ShipName: 'France restauration', - ShipAddress: '54, rue Royale', - ShipCity: 'Nantes', - ShipRegion: null, - ShipPostalCode: '44000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10672, - CustomerID: 'BERGS', - EmployeeID: 9, - OrderDate: '2019-09-17T00:00:00', - RequiredDate: '2019-10-01T00:00:00', - ShippedDate: '2019-09-26T00:00:00', - ShipVia: 2, - Freight: 95.7500, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10673, - CustomerID: 'WILMK', - EmployeeID: 2, - OrderDate: '2019-09-18T00:00:00', - RequiredDate: '2019-10-16T00:00:00', - ShippedDate: '2019-09-19T00:00:00', - ShipVia: 1, - Freight: 22.7600, - ShipName: 'Wilman Kala', - ShipAddress: 'Keskuskatu 45', - ShipCity: 'Helsinki', - ShipRegion: null, - ShipPostalCode: '21240', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10674, - CustomerID: 'ISLAT', - EmployeeID: 4, - OrderDate: '2019-09-18T00:00:00', - RequiredDate: '2019-10-16T00:00:00', - ShippedDate: '2019-09-30T00:00:00', - ShipVia: 2, - Freight: 0.9000, - ShipName: 'Island Trading', - ShipAddress: 'Garden House Crowther Way', - ShipCity: 'Cowes', - ShipRegion: 'Isle of Wight', - ShipPostalCode: 'PO31 7PJ', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10675, - CustomerID: 'FRANK', - EmployeeID: 5, - OrderDate: '2019-09-19T00:00:00', - RequiredDate: '2019-10-17T00:00:00', - ShippedDate: '2019-09-23T00:00:00', - ShipVia: 2, - Freight: 31.8500, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10676, - CustomerID: 'TORTU', - EmployeeID: 2, - OrderDate: '2019-09-22T00:00:00', - RequiredDate: '2019-10-20T00:00:00', - ShippedDate: '2019-09-29T00:00:00', - ShipVia: 2, - Freight: 2.0100, - ShipName: 'Tortuga Restaurante', - ShipAddress: 'Avda. Azteca 123', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10677, - CustomerID: 'ANTON', - EmployeeID: 1, - OrderDate: '2019-09-22T00:00:00', - RequiredDate: '2019-10-20T00:00:00', - ShippedDate: '2019-09-26T00:00:00', - ShipVia: 3, - Freight: 4.0300, - ShipName: 'Antonio Moreno Taquería', - ShipAddress: 'Mataderos 2312', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05023', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10678, - CustomerID: 'SAVEA', - EmployeeID: 7, - OrderDate: '2019-09-23T00:00:00', - RequiredDate: '2019-10-21T00:00:00', - ShippedDate: '2019-10-16T00:00:00', - ShipVia: 3, - Freight: 388.9800, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10679, - CustomerID: 'BLONP', - EmployeeID: 8, - OrderDate: '2019-09-23T00:00:00', - RequiredDate: '2019-10-21T00:00:00', - ShippedDate: '2019-09-30T00:00:00', - ShipVia: 3, - Freight: 27.9400, - ShipName: 'Blondel père et fils', - ShipAddress: '24, place Kléber', - ShipCity: 'Strasbourg', - ShipRegion: null, - ShipPostalCode: '67000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10680, - CustomerID: 'OLDWO', - EmployeeID: 1, - OrderDate: '2019-09-24T00:00:00', - RequiredDate: '2019-10-22T00:00:00', - ShippedDate: '2019-09-26T00:00:00', - ShipVia: 1, - Freight: 26.6100, - ShipName: 'Old World Delicatessen', - ShipAddress: '2743 Bering St.', - ShipCity: 'Anchorage', - ShipRegion: 'AK', - ShipPostalCode: '99508', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10681, - CustomerID: 'GREAL', - EmployeeID: 3, - OrderDate: '2019-09-25T00:00:00', - RequiredDate: '2019-10-23T00:00:00', - ShippedDate: '2019-09-30T00:00:00', - ShipVia: 3, - Freight: 76.1300, - ShipName: 'Great Lakes Food Market', - ShipAddress: '2732 Baker Blvd.', - ShipCity: 'Eugene', - ShipRegion: 'OR', - ShipPostalCode: '97403', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10682, - CustomerID: 'ANTON', - EmployeeID: 3, - OrderDate: '2019-09-25T00:00:00', - RequiredDate: '2019-10-23T00:00:00', - ShippedDate: '2019-10-01T00:00:00', - ShipVia: 2, - Freight: 36.1300, - ShipName: 'Antonio Moreno Taquería', - ShipAddress: 'Mataderos 2312', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05023', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10683, - CustomerID: 'DUMON', - EmployeeID: 2, - OrderDate: '2019-09-26T00:00:00', - RequiredDate: '2019-10-24T00:00:00', - ShippedDate: '2019-10-01T00:00:00', - ShipVia: 1, - Freight: 4.4000, - ShipName: 'Du monde entier', - ShipAddress: '67, rue des Cinquante Otages', - ShipCity: 'Nantes', - ShipRegion: null, - ShipPostalCode: '44000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10684, - CustomerID: 'OTTIK', - EmployeeID: 3, - OrderDate: '2019-09-26T00:00:00', - RequiredDate: '2019-10-24T00:00:00', - ShippedDate: '2019-09-30T00:00:00', - ShipVia: 1, - Freight: 145.6300, - ShipName: 'Ottilies Käseladen', - ShipAddress: 'Mehrheimerstr. 369', - ShipCity: 'Köln', - ShipRegion: null, - ShipPostalCode: '50739', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10685, - CustomerID: 'GOURL', - EmployeeID: 4, - OrderDate: '2019-09-29T00:00:00', - RequiredDate: '2019-10-13T00:00:00', - ShippedDate: '2019-10-03T00:00:00', - ShipVia: 2, - Freight: 33.7500, - ShipName: 'Gourmet Lanchonetes', - ShipAddress: 'Av. Brasil, 442', - ShipCity: 'Campinas', - ShipRegion: 'SP', - ShipPostalCode: '04876-786', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10686, - CustomerID: 'PICCO', - EmployeeID: 2, - OrderDate: '2019-09-30T00:00:00', - RequiredDate: '2019-10-28T00:00:00', - ShippedDate: '2019-10-08T00:00:00', - ShipVia: 1, - Freight: 96.5000, - ShipName: 'Piccolo und mehr', - ShipAddress: 'Geislweg 14', - ShipCity: 'Salzburg', - ShipRegion: null, - ShipPostalCode: '5020', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10687, - CustomerID: 'HUNGO', - EmployeeID: 9, - OrderDate: '2019-09-30T00:00:00', - RequiredDate: '2019-10-28T00:00:00', - ShippedDate: '2019-10-30T00:00:00', - ShipVia: 2, - Freight: 296.4300, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10688, - CustomerID: 'VAFFE', - EmployeeID: 4, - OrderDate: '2019-10-01T00:00:00', - RequiredDate: '2019-10-15T00:00:00', - ShippedDate: '2019-10-07T00:00:00', - ShipVia: 2, - Freight: 299.0900, - ShipName: 'Vaffeljernet', - ShipAddress: 'Smagsloget 45', - ShipCity: 'Århus', - ShipRegion: null, - ShipPostalCode: '8200', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10689, - CustomerID: 'BERGS', - EmployeeID: 1, - OrderDate: '2019-10-01T00:00:00', - RequiredDate: '2019-10-29T00:00:00', - ShippedDate: '2019-10-07T00:00:00', - ShipVia: 2, - Freight: 13.4200, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10690, - CustomerID: 'HANAR', - EmployeeID: 1, - OrderDate: '2019-10-02T00:00:00', - RequiredDate: '2019-10-30T00:00:00', - ShippedDate: '2019-10-03T00:00:00', - ShipVia: 1, - Freight: 15.8000, - ShipName: 'Hanari Carnes', - ShipAddress: 'Rua do Paço, 67', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '05454-876', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10691, - CustomerID: 'QUICK', - EmployeeID: 2, - OrderDate: '2019-10-03T00:00:00', - RequiredDate: '2019-11-14T00:00:00', - ShippedDate: '2019-10-22T00:00:00', - ShipVia: 2, - Freight: 810.0500, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10692, - CustomerID: 'ALFKI', - EmployeeID: 4, - OrderDate: '2019-10-03T00:00:00', - RequiredDate: '2019-10-31T00:00:00', - ShippedDate: '2019-10-13T00:00:00', - ShipVia: 2, - Freight: 61.0200, - ShipName: 'Alfred\'s Futterkiste', - ShipAddress: 'Obere Str. 57', - ShipCity: 'Berlin', - ShipRegion: null, - ShipPostalCode: '12209', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10693, - CustomerID: 'WHITC', - EmployeeID: 3, - OrderDate: '2019-10-06T00:00:00', - RequiredDate: '2019-10-20T00:00:00', - ShippedDate: '2019-10-10T00:00:00', - ShipVia: 3, - Freight: 139.3400, - ShipName: 'White Clover Markets', - ShipAddress: '1029 - 12th Ave. S.', - ShipCity: 'Seattle', - ShipRegion: 'WA', - ShipPostalCode: '98124', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10694, - CustomerID: 'QUICK', - EmployeeID: 8, - OrderDate: '2019-10-06T00:00:00', - RequiredDate: '2019-11-03T00:00:00', - ShippedDate: '2019-10-09T00:00:00', - ShipVia: 3, - Freight: 398.3600, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10695, - CustomerID: 'WILMK', - EmployeeID: 7, - OrderDate: '2019-10-07T00:00:00', - RequiredDate: '2019-11-18T00:00:00', - ShippedDate: '2019-10-14T00:00:00', - ShipVia: 1, - Freight: 16.7200, - ShipName: 'Wilman Kala', - ShipAddress: 'Keskuskatu 45', - ShipCity: 'Helsinki', - ShipRegion: null, - ShipPostalCode: '21240', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10696, - CustomerID: 'WHITC', - EmployeeID: 8, - OrderDate: '2019-10-08T00:00:00', - RequiredDate: '2019-11-19T00:00:00', - ShippedDate: '2019-10-14T00:00:00', - ShipVia: 3, - Freight: 102.5500, - ShipName: 'White Clover Markets', - ShipAddress: '1029 - 12th Ave. S.', - ShipCity: 'Seattle', - ShipRegion: 'WA', - ShipPostalCode: '98124', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10697, - CustomerID: 'LINOD', - EmployeeID: 3, - OrderDate: '2019-10-08T00:00:00', - RequiredDate: '2019-11-05T00:00:00', - ShippedDate: '2019-10-14T00:00:00', - ShipVia: 1, - Freight: 45.5200, - ShipName: 'LINO-Delicateses', - ShipAddress: 'Ave. 5 de Mayo Porlamar', - ShipCity: 'I. de Margarita', - ShipRegion: 'Nueva Esparta', - ShipPostalCode: '4980', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10698, - CustomerID: 'ERNSH', - EmployeeID: 4, - OrderDate: '2019-10-09T00:00:00', - RequiredDate: '2019-11-06T00:00:00', - ShippedDate: '2019-10-17T00:00:00', - ShipVia: 1, - Freight: 272.4700, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10699, - CustomerID: 'MORGK', - EmployeeID: 3, - OrderDate: '2019-10-09T00:00:00', - RequiredDate: '2019-11-06T00:00:00', - ShippedDate: '2019-10-13T00:00:00', - ShipVia: 3, - Freight: 0.5800, - ShipName: 'Morgenstern Gesundkost', - ShipAddress: 'Heerstr. 22', - ShipCity: 'Leipzig', - ShipRegion: null, - ShipPostalCode: '04179', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10700, - CustomerID: 'SAVEA', - EmployeeID: 3, - OrderDate: '2019-10-10T00:00:00', - RequiredDate: '2019-11-07T00:00:00', - ShippedDate: '2019-10-16T00:00:00', - ShipVia: 1, - Freight: 65.1000, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10701, - CustomerID: 'HUNGO', - EmployeeID: 6, - OrderDate: '2019-10-13T00:00:00', - RequiredDate: '2019-10-27T00:00:00', - ShippedDate: '2019-10-15T00:00:00', - ShipVia: 3, - Freight: 220.3100, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10702, - CustomerID: 'ALFKI', - EmployeeID: 4, - OrderDate: '2019-10-13T00:00:00', - RequiredDate: '2019-11-24T00:00:00', - ShippedDate: '2019-10-21T00:00:00', - ShipVia: 1, - Freight: 23.9400, - ShipName: 'Alfred\'s Futterkiste', - ShipAddress: 'Obere Str. 57', - ShipCity: 'Berlin', - ShipRegion: null, - ShipPostalCode: '12209', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10703, - CustomerID: 'FOLKO', - EmployeeID: 6, - OrderDate: '2019-10-14T00:00:00', - RequiredDate: '2019-11-11T00:00:00', - ShippedDate: '2019-10-20T00:00:00', - ShipVia: 2, - Freight: 152.3000, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10704, - CustomerID: 'QUEEN', - EmployeeID: 6, - OrderDate: '2019-10-14T00:00:00', - RequiredDate: '2019-11-11T00:00:00', - ShippedDate: '2019-11-07T00:00:00', - ShipVia: 1, - Freight: 4.7800, - ShipName: 'Queen Cozinha', - ShipAddress: 'Alameda dos Canàrios, 891', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05487-020', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10705, - CustomerID: 'HILAA', - EmployeeID: 9, - OrderDate: '2019-10-15T00:00:00', - RequiredDate: '2019-11-12T00:00:00', - ShippedDate: '2019-11-18T00:00:00', - ShipVia: 2, - Freight: 3.5200, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10706, - CustomerID: 'OLDWO', - EmployeeID: 8, - OrderDate: '2019-10-16T00:00:00', - RequiredDate: '2019-11-13T00:00:00', - ShippedDate: '2019-10-21T00:00:00', - ShipVia: 3, - Freight: 135.6300, - ShipName: 'Old World Delicatessen', - ShipAddress: '2743 Bering St.', - ShipCity: 'Anchorage', - ShipRegion: 'AK', - ShipPostalCode: '99508', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10707, - CustomerID: 'AROUT', - EmployeeID: 4, - OrderDate: '2019-10-16T00:00:00', - RequiredDate: '2019-10-30T00:00:00', - ShippedDate: '2019-10-23T00:00:00', - ShipVia: 3, - Freight: 21.7400, - ShipName: 'Around the Horn', - ShipAddress: 'Brook Farm Stratford St. Mary', - ShipCity: 'Colchester', - ShipRegion: 'Essex', - ShipPostalCode: 'CO7 6JX', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10708, - CustomerID: 'THEBI', - EmployeeID: 6, - OrderDate: '2019-10-17T00:00:00', - RequiredDate: '2019-11-28T00:00:00', - ShippedDate: '2019-11-05T00:00:00', - ShipVia: 2, - Freight: 2.9600, - ShipName: 'The Big Cheese', - ShipAddress: '89 Jefferson Way Suite 2', - ShipCity: 'Portland', - ShipRegion: 'OR', - ShipPostalCode: '97201', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10709, - CustomerID: 'GOURL', - EmployeeID: 1, - OrderDate: '2019-10-17T00:00:00', - RequiredDate: '2019-11-14T00:00:00', - ShippedDate: '2019-11-20T00:00:00', - ShipVia: 3, - Freight: 210.8000, - ShipName: 'Gourmet Lanchonetes', - ShipAddress: 'Av. Brasil, 442', - ShipCity: 'Campinas', - ShipRegion: 'SP', - ShipPostalCode: '04876-786', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10710, - CustomerID: 'FRANS', - EmployeeID: 1, - OrderDate: '2019-10-20T00:00:00', - RequiredDate: '2019-11-17T00:00:00', - ShippedDate: '2019-10-23T00:00:00', - ShipVia: 1, - Freight: 4.9800, - ShipName: 'Franchi S.p.A.', - ShipAddress: 'Via Monte Bianco 34', - ShipCity: 'Torino', - ShipRegion: null, - ShipPostalCode: '10100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10711, - CustomerID: 'SAVEA', - EmployeeID: 5, - OrderDate: '2019-10-21T00:00:00', - RequiredDate: '2019-12-02T00:00:00', - ShippedDate: '2019-10-29T00:00:00', - ShipVia: 2, - Freight: 52.4100, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10712, - CustomerID: 'HUNGO', - EmployeeID: 3, - OrderDate: '2019-10-21T00:00:00', - RequiredDate: '2019-11-18T00:00:00', - ShippedDate: '2019-10-31T00:00:00', - ShipVia: 1, - Freight: 89.9300, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10713, - CustomerID: 'SAVEA', - EmployeeID: 1, - OrderDate: '2019-10-22T00:00:00', - RequiredDate: '2019-11-19T00:00:00', - ShippedDate: '2019-10-24T00:00:00', - ShipVia: 1, - Freight: 167.0500, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10714, - CustomerID: 'SAVEA', - EmployeeID: 5, - OrderDate: '2019-10-22T00:00:00', - RequiredDate: '2019-11-19T00:00:00', - ShippedDate: '2019-10-27T00:00:00', - ShipVia: 3, - Freight: 24.4900, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10715, - CustomerID: 'BONAP', - EmployeeID: 3, - OrderDate: '2019-10-23T00:00:00', - RequiredDate: '2019-11-06T00:00:00', - ShippedDate: '2019-10-29T00:00:00', - ShipVia: 1, - Freight: 63.2000, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10716, - CustomerID: 'RANCH', - EmployeeID: 4, - OrderDate: '2019-10-24T00:00:00', - RequiredDate: '2019-11-21T00:00:00', - ShippedDate: '2019-10-27T00:00:00', - ShipVia: 2, - Freight: 22.5700, - ShipName: 'Rancho grande', - ShipAddress: 'Av. del Libertador 900', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10717, - CustomerID: 'FRANK', - EmployeeID: 1, - OrderDate: '2019-10-24T00:00:00', - RequiredDate: '2019-11-21T00:00:00', - ShippedDate: '2019-10-29T00:00:00', - ShipVia: 2, - Freight: 59.2500, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10718, - CustomerID: 'KOENE', - EmployeeID: 1, - OrderDate: '2019-10-27T00:00:00', - RequiredDate: '2019-11-24T00:00:00', - ShippedDate: '2019-10-29T00:00:00', - ShipVia: 3, - Freight: 170.8800, - ShipName: 'Königlich Essen', - ShipAddress: 'Maubelstr. 90', - ShipCity: 'Brandenburg', - ShipRegion: null, - ShipPostalCode: '14776', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10719, - CustomerID: 'LETSS', - EmployeeID: 8, - OrderDate: '2019-10-27T00:00:00', - RequiredDate: '2019-11-24T00:00:00', - ShippedDate: '2019-11-05T00:00:00', - ShipVia: 2, - Freight: 51.4400, - ShipName: 'Let\'s Stop N Shop', - ShipAddress: '87 Polk St. Suite 5', - ShipCity: 'San Francisco', - ShipRegion: 'CA', - ShipPostalCode: '94117', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10720, - CustomerID: 'QUEDE', - EmployeeID: 8, - OrderDate: '2019-10-28T00:00:00', - RequiredDate: '2019-11-11T00:00:00', - ShippedDate: '2019-11-05T00:00:00', - ShipVia: 2, - Freight: 9.5300, - ShipName: 'Que Delícia', - ShipAddress: 'Rua da Panificadora, 12', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-673', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10721, - CustomerID: 'QUICK', - EmployeeID: 5, - OrderDate: '2019-10-29T00:00:00', - RequiredDate: '2019-11-26T00:00:00', - ShippedDate: '2019-10-31T00:00:00', - ShipVia: 3, - Freight: 48.9200, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10722, - CustomerID: 'SAVEA', - EmployeeID: 8, - OrderDate: '2019-10-29T00:00:00', - RequiredDate: '2019-12-10T00:00:00', - ShippedDate: '2019-11-04T00:00:00', - ShipVia: 1, - Freight: 74.5800, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10723, - CustomerID: 'WHITC', - EmployeeID: 3, - OrderDate: '2019-10-30T00:00:00', - RequiredDate: '2019-11-27T00:00:00', - ShippedDate: '2019-11-25T00:00:00', - ShipVia: 1, - Freight: 21.7200, - ShipName: 'White Clover Markets', - ShipAddress: '1029 - 12th Ave. S.', - ShipCity: 'Seattle', - ShipRegion: 'WA', - ShipPostalCode: '98124', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10724, - CustomerID: 'MEREP', - EmployeeID: 8, - OrderDate: '2019-10-30T00:00:00', - RequiredDate: '2019-12-11T00:00:00', - ShippedDate: '2019-11-05T00:00:00', - ShipVia: 2, - Freight: 57.7500, - ShipName: 'Mère Paillarde', - ShipAddress: '43 rue St. Laurent', - ShipCity: 'Montréal', - ShipRegion: 'Québec', - ShipPostalCode: 'H1J 1C3', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10725, - CustomerID: 'FAMIA', - EmployeeID: 4, - OrderDate: '2019-10-31T00:00:00', - RequiredDate: '2019-11-28T00:00:00', - ShippedDate: '2019-11-05T00:00:00', - ShipVia: 3, - Freight: 10.8300, - ShipName: 'Familia Arquibaldo', - ShipAddress: 'Rua Orós, 92', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05442-030', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10726, - CustomerID: 'EASTC', - EmployeeID: 4, - OrderDate: '2019-11-03T00:00:00', - RequiredDate: '2019-11-17T00:00:00', - ShippedDate: '2019-12-05T00:00:00', - ShipVia: 1, - Freight: 16.5600, - ShipName: 'Eastern Connection', - ShipAddress: '35 King George', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'WX3 6FW', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10727, - CustomerID: 'REGGC', - EmployeeID: 2, - OrderDate: '2019-11-03T00:00:00', - RequiredDate: '2019-12-01T00:00:00', - ShippedDate: '2019-12-05T00:00:00', - ShipVia: 1, - Freight: 89.9000, - ShipName: 'Reggiani Caseifici', - ShipAddress: 'Strada Provinciale 124', - ShipCity: 'Reggio Emilia', - ShipRegion: null, - ShipPostalCode: '42100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10728, - CustomerID: 'QUEEN', - EmployeeID: 4, - OrderDate: '2019-11-04T00:00:00', - RequiredDate: '2019-12-02T00:00:00', - ShippedDate: '2019-11-11T00:00:00', - ShipVia: 2, - Freight: 58.3300, - ShipName: 'Queen Cozinha', - ShipAddress: 'Alameda dos Canàrios, 891', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05487-020', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10729, - CustomerID: 'LINOD', - EmployeeID: 8, - OrderDate: '2019-11-04T00:00:00', - RequiredDate: '2019-12-16T00:00:00', - ShippedDate: '2019-11-14T00:00:00', - ShipVia: 3, - Freight: 141.0600, - ShipName: 'LINO-Delicateses', - ShipAddress: 'Ave. 5 de Mayo Porlamar', - ShipCity: 'I. de Margarita', - ShipRegion: 'Nueva Esparta', - ShipPostalCode: '4980', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10730, - CustomerID: 'BONAP', - EmployeeID: 5, - OrderDate: '2019-11-05T00:00:00', - RequiredDate: '2019-12-03T00:00:00', - ShippedDate: '2019-11-14T00:00:00', - ShipVia: 1, - Freight: 20.1200, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10731, - CustomerID: 'CHOPS', - EmployeeID: 7, - OrderDate: '2019-11-06T00:00:00', - RequiredDate: '2019-12-04T00:00:00', - ShippedDate: '2019-11-14T00:00:00', - ShipVia: 1, - Freight: 96.6500, - ShipName: 'Chop-suey Chinese', - ShipAddress: 'Hauptstr. 31', - ShipCity: 'Bern', - ShipRegion: null, - ShipPostalCode: '3012', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10732, - CustomerID: 'BONAP', - EmployeeID: 3, - OrderDate: '2019-11-06T00:00:00', - RequiredDate: '2019-12-04T00:00:00', - ShippedDate: '2019-11-07T00:00:00', - ShipVia: 1, - Freight: 16.9700, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10733, - CustomerID: 'BERGS', - EmployeeID: 1, - OrderDate: '2019-11-07T00:00:00', - RequiredDate: '2019-12-05T00:00:00', - ShippedDate: '2019-11-10T00:00:00', - ShipVia: 3, - Freight: 110.1100, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10734, - CustomerID: 'GOURL', - EmployeeID: 2, - OrderDate: '2019-11-07T00:00:00', - RequiredDate: '2019-12-05T00:00:00', - ShippedDate: '2019-11-12T00:00:00', - ShipVia: 3, - Freight: 1.6300, - ShipName: 'Gourmet Lanchonetes', - ShipAddress: 'Av. Brasil, 442', - ShipCity: 'Campinas', - ShipRegion: 'SP', - ShipPostalCode: '04876-786', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10735, - CustomerID: 'LETSS', - EmployeeID: 6, - OrderDate: '2019-11-10T00:00:00', - RequiredDate: '2019-12-08T00:00:00', - ShippedDate: '2019-11-21T00:00:00', - ShipVia: 2, - Freight: 45.9700, - ShipName: 'Let\'s Stop N Shop', - ShipAddress: '87 Polk St. Suite 5', - ShipCity: 'San Francisco', - ShipRegion: 'CA', - ShipPostalCode: '94117', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10736, - CustomerID: 'HUNGO', - EmployeeID: 9, - OrderDate: '2019-11-11T00:00:00', - RequiredDate: '2019-12-09T00:00:00', - ShippedDate: '2019-11-21T00:00:00', - ShipVia: 2, - Freight: 44.1000, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10737, - CustomerID: 'VINET', - EmployeeID: 2, - OrderDate: '2019-11-11T00:00:00', - RequiredDate: '2019-12-09T00:00:00', - ShippedDate: '2019-11-18T00:00:00', - ShipVia: 2, - Freight: 7.7900, - ShipName: 'Vins et alcools Chevalier', - ShipAddress: '59 rue de l\'Abbaye', - ShipCity: 'Reims', - ShipRegion: null, - ShipPostalCode: '51100', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10738, - CustomerID: 'SPECD', - EmployeeID: 2, - OrderDate: '2019-11-12T00:00:00', - RequiredDate: '2019-12-10T00:00:00', - ShippedDate: '2019-11-18T00:00:00', - ShipVia: 1, - Freight: 2.9100, - ShipName: 'Spécialités du monde', - ShipAddress: '25, rue Lauriston', - ShipCity: 'Paris', - ShipRegion: null, - ShipPostalCode: '75016', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10739, - CustomerID: 'VINET', - EmployeeID: 3, - OrderDate: '2019-11-12T00:00:00', - RequiredDate: '2019-12-10T00:00:00', - ShippedDate: '2019-11-17T00:00:00', - ShipVia: 3, - Freight: 11.0800, - ShipName: 'Vins et alcools Chevalier', - ShipAddress: '59 rue de l\'Abbaye', - ShipCity: 'Reims', - ShipRegion: null, - ShipPostalCode: '51100', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10740, - CustomerID: 'WHITC', - EmployeeID: 4, - OrderDate: '2019-11-13T00:00:00', - RequiredDate: '2019-12-11T00:00:00', - ShippedDate: '2019-11-25T00:00:00', - ShipVia: 2, - Freight: 81.8800, - ShipName: 'White Clover Markets', - ShipAddress: '1029 - 12th Ave. S.', - ShipCity: 'Seattle', - ShipRegion: 'WA', - ShipPostalCode: '98124', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10741, - CustomerID: 'AROUT', - EmployeeID: 4, - OrderDate: '2019-11-14T00:00:00', - RequiredDate: '2019-11-28T00:00:00', - ShippedDate: '2019-11-18T00:00:00', - ShipVia: 3, - Freight: 10.9600, - ShipName: 'Around the Horn', - ShipAddress: 'Brook Farm Stratford St. Mary', - ShipCity: 'Colchester', - ShipRegion: 'Essex', - ShipPostalCode: 'CO7 6JX', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10742, - CustomerID: 'BOTTM', - EmployeeID: 3, - OrderDate: '2019-11-14T00:00:00', - RequiredDate: '2019-12-12T00:00:00', - ShippedDate: '2019-11-18T00:00:00', - ShipVia: 3, - Freight: 243.7300, - ShipName: 'Bottom-Dollar Markets', - ShipAddress: '23 Tsawassen Blvd.', - ShipCity: 'Tsawassen', - ShipRegion: 'BC', - ShipPostalCode: 'T2F 8M4', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10743, - CustomerID: 'AROUT', - EmployeeID: 1, - OrderDate: '2019-11-17T00:00:00', - RequiredDate: '2019-12-15T00:00:00', - ShippedDate: '2019-11-21T00:00:00', - ShipVia: 2, - Freight: 23.7200, - ShipName: 'Around the Horn', - ShipAddress: 'Brook Farm Stratford St. Mary', - ShipCity: 'Colchester', - ShipRegion: 'Essex', - ShipPostalCode: 'CO7 6JX', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10744, - CustomerID: 'VAFFE', - EmployeeID: 6, - OrderDate: '2019-11-17T00:00:00', - RequiredDate: '2019-12-15T00:00:00', - ShippedDate: '2019-11-24T00:00:00', - ShipVia: 1, - Freight: 69.1900, - ShipName: 'Vaffeljernet', - ShipAddress: 'Smagsloget 45', - ShipCity: 'Århus', - ShipRegion: null, - ShipPostalCode: '8200', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10745, - CustomerID: 'QUICK', - EmployeeID: 9, - OrderDate: '2019-11-18T00:00:00', - RequiredDate: '2019-12-16T00:00:00', - ShippedDate: '2019-11-27T00:00:00', - ShipVia: 1, - Freight: 3.5200, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10746, - CustomerID: 'CHOPS', - EmployeeID: 1, - OrderDate: '2019-11-19T00:00:00', - RequiredDate: '2019-12-17T00:00:00', - ShippedDate: '2019-11-21T00:00:00', - ShipVia: 3, - Freight: 31.4300, - ShipName: 'Chop-suey Chinese', - ShipAddress: 'Hauptstr. 31', - ShipCity: 'Bern', - ShipRegion: null, - ShipPostalCode: '3012', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10747, - CustomerID: 'PICCO', - EmployeeID: 6, - OrderDate: '2019-11-19T00:00:00', - RequiredDate: '2019-12-17T00:00:00', - ShippedDate: '2019-11-26T00:00:00', - ShipVia: 1, - Freight: 117.3300, - ShipName: 'Piccolo und mehr', - ShipAddress: 'Geislweg 14', - ShipCity: 'Salzburg', - ShipRegion: null, - ShipPostalCode: '5020', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10748, - CustomerID: 'SAVEA', - EmployeeID: 3, - OrderDate: '2019-11-20T00:00:00', - RequiredDate: '2019-12-18T00:00:00', - ShippedDate: '2019-11-28T00:00:00', - ShipVia: 1, - Freight: 232.5500, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10749, - CustomerID: 'ISLAT', - EmployeeID: 4, - OrderDate: '2019-11-20T00:00:00', - RequiredDate: '2019-12-18T00:00:00', - ShippedDate: '2019-12-19T00:00:00', - ShipVia: 2, - Freight: 61.5300, - ShipName: 'Island Trading', - ShipAddress: 'Garden House Crowther Way', - ShipCity: 'Cowes', - ShipRegion: 'Isle of Wight', - ShipPostalCode: 'PO31 7PJ', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10750, - CustomerID: 'WARTH', - EmployeeID: 9, - OrderDate: '2019-11-21T00:00:00', - RequiredDate: '2019-12-19T00:00:00', - ShippedDate: '2019-11-24T00:00:00', - ShipVia: 1, - Freight: 79.3000, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10751, - CustomerID: 'RICSU', - EmployeeID: 3, - OrderDate: '2019-11-24T00:00:00', - RequiredDate: '2019-12-22T00:00:00', - ShippedDate: '2019-12-03T00:00:00', - ShipVia: 3, - Freight: 130.7900, - ShipName: 'Richter Supermarkt', - ShipAddress: 'Starenweg 5', - ShipCity: 'Genève', - ShipRegion: null, - ShipPostalCode: '1204', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10752, - CustomerID: 'NORTS', - EmployeeID: 2, - OrderDate: '2019-11-24T00:00:00', - RequiredDate: '2019-12-22T00:00:00', - ShippedDate: '2019-11-28T00:00:00', - ShipVia: 3, - Freight: 1.3900, - ShipName: 'North/South', - ShipAddress: 'South House 300 Queensbridge', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'SW7 1RZ', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10753, - CustomerID: 'FRANS', - EmployeeID: 3, - OrderDate: '2019-11-25T00:00:00', - RequiredDate: '2019-12-23T00:00:00', - ShippedDate: '2019-11-27T00:00:00', - ShipVia: 1, - Freight: 7.7000, - ShipName: 'Franchi S.p.A.', - ShipAddress: 'Via Monte Bianco 34', - ShipCity: 'Torino', - ShipRegion: null, - ShipPostalCode: '10100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10754, - CustomerID: 'MAGAA', - EmployeeID: 6, - OrderDate: '2019-11-25T00:00:00', - RequiredDate: '2019-12-23T00:00:00', - ShippedDate: '2019-11-27T00:00:00', - ShipVia: 3, - Freight: 2.3800, - ShipName: 'Magazzini Alimentari Riuniti', - ShipAddress: 'Via Ludovico il Moro 22', - ShipCity: 'Bergamo', - ShipRegion: null, - ShipPostalCode: '24100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10755, - CustomerID: 'BONAP', - EmployeeID: 4, - OrderDate: '2019-11-26T00:00:00', - RequiredDate: '2019-12-24T00:00:00', - ShippedDate: '2019-11-28T00:00:00', - ShipVia: 2, - Freight: 16.7100, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10756, - CustomerID: 'SPLIR', - EmployeeID: 8, - OrderDate: '2019-11-27T00:00:00', - RequiredDate: '2019-12-25T00:00:00', - ShippedDate: '2019-12-02T00:00:00', - ShipVia: 2, - Freight: 73.2100, - ShipName: 'Split Rail Beer & Ale', - ShipAddress: 'P.O. Box 555', - ShipCity: 'Lander', - ShipRegion: 'WY', - ShipPostalCode: '82520', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10757, - CustomerID: 'SAVEA', - EmployeeID: 6, - OrderDate: '2019-11-27T00:00:00', - RequiredDate: '2019-12-25T00:00:00', - ShippedDate: '2019-12-15T00:00:00', - ShipVia: 1, - Freight: 8.1900, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10758, - CustomerID: 'RICSU', - EmployeeID: 3, - OrderDate: '2019-11-28T00:00:00', - RequiredDate: '2019-12-26T00:00:00', - ShippedDate: '2019-12-04T00:00:00', - ShipVia: 3, - Freight: 138.1700, - ShipName: 'Richter Supermarkt', - ShipAddress: 'Starenweg 5', - ShipCity: 'Genève', - ShipRegion: null, - ShipPostalCode: '1204', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10759, - CustomerID: 'ANATR', - EmployeeID: 3, - OrderDate: '2019-11-28T00:00:00', - RequiredDate: '2019-12-26T00:00:00', - ShippedDate: '2019-12-12T00:00:00', - ShipVia: 3, - Freight: 11.9900, - ShipName: 'Ana Trujillo Emparedados y helados', - ShipAddress: 'Avda. de la Constitución 2222', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05021', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10760, - CustomerID: 'MAISD', - EmployeeID: 4, - OrderDate: '2019-12-01T00:00:00', - RequiredDate: '2019-12-29T00:00:00', - ShippedDate: '2019-12-10T00:00:00', - ShipVia: 1, - Freight: 155.6400, - ShipName: 'Maison Dewey', - ShipAddress: 'Rue Joseph-Bens 532', - ShipCity: 'Bruxelles', - ShipRegion: null, - ShipPostalCode: 'B-1180', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10761, - CustomerID: 'RATTC', - EmployeeID: 5, - OrderDate: '2019-12-02T00:00:00', - RequiredDate: '2019-12-30T00:00:00', - ShippedDate: '2019-12-08T00:00:00', - ShipVia: 2, - Freight: 18.6600, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10762, - CustomerID: 'FOLKO', - EmployeeID: 3, - OrderDate: '2019-12-02T00:00:00', - RequiredDate: '2019-12-30T00:00:00', - ShippedDate: '2019-12-09T00:00:00', - ShipVia: 1, - Freight: 328.7400, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10763, - CustomerID: 'FOLIG', - EmployeeID: 3, - OrderDate: '2019-12-03T00:00:00', - RequiredDate: '2019-12-31T00:00:00', - ShippedDate: '2019-12-08T00:00:00', - ShipVia: 3, - Freight: 37.3500, - ShipName: 'Folies gourmandes', - ShipAddress: '184, chaussée de Tournai', - ShipCity: 'Lille', - ShipRegion: null, - ShipPostalCode: '59000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10764, - CustomerID: 'ERNSH', - EmployeeID: 6, - OrderDate: '2019-12-03T00:00:00', - RequiredDate: '2019-12-31T00:00:00', - ShippedDate: '2019-12-08T00:00:00', - ShipVia: 3, - Freight: 145.4500, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10765, - CustomerID: 'QUICK', - EmployeeID: 3, - OrderDate: '2019-12-04T00:00:00', - RequiredDate: '2020-01-01T00:00:00', - ShippedDate: '2019-12-09T00:00:00', - ShipVia: 3, - Freight: 42.7400, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10766, - CustomerID: 'OTTIK', - EmployeeID: 4, - OrderDate: '2019-12-05T00:00:00', - RequiredDate: '2020-01-02T00:00:00', - ShippedDate: '2019-12-09T00:00:00', - ShipVia: 1, - Freight: 157.5500, - ShipName: 'Ottilies Käseladen', - ShipAddress: 'Mehrheimerstr. 369', - ShipCity: 'Köln', - ShipRegion: null, - ShipPostalCode: '50739', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10767, - CustomerID: 'SUPRD', - EmployeeID: 4, - OrderDate: '2019-12-05T00:00:00', - RequiredDate: '2020-01-02T00:00:00', - ShippedDate: '2019-12-15T00:00:00', - ShipVia: 3, - Freight: 1.5900, - ShipName: 'Suprêmes délices', - ShipAddress: 'Boulevard Tirou, 255', - ShipCity: 'Charleroi', - ShipRegion: null, - ShipPostalCode: 'B-6000', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10768, - CustomerID: 'AROUT', - EmployeeID: 3, - OrderDate: '2019-12-08T00:00:00', - RequiredDate: '2020-01-05T00:00:00', - ShippedDate: '2019-12-15T00:00:00', - ShipVia: 2, - Freight: 146.3200, - ShipName: 'Around the Horn', - ShipAddress: 'Brook Farm Stratford St. Mary', - ShipCity: 'Colchester', - ShipRegion: 'Essex', - ShipPostalCode: 'CO7 6JX', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10769, - CustomerID: 'VAFFE', - EmployeeID: 3, - OrderDate: '2019-12-08T00:00:00', - RequiredDate: '2020-01-05T00:00:00', - ShippedDate: '2019-12-12T00:00:00', - ShipVia: 1, - Freight: 65.0600, - ShipName: 'Vaffeljernet', - ShipAddress: 'Smagsloget 45', - ShipCity: 'Århus', - ShipRegion: null, - ShipPostalCode: '8200', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10770, - CustomerID: 'HANAR', - EmployeeID: 8, - OrderDate: '2019-12-09T00:00:00', - RequiredDate: '2020-01-06T00:00:00', - ShippedDate: '2019-12-17T00:00:00', - ShipVia: 3, - Freight: 5.3200, - ShipName: 'Hanari Carnes', - ShipAddress: 'Rua do Paço, 67', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '05454-876', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10771, - CustomerID: 'ERNSH', - EmployeeID: 9, - OrderDate: '2019-12-10T00:00:00', - RequiredDate: '2020-01-07T00:00:00', - ShippedDate: '2020-01-02T00:00:00', - ShipVia: 2, - Freight: 11.1900, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10772, - CustomerID: 'LEHMS', - EmployeeID: 3, - OrderDate: '2019-12-10T00:00:00', - RequiredDate: '2020-01-07T00:00:00', - ShippedDate: '2019-12-19T00:00:00', - ShipVia: 2, - Freight: 91.2800, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10773, - CustomerID: 'ERNSH', - EmployeeID: 1, - OrderDate: '2019-12-11T00:00:00', - RequiredDate: '2020-01-08T00:00:00', - ShippedDate: '2019-12-16T00:00:00', - ShipVia: 3, - Freight: 96.4300, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10774, - CustomerID: 'FOLKO', - EmployeeID: 4, - OrderDate: '2019-12-11T00:00:00', - RequiredDate: '2019-12-25T00:00:00', - ShippedDate: '2019-12-12T00:00:00', - ShipVia: 1, - Freight: 48.2000, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10775, - CustomerID: 'THECR', - EmployeeID: 7, - OrderDate: '2019-12-12T00:00:00', - RequiredDate: '2020-01-09T00:00:00', - ShippedDate: '2019-12-26T00:00:00', - ShipVia: 1, - Freight: 20.2500, - ShipName: 'The Cracker Box', - ShipAddress: '55 Grizzly Peak Rd.', - ShipCity: 'Butte', - ShipRegion: 'MT', - ShipPostalCode: '59801', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10776, - CustomerID: 'ERNSH', - EmployeeID: 1, - OrderDate: '2019-12-15T00:00:00', - RequiredDate: '2020-01-12T00:00:00', - ShippedDate: '2019-12-18T00:00:00', - ShipVia: 3, - Freight: 351.5300, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10777, - CustomerID: 'GOURL', - EmployeeID: 7, - OrderDate: '2019-12-15T00:00:00', - RequiredDate: '2019-12-29T00:00:00', - ShippedDate: '2020-01-21T00:00:00', - ShipVia: 2, - Freight: 3.0100, - ShipName: 'Gourmet Lanchonetes', - ShipAddress: 'Av. Brasil, 442', - ShipCity: 'Campinas', - ShipRegion: 'SP', - ShipPostalCode: '04876-786', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10778, - CustomerID: 'BERGS', - EmployeeID: 3, - OrderDate: '2019-12-16T00:00:00', - RequiredDate: '2020-01-13T00:00:00', - ShippedDate: '2019-12-24T00:00:00', - ShipVia: 1, - Freight: 6.7900, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10779, - CustomerID: 'MORGK', - EmployeeID: 3, - OrderDate: '2019-12-16T00:00:00', - RequiredDate: '2020-01-13T00:00:00', - ShippedDate: '2020-01-14T00:00:00', - ShipVia: 2, - Freight: 58.1300, - ShipName: 'Morgenstern Gesundkost', - ShipAddress: 'Heerstr. 22', - ShipCity: 'Leipzig', - ShipRegion: null, - ShipPostalCode: '04179', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10780, - CustomerID: 'LILAS', - EmployeeID: 2, - OrderDate: '2019-12-16T00:00:00', - RequiredDate: '2019-12-30T00:00:00', - ShippedDate: '2019-12-25T00:00:00', - ShipVia: 1, - Freight: 42.1300, - ShipName: 'LILA-Supermercado', - ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', - ShipCity: 'Barquisimeto', - ShipRegion: 'Lara', - ShipPostalCode: '3508', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10781, - CustomerID: 'WARTH', - EmployeeID: 2, - OrderDate: '2019-12-17T00:00:00', - RequiredDate: '2020-01-14T00:00:00', - ShippedDate: '2019-12-19T00:00:00', - ShipVia: 3, - Freight: 73.1600, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10782, - CustomerID: 'CACTU', - EmployeeID: 9, - OrderDate: '2019-12-17T00:00:00', - RequiredDate: '2020-01-14T00:00:00', - ShippedDate: '2019-12-22T00:00:00', - ShipVia: 3, - Freight: 1.1000, - ShipName: 'Cactus Comidas para llevar', - ShipAddress: 'Cerrito 333', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10783, - CustomerID: 'HANAR', - EmployeeID: 4, - OrderDate: '2019-12-18T00:00:00', - RequiredDate: '2020-01-15T00:00:00', - ShippedDate: '2019-12-19T00:00:00', - ShipVia: 2, - Freight: 124.9800, - ShipName: 'Hanari Carnes', - ShipAddress: 'Rua do Paço, 67', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '05454-876', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10784, - CustomerID: 'MAGAA', - EmployeeID: 4, - OrderDate: '2019-12-18T00:00:00', - RequiredDate: '2020-01-15T00:00:00', - ShippedDate: '2019-12-22T00:00:00', - ShipVia: 3, - Freight: 70.0900, - ShipName: 'Magazzini Alimentari Riuniti', - ShipAddress: 'Via Ludovico il Moro 22', - ShipCity: 'Bergamo', - ShipRegion: null, - ShipPostalCode: '24100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10785, - CustomerID: 'GROSR', - EmployeeID: 1, - OrderDate: '2019-12-18T00:00:00', - RequiredDate: '2020-01-15T00:00:00', - ShippedDate: '2019-12-24T00:00:00', - ShipVia: 3, - Freight: 1.5100, - ShipName: 'GROSELLA-Restaurante', - ShipAddress: '5ª Ave. Los Palos Grandes', - ShipCity: 'Caracas', - ShipRegion: 'DF', - ShipPostalCode: '1081', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10786, - CustomerID: 'QUEEN', - EmployeeID: 8, - OrderDate: '2019-12-19T00:00:00', - RequiredDate: '2020-01-16T00:00:00', - ShippedDate: '2019-12-23T00:00:00', - ShipVia: 1, - Freight: 110.8700, - ShipName: 'Queen Cozinha', - ShipAddress: 'Alameda dos Canàrios, 891', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05487-020', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10787, - CustomerID: 'LAMAI', - EmployeeID: 2, - OrderDate: '2019-12-19T00:00:00', - RequiredDate: '2020-01-02T00:00:00', - ShippedDate: '2019-12-26T00:00:00', - ShipVia: 1, - Freight: 249.9300, - ShipName: 'La maison d\'Asie', - ShipAddress: '1 rue Alsace-Lorraine', - ShipCity: 'Toulouse', - ShipRegion: null, - ShipPostalCode: '31000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10788, - CustomerID: 'QUICK', - EmployeeID: 1, - OrderDate: '2019-12-22T00:00:00', - RequiredDate: '2020-01-19T00:00:00', - ShippedDate: '2020-01-19T00:00:00', - ShipVia: 2, - Freight: 42.7000, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10789, - CustomerID: 'FOLIG', - EmployeeID: 1, - OrderDate: '2019-12-22T00:00:00', - RequiredDate: '2020-01-19T00:00:00', - ShippedDate: '2019-12-31T00:00:00', - ShipVia: 2, - Freight: 100.6000, - ShipName: 'Folies gourmandes', - ShipAddress: '184, chaussée de Tournai', - ShipCity: 'Lille', - ShipRegion: null, - ShipPostalCode: '59000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10790, - CustomerID: 'GOURL', - EmployeeID: 6, - OrderDate: '2019-12-22T00:00:00', - RequiredDate: '2020-01-19T00:00:00', - ShippedDate: '2019-12-26T00:00:00', - ShipVia: 1, - Freight: 28.2300, - ShipName: 'Gourmet Lanchonetes', - ShipAddress: 'Av. Brasil, 442', - ShipCity: 'Campinas', - ShipRegion: 'SP', - ShipPostalCode: '04876-786', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10791, - CustomerID: 'FRANK', - EmployeeID: 6, - OrderDate: '2019-12-23T00:00:00', - RequiredDate: '2020-01-20T00:00:00', - ShippedDate: '2020-01-01T00:00:00', - ShipVia: 2, - Freight: 16.8500, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10792, - CustomerID: 'WOLZA', - EmployeeID: 1, - OrderDate: '2019-12-23T00:00:00', - RequiredDate: '2020-01-20T00:00:00', - ShippedDate: '2019-12-31T00:00:00', - ShipVia: 3, - Freight: 23.7900, - ShipName: 'Wolski Zajazd', - ShipAddress: 'ul. Filtrowa 68', - ShipCity: 'Warszawa', - ShipRegion: null, - ShipPostalCode: '01-012', - ShipCountry: 'Poland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10793, - CustomerID: 'AROUT', - EmployeeID: 3, - OrderDate: '2019-12-24T00:00:00', - RequiredDate: '2020-01-21T00:00:00', - ShippedDate: '2020-01-08T00:00:00', - ShipVia: 3, - Freight: 4.5200, - ShipName: 'Around the Horn', - ShipAddress: 'Brook Farm Stratford St. Mary', - ShipCity: 'Colchester', - ShipRegion: 'Essex', - ShipPostalCode: 'CO7 6JX', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10794, - CustomerID: 'QUEDE', - EmployeeID: 6, - OrderDate: '2019-12-24T00:00:00', - RequiredDate: '2020-01-21T00:00:00', - ShippedDate: '2020-01-02T00:00:00', - ShipVia: 1, - Freight: 21.4900, - ShipName: 'Que Delícia', - ShipAddress: 'Rua da Panificadora, 12', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-673', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10795, - CustomerID: 'ERNSH', - EmployeeID: 8, - OrderDate: '2019-12-24T00:00:00', - RequiredDate: '2020-01-21T00:00:00', - ShippedDate: '2020-01-20T00:00:00', - ShipVia: 2, - Freight: 126.6600, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10796, - CustomerID: 'HILAA', - EmployeeID: 3, - OrderDate: '2019-12-25T00:00:00', - RequiredDate: '2020-01-22T00:00:00', - ShippedDate: '2020-01-14T00:00:00', - ShipVia: 1, - Freight: 26.5200, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10797, - CustomerID: 'DRACD', - EmployeeID: 7, - OrderDate: '2019-12-25T00:00:00', - RequiredDate: '2020-01-22T00:00:00', - ShippedDate: '2020-01-05T00:00:00', - ShipVia: 2, - Freight: 33.3500, - ShipName: 'Drachenblut Delikatessen', - ShipAddress: 'Walserweg 21', - ShipCity: 'Aachen', - ShipRegion: null, - ShipPostalCode: '52066', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10798, - CustomerID: 'ISLAT', - EmployeeID: 2, - OrderDate: '2019-12-26T00:00:00', - RequiredDate: '2020-01-23T00:00:00', - ShippedDate: '2020-01-05T00:00:00', - ShipVia: 1, - Freight: 2.3300, - ShipName: 'Island Trading', - ShipAddress: 'Garden House Crowther Way', - ShipCity: 'Cowes', - ShipRegion: 'Isle of Wight', - ShipPostalCode: 'PO31 7PJ', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10799, - CustomerID: 'KOENE', - EmployeeID: 9, - OrderDate: '2019-12-26T00:00:00', - RequiredDate: '2020-02-06T00:00:00', - ShippedDate: '2020-01-05T00:00:00', - ShipVia: 3, - Freight: 30.7600, - ShipName: 'Königlich Essen', - ShipAddress: 'Maubelstr. 90', - ShipCity: 'Brandenburg', - ShipRegion: null, - ShipPostalCode: '14776', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10800, - CustomerID: 'SEVES', - EmployeeID: 1, - OrderDate: '2019-12-26T00:00:00', - RequiredDate: '2020-01-23T00:00:00', - ShippedDate: '2020-01-05T00:00:00', - ShipVia: 3, - Freight: 137.4400, - ShipName: 'Seven Seas Imports', - ShipAddress: '90 Wadhurst Rd.', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'OX15 4NB', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10801, - CustomerID: 'BOLID', - EmployeeID: 4, - OrderDate: '2019-12-29T00:00:00', - RequiredDate: '2020-01-26T00:00:00', - ShippedDate: '2019-12-31T00:00:00', - ShipVia: 2, - Freight: 97.0900, - ShipName: 'Bólido Comidas preparadas', - ShipAddress: 'C/ Araquil, 67', - ShipCity: 'Madrid', - ShipRegion: null, - ShipPostalCode: '28023', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10802, - CustomerID: 'SIMOB', - EmployeeID: 4, - OrderDate: '2019-12-29T00:00:00', - RequiredDate: '2020-01-26T00:00:00', - ShippedDate: '2020-01-02T00:00:00', - ShipVia: 2, - Freight: 257.2600, - ShipName: 'Simons bistro', - ShipAddress: 'Vinbæltet 34', - ShipCity: 'Kobenhavn', - ShipRegion: null, - ShipPostalCode: '1734', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10803, - CustomerID: 'WELLI', - EmployeeID: 4, - OrderDate: '2019-12-30T00:00:00', - RequiredDate: '2020-01-27T00:00:00', - ShippedDate: '2020-01-06T00:00:00', - ShipVia: 1, - Freight: 55.2300, - ShipName: 'Wellington Importadora', - ShipAddress: 'Rua do Mercado, 12', - ShipCity: 'Resende', - ShipRegion: 'SP', - ShipPostalCode: '08737-363', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10804, - CustomerID: 'SEVES', - EmployeeID: 6, - OrderDate: '2019-12-30T00:00:00', - RequiredDate: '2020-01-27T00:00:00', - ShippedDate: '2020-01-07T00:00:00', - ShipVia: 2, - Freight: 27.3300, - ShipName: 'Seven Seas Imports', - ShipAddress: '90 Wadhurst Rd.', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'OX15 4NB', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10805, - CustomerID: 'THEBI', - EmployeeID: 2, - OrderDate: '2019-12-30T00:00:00', - RequiredDate: '2020-01-27T00:00:00', - ShippedDate: '2020-01-09T00:00:00', - ShipVia: 3, - Freight: 237.3400, - ShipName: 'The Big Cheese', - ShipAddress: '89 Jefferson Way Suite 2', - ShipCity: 'Portland', - ShipRegion: 'OR', - ShipPostalCode: '97201', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10806, - CustomerID: 'VICTE', - EmployeeID: 3, - OrderDate: '2019-12-31T00:00:00', - RequiredDate: '2020-01-28T00:00:00', - ShippedDate: '2020-01-05T00:00:00', - ShipVia: 2, - Freight: 22.1100, - ShipName: 'Victuailles en stock', - ShipAddress: '2, rue du Commerce', - ShipCity: 'Lyon', - ShipRegion: null, - ShipPostalCode: '69004', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10807, - CustomerID: 'FRANS', - EmployeeID: 4, - OrderDate: '2019-12-31T00:00:00', - RequiredDate: '2020-01-28T00:00:00', - ShippedDate: '2020-01-30T00:00:00', - ShipVia: 1, - Freight: 1.3600, - ShipName: 'Franchi S.p.A.', - ShipAddress: 'Via Monte Bianco 34', - ShipCity: 'Torino', - ShipRegion: null, - ShipPostalCode: '10100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10808, - CustomerID: 'OLDWO', - EmployeeID: 2, - OrderDate: '2020-01-01T00:00:00', - RequiredDate: '2020-01-29T00:00:00', - ShippedDate: '2020-01-09T00:00:00', - ShipVia: 3, - Freight: 45.5300, - ShipName: 'Old World Delicatessen', - ShipAddress: '2743 Bering St.', - ShipCity: 'Anchorage', - ShipRegion: 'AK', - ShipPostalCode: '99508', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10809, - CustomerID: 'WELLI', - EmployeeID: 7, - OrderDate: '2020-01-01T00:00:00', - RequiredDate: '2020-01-29T00:00:00', - ShippedDate: '2020-01-07T00:00:00', - ShipVia: 1, - Freight: 4.8700, - ShipName: 'Wellington Importadora', - ShipAddress: 'Rua do Mercado, 12', - ShipCity: 'Resende', - ShipRegion: 'SP', - ShipPostalCode: '08737-363', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10810, - CustomerID: 'LAUGB', - EmployeeID: 2, - OrderDate: '2020-01-01T00:00:00', - RequiredDate: '2020-01-29T00:00:00', - ShippedDate: '2020-01-07T00:00:00', - ShipVia: 3, - Freight: 4.3300, - ShipName: 'Laughing Bacchus Wine Cellars', - ShipAddress: '2319 Elm St.', - ShipCity: 'Vancouver', - ShipRegion: 'BC', - ShipPostalCode: 'V3F 2K1', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10811, - CustomerID: 'LINOD', - EmployeeID: 8, - OrderDate: '2020-01-02T00:00:00', - RequiredDate: '2020-01-30T00:00:00', - ShippedDate: '2020-01-08T00:00:00', - ShipVia: 1, - Freight: 31.2200, - ShipName: 'LINO-Delicateses', - ShipAddress: 'Ave. 5 de Mayo Porlamar', - ShipCity: 'I. de Margarita', - ShipRegion: 'Nueva Esparta', - ShipPostalCode: '4980', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10812, - CustomerID: 'REGGC', - EmployeeID: 5, - OrderDate: '2020-01-02T00:00:00', - RequiredDate: '2020-01-30T00:00:00', - ShippedDate: '2020-01-12T00:00:00', - ShipVia: 1, - Freight: 59.7800, - ShipName: 'Reggiani Caseifici', - ShipAddress: 'Strada Provinciale 124', - ShipCity: 'Reggio Emilia', - ShipRegion: null, - ShipPostalCode: '42100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10813, - CustomerID: 'RICAR', - EmployeeID: 1, - OrderDate: '2020-01-05T00:00:00', - RequiredDate: '2020-02-02T00:00:00', - ShippedDate: '2020-01-09T00:00:00', - ShipVia: 1, - Freight: 47.3800, - ShipName: 'Ricardo Adocicados', - ShipAddress: 'Av. Copacabana, 267', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-890', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10814, - CustomerID: 'VICTE', - EmployeeID: 3, - OrderDate: '2020-01-05T00:00:00', - RequiredDate: '2020-02-02T00:00:00', - ShippedDate: '2020-01-14T00:00:00', - ShipVia: 3, - Freight: 130.9400, - ShipName: 'Victuailles en stock', - ShipAddress: '2, rue du Commerce', - ShipCity: 'Lyon', - ShipRegion: null, - ShipPostalCode: '69004', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10815, - CustomerID: 'SAVEA', - EmployeeID: 2, - OrderDate: '2020-01-05T00:00:00', - RequiredDate: '2020-02-02T00:00:00', - ShippedDate: '2020-01-14T00:00:00', - ShipVia: 3, - Freight: 14.6200, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10816, - CustomerID: 'GREAL', - EmployeeID: 4, - OrderDate: '2020-01-06T00:00:00', - RequiredDate: '2020-02-03T00:00:00', - ShippedDate: '2020-02-04T00:00:00', - ShipVia: 2, - Freight: 719.7800, - ShipName: 'Great Lakes Food Market', - ShipAddress: '2732 Baker Blvd.', - ShipCity: 'Eugene', - ShipRegion: 'OR', - ShipPostalCode: '97403', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10817, - CustomerID: 'KOENE', - EmployeeID: 3, - OrderDate: '2020-01-06T00:00:00', - RequiredDate: '2020-01-20T00:00:00', - ShippedDate: '2020-01-13T00:00:00', - ShipVia: 2, - Freight: 306.0700, - ShipName: 'Königlich Essen', - ShipAddress: 'Maubelstr. 90', - ShipCity: 'Brandenburg', - ShipRegion: null, - ShipPostalCode: '14776', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10818, - CustomerID: 'MAGAA', - EmployeeID: 7, - OrderDate: '2020-01-07T00:00:00', - RequiredDate: '2020-02-04T00:00:00', - ShippedDate: '2020-01-12T00:00:00', - ShipVia: 3, - Freight: 65.4800, - ShipName: 'Magazzini Alimentari Riuniti', - ShipAddress: 'Via Ludovico il Moro 22', - ShipCity: 'Bergamo', - ShipRegion: null, - ShipPostalCode: '24100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10819, - CustomerID: 'CACTU', - EmployeeID: 2, - OrderDate: '2020-01-07T00:00:00', - RequiredDate: '2020-02-04T00:00:00', - ShippedDate: '2020-01-16T00:00:00', - ShipVia: 3, - Freight: 19.7600, - ShipName: 'Cactus Comidas para llevar', - ShipAddress: 'Cerrito 333', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10820, - CustomerID: 'RATTC', - EmployeeID: 3, - OrderDate: '2020-01-07T00:00:00', - RequiredDate: '2020-02-04T00:00:00', - ShippedDate: '2020-01-13T00:00:00', - ShipVia: 2, - Freight: 37.5200, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10821, - CustomerID: 'SPLIR', - EmployeeID: 1, - OrderDate: '2020-01-08T00:00:00', - RequiredDate: '2020-02-05T00:00:00', - ShippedDate: '2020-01-15T00:00:00', - ShipVia: 1, - Freight: 36.6800, - ShipName: 'Split Rail Beer & Ale', - ShipAddress: 'P.O. Box 555', - ShipCity: 'Lander', - ShipRegion: 'WY', - ShipPostalCode: '82520', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10822, - CustomerID: 'TRAIH', - EmployeeID: 6, - OrderDate: '2020-01-08T00:00:00', - RequiredDate: '2020-02-05T00:00:00', - ShippedDate: '2020-01-16T00:00:00', - ShipVia: 3, - Freight: 7.0000, - ShipName: 'Trail\'s Head Gourmet Provisioners', - ShipAddress: '722 DaVinci Blvd.', - ShipCity: 'Kirkland', - ShipRegion: 'WA', - ShipPostalCode: '98034', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10823, - CustomerID: 'LILAS', - EmployeeID: 5, - OrderDate: '2020-01-09T00:00:00', - RequiredDate: '2020-02-06T00:00:00', - ShippedDate: '2020-01-13T00:00:00', - ShipVia: 2, - Freight: 163.9700, - ShipName: 'LILA-Supermercado', - ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', - ShipCity: 'Barquisimeto', - ShipRegion: 'Lara', - ShipPostalCode: '3508', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10824, - CustomerID: 'FOLKO', - EmployeeID: 8, - OrderDate: '2020-01-09T00:00:00', - RequiredDate: '2020-02-06T00:00:00', - ShippedDate: '2020-01-30T00:00:00', - ShipVia: 1, - Freight: 1.2300, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10825, - CustomerID: 'DRACD', - EmployeeID: 1, - OrderDate: '2020-01-09T00:00:00', - RequiredDate: '2020-02-06T00:00:00', - ShippedDate: '2020-01-14T00:00:00', - ShipVia: 1, - Freight: 79.2500, - ShipName: 'Drachenblut Delikatessen', - ShipAddress: 'Walserweg 21', - ShipCity: 'Aachen', - ShipRegion: null, - ShipPostalCode: '52066', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10826, - CustomerID: 'BLONP', - EmployeeID: 6, - OrderDate: '2020-01-12T00:00:00', - RequiredDate: '2020-02-09T00:00:00', - ShippedDate: '2020-02-06T00:00:00', - ShipVia: 1, - Freight: 7.0900, - ShipName: 'Blondel père et fils', - ShipAddress: '24, place Kléber', - ShipCity: 'Strasbourg', - ShipRegion: null, - ShipPostalCode: '67000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10827, - CustomerID: 'BONAP', - EmployeeID: 1, - OrderDate: '2020-01-12T00:00:00', - RequiredDate: '2020-01-26T00:00:00', - ShippedDate: '2020-02-06T00:00:00', - ShipVia: 2, - Freight: 63.5400, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10828, - CustomerID: 'RANCH', - EmployeeID: 9, - OrderDate: '2020-01-13T00:00:00', - RequiredDate: '2020-01-27T00:00:00', - ShippedDate: '2020-02-04T00:00:00', - ShipVia: 1, - Freight: 90.8500, - ShipName: 'Rancho grande', - ShipAddress: 'Av. del Libertador 900', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10829, - CustomerID: 'ISLAT', - EmployeeID: 9, - OrderDate: '2020-01-13T00:00:00', - RequiredDate: '2020-02-10T00:00:00', - ShippedDate: '2020-01-23T00:00:00', - ShipVia: 1, - Freight: 154.7200, - ShipName: 'Island Trading', - ShipAddress: 'Garden House Crowther Way', - ShipCity: 'Cowes', - ShipRegion: 'Isle of Wight', - ShipPostalCode: 'PO31 7PJ', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10830, - CustomerID: 'TRADH', - EmployeeID: 4, - OrderDate: '2020-01-13T00:00:00', - RequiredDate: '2020-02-24T00:00:00', - ShippedDate: '2020-01-21T00:00:00', - ShipVia: 2, - Freight: 81.8300, - ShipName: 'Tradiçao Hipermercados', - ShipAddress: 'Av. Inês de Castro, 414', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05634-030', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10831, - CustomerID: 'SANTG', - EmployeeID: 3, - OrderDate: '2020-01-14T00:00:00', - RequiredDate: '2020-02-11T00:00:00', - ShippedDate: '2020-01-23T00:00:00', - ShipVia: 2, - Freight: 72.1900, - ShipName: 'Santé Gourmet', - ShipAddress: 'Erling Skakkes gate 78', - ShipCity: 'Stavern', - ShipRegion: null, - ShipPostalCode: '4110', - ShipCountry: 'Norway', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10832, - CustomerID: 'LAMAI', - EmployeeID: 2, - OrderDate: '2020-01-14T00:00:00', - RequiredDate: '2020-02-11T00:00:00', - ShippedDate: '2020-01-19T00:00:00', - ShipVia: 2, - Freight: 43.2600, - ShipName: 'La maison d\'Asie', - ShipAddress: '1 rue Alsace-Lorraine', - ShipCity: 'Toulouse', - ShipRegion: null, - ShipPostalCode: '31000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10833, - CustomerID: 'OTTIK', - EmployeeID: 6, - OrderDate: '2020-01-15T00:00:00', - RequiredDate: '2020-02-12T00:00:00', - ShippedDate: '2020-01-23T00:00:00', - ShipVia: 2, - Freight: 71.4900, - ShipName: 'Ottilies Käseladen', - ShipAddress: 'Mehrheimerstr. 369', - ShipCity: 'Köln', - ShipRegion: null, - ShipPostalCode: '50739', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10834, - CustomerID: 'TRADH', - EmployeeID: 1, - OrderDate: '2020-01-15T00:00:00', - RequiredDate: '2020-02-12T00:00:00', - ShippedDate: '2020-01-19T00:00:00', - ShipVia: 3, - Freight: 29.7800, - ShipName: 'Tradiçao Hipermercados', - ShipAddress: 'Av. Inês de Castro, 414', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05634-030', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10835, - CustomerID: 'ALFKI', - EmployeeID: 1, - OrderDate: '2020-01-15T00:00:00', - RequiredDate: '2020-02-12T00:00:00', - ShippedDate: '2020-01-21T00:00:00', - ShipVia: 3, - Freight: 69.5300, - ShipName: 'Alfred\'s Futterkiste', - ShipAddress: 'Obere Str. 57', - ShipCity: 'Berlin', - ShipRegion: null, - ShipPostalCode: '12209', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10836, - CustomerID: 'ERNSH', - EmployeeID: 7, - OrderDate: '2020-01-16T00:00:00', - RequiredDate: '2020-02-13T00:00:00', - ShippedDate: '2020-01-21T00:00:00', - ShipVia: 1, - Freight: 411.8800, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10837, - CustomerID: 'BERGS', - EmployeeID: 9, - OrderDate: '2020-01-16T00:00:00', - RequiredDate: '2020-02-13T00:00:00', - ShippedDate: '2020-01-23T00:00:00', - ShipVia: 3, - Freight: 13.3200, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10838, - CustomerID: 'LINOD', - EmployeeID: 3, - OrderDate: '2020-01-19T00:00:00', - RequiredDate: '2020-02-16T00:00:00', - ShippedDate: '2020-01-23T00:00:00', - ShipVia: 3, - Freight: 59.2800, - ShipName: 'LINO-Delicateses', - ShipAddress: 'Ave. 5 de Mayo Porlamar', - ShipCity: 'I. de Margarita', - ShipRegion: 'Nueva Esparta', - ShipPostalCode: '4980', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10839, - CustomerID: 'TRADH', - EmployeeID: 3, - OrderDate: '2020-01-19T00:00:00', - RequiredDate: '2020-02-16T00:00:00', - ShippedDate: '2020-01-22T00:00:00', - ShipVia: 3, - Freight: 35.4300, - ShipName: 'Tradiçao Hipermercados', - ShipAddress: 'Av. Inês de Castro, 414', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05634-030', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10840, - CustomerID: 'LINOD', - EmployeeID: 4, - OrderDate: '2020-01-19T00:00:00', - RequiredDate: '2020-03-02T00:00:00', - ShippedDate: '2020-02-16T00:00:00', - ShipVia: 2, - Freight: 2.7100, - ShipName: 'LINO-Delicateses', - ShipAddress: 'Ave. 5 de Mayo Porlamar', - ShipCity: 'I. de Margarita', - ShipRegion: 'Nueva Esparta', - ShipPostalCode: '4980', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10841, - CustomerID: 'SUPRD', - EmployeeID: 5, - OrderDate: '2020-01-20T00:00:00', - RequiredDate: '2020-02-17T00:00:00', - ShippedDate: '2020-01-29T00:00:00', - ShipVia: 2, - Freight: 424.3000, - ShipName: 'Suprêmes délices', - ShipAddress: 'Boulevard Tirou, 255', - ShipCity: 'Charleroi', - ShipRegion: null, - ShipPostalCode: 'B-6000', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10842, - CustomerID: 'TORTU', - EmployeeID: 1, - OrderDate: '2020-01-20T00:00:00', - RequiredDate: '2020-02-17T00:00:00', - ShippedDate: '2020-01-29T00:00:00', - ShipVia: 3, - Freight: 54.4200, - ShipName: 'Tortuga Restaurante', - ShipAddress: 'Avda. Azteca 123', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10843, - CustomerID: 'VICTE', - EmployeeID: 4, - OrderDate: '2020-01-21T00:00:00', - RequiredDate: '2020-02-18T00:00:00', - ShippedDate: '2020-01-26T00:00:00', - ShipVia: 2, - Freight: 9.2600, - ShipName: 'Victuailles en stock', - ShipAddress: '2, rue du Commerce', - ShipCity: 'Lyon', - ShipRegion: null, - ShipPostalCode: '69004', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10844, - CustomerID: 'PICCO', - EmployeeID: 8, - OrderDate: '2020-01-21T00:00:00', - RequiredDate: '2020-02-18T00:00:00', - ShippedDate: '2020-01-26T00:00:00', - ShipVia: 2, - Freight: 25.2200, - ShipName: 'Piccolo und mehr', - ShipAddress: 'Geislweg 14', - ShipCity: 'Salzburg', - ShipRegion: null, - ShipPostalCode: '5020', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10845, - CustomerID: 'QUICK', - EmployeeID: 8, - OrderDate: '2020-01-21T00:00:00', - RequiredDate: '2020-02-04T00:00:00', - ShippedDate: '2020-01-30T00:00:00', - ShipVia: 1, - Freight: 212.9800, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10846, - CustomerID: 'SUPRD', - EmployeeID: 2, - OrderDate: '2020-01-22T00:00:00', - RequiredDate: '2020-03-05T00:00:00', - ShippedDate: '2020-01-23T00:00:00', - ShipVia: 3, - Freight: 56.4600, - ShipName: 'Suprêmes délices', - ShipAddress: 'Boulevard Tirou, 255', - ShipCity: 'Charleroi', - ShipRegion: null, - ShipPostalCode: 'B-6000', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10847, - CustomerID: 'SAVEA', - EmployeeID: 4, - OrderDate: '2020-01-22T00:00:00', - RequiredDate: '2020-02-05T00:00:00', - ShippedDate: '2020-02-10T00:00:00', - ShipVia: 3, - Freight: 487.5700, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10848, - CustomerID: 'CONSH', - EmployeeID: 7, - OrderDate: '2020-01-23T00:00:00', - RequiredDate: '2020-02-20T00:00:00', - ShippedDate: '2020-01-29T00:00:00', - ShipVia: 2, - Freight: 38.2400, - ShipName: 'Consolidated Holdings', - ShipAddress: 'Berkeley Gardens 12 Brewery', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'WX1 6LT', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10849, - CustomerID: 'KOENE', - EmployeeID: 9, - OrderDate: '2020-01-23T00:00:00', - RequiredDate: '2020-02-20T00:00:00', - ShippedDate: '2020-01-30T00:00:00', - ShipVia: 2, - Freight: 0.5600, - ShipName: 'Königlich Essen', - ShipAddress: 'Maubelstr. 90', - ShipCity: 'Brandenburg', - ShipRegion: null, - ShipPostalCode: '14776', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10850, - CustomerID: 'VICTE', - EmployeeID: 1, - OrderDate: '2020-01-23T00:00:00', - RequiredDate: '2020-03-06T00:00:00', - ShippedDate: '2020-01-30T00:00:00', - ShipVia: 1, - Freight: 49.1900, - ShipName: 'Victuailles en stock', - ShipAddress: '2, rue du Commerce', - ShipCity: 'Lyon', - ShipRegion: null, - ShipPostalCode: '69004', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10851, - CustomerID: 'RICAR', - EmployeeID: 5, - OrderDate: '2020-01-26T00:00:00', - RequiredDate: '2020-02-23T00:00:00', - ShippedDate: '2020-02-02T00:00:00', - ShipVia: 1, - Freight: 160.5500, - ShipName: 'Ricardo Adocicados', - ShipAddress: 'Av. Copacabana, 267', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-890', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10852, - CustomerID: 'RATTC', - EmployeeID: 8, - OrderDate: '2020-01-26T00:00:00', - RequiredDate: '2020-02-09T00:00:00', - ShippedDate: '2020-01-30T00:00:00', - ShipVia: 1, - Freight: 174.0500, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10853, - CustomerID: 'BLAUS', - EmployeeID: 9, - OrderDate: '2020-01-27T00:00:00', - RequiredDate: '2020-02-24T00:00:00', - ShippedDate: '2020-02-03T00:00:00', - ShipVia: 2, - Freight: 53.8300, - ShipName: 'Blauer See Delikatessen', - ShipAddress: 'Forsterstr. 57', - ShipCity: 'Mannheim', - ShipRegion: null, - ShipPostalCode: '68306', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10854, - CustomerID: 'ERNSH', - EmployeeID: 3, - OrderDate: '2020-01-27T00:00:00', - RequiredDate: '2020-02-24T00:00:00', - ShippedDate: '2020-02-05T00:00:00', - ShipVia: 2, - Freight: 100.2200, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10855, - CustomerID: 'OLDWO', - EmployeeID: 3, - OrderDate: '2020-01-27T00:00:00', - RequiredDate: '2020-02-24T00:00:00', - ShippedDate: '2020-02-04T00:00:00', - ShipVia: 1, - Freight: 170.9700, - ShipName: 'Old World Delicatessen', - ShipAddress: '2743 Bering St.', - ShipCity: 'Anchorage', - ShipRegion: 'AK', - ShipPostalCode: '99508', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10856, - CustomerID: 'ANTON', - EmployeeID: 3, - OrderDate: '2020-01-28T00:00:00', - RequiredDate: '2020-02-25T00:00:00', - ShippedDate: '2020-02-10T00:00:00', - ShipVia: 2, - Freight: 58.4300, - ShipName: 'Antonio Moreno Taquería', - ShipAddress: 'Mataderos 2312', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05023', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10857, - CustomerID: 'BERGS', - EmployeeID: 8, - OrderDate: '2020-01-28T00:00:00', - RequiredDate: '2020-02-25T00:00:00', - ShippedDate: '2020-02-06T00:00:00', - ShipVia: 2, - Freight: 188.8500, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10858, - CustomerID: 'LACOR', - EmployeeID: 2, - OrderDate: '2020-01-29T00:00:00', - RequiredDate: '2020-02-26T00:00:00', - ShippedDate: '2020-02-03T00:00:00', - ShipVia: 1, - Freight: 52.5100, - ShipName: 'La corne d\'abondance', - ShipAddress: '67, avenue de l\'Europe', - ShipCity: 'Versailles', - ShipRegion: null, - ShipPostalCode: '78000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10859, - CustomerID: 'FRANK', - EmployeeID: 1, - OrderDate: '2020-01-29T00:00:00', - RequiredDate: '2020-02-26T00:00:00', - ShippedDate: '2020-02-02T00:00:00', - ShipVia: 2, - Freight: 76.1000, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10860, - CustomerID: 'FRANR', - EmployeeID: 3, - OrderDate: '2020-01-29T00:00:00', - RequiredDate: '2020-02-26T00:00:00', - ShippedDate: '2020-02-04T00:00:00', - ShipVia: 3, - Freight: 19.2600, - ShipName: 'France restauration', - ShipAddress: '54, rue Royale', - ShipCity: 'Nantes', - ShipRegion: null, - ShipPostalCode: '44000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10861, - CustomerID: 'WHITC', - EmployeeID: 4, - OrderDate: '2020-01-30T00:00:00', - RequiredDate: '2020-02-27T00:00:00', - ShippedDate: '2020-02-17T00:00:00', - ShipVia: 2, - Freight: 14.9300, - ShipName: 'White Clover Markets', - ShipAddress: '1029 - 12th Ave. S.', - ShipCity: 'Seattle', - ShipRegion: 'WA', - ShipPostalCode: '98124', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10862, - CustomerID: 'LEHMS', - EmployeeID: 8, - OrderDate: '2020-01-30T00:00:00', - RequiredDate: '2020-03-13T00:00:00', - ShippedDate: '2020-02-02T00:00:00', - ShipVia: 2, - Freight: 53.2300, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10863, - CustomerID: 'HILAA', - EmployeeID: 4, - OrderDate: '2020-02-02T00:00:00', - RequiredDate: '2020-03-02T00:00:00', - ShippedDate: '2020-02-17T00:00:00', - ShipVia: 2, - Freight: 30.2600, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10864, - CustomerID: 'AROUT', - EmployeeID: 4, - OrderDate: '2020-02-02T00:00:00', - RequiredDate: '2020-03-02T00:00:00', - ShippedDate: '2020-02-09T00:00:00', - ShipVia: 2, - Freight: 3.0400, - ShipName: 'Around the Horn', - ShipAddress: 'Brook Farm Stratford St. Mary', - ShipCity: 'Colchester', - ShipRegion: 'Essex', - ShipPostalCode: 'CO7 6JX', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10865, - CustomerID: 'QUICK', - EmployeeID: 2, - OrderDate: '2020-02-02T00:00:00', - RequiredDate: '2020-02-16T00:00:00', - ShippedDate: '2020-02-12T00:00:00', - ShipVia: 1, - Freight: 348.1400, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10866, - CustomerID: 'BERGS', - EmployeeID: 5, - OrderDate: '2020-02-03T00:00:00', - RequiredDate: '2020-03-03T00:00:00', - ShippedDate: '2020-02-12T00:00:00', - ShipVia: 1, - Freight: 109.1100, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10867, - CustomerID: 'LONEP', - EmployeeID: 6, - OrderDate: '2020-02-03T00:00:00', - RequiredDate: '2020-03-17T00:00:00', - ShippedDate: '2020-02-11T00:00:00', - ShipVia: 1, - Freight: 1.9300, - ShipName: 'Lonesome Pine Restaurant', - ShipAddress: '89 Chiaroscuro Rd.', - ShipCity: 'Portland', - ShipRegion: 'OR', - ShipPostalCode: '97219', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10868, - CustomerID: 'QUEEN', - EmployeeID: 7, - OrderDate: '2020-02-04T00:00:00', - RequiredDate: '2020-03-04T00:00:00', - ShippedDate: '2020-02-23T00:00:00', - ShipVia: 2, - Freight: 191.2700, - ShipName: 'Queen Cozinha', - ShipAddress: 'Alameda dos Canàrios, 891', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05487-020', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10869, - CustomerID: 'SEVES', - EmployeeID: 5, - OrderDate: '2020-02-04T00:00:00', - RequiredDate: '2020-03-04T00:00:00', - ShippedDate: '2020-02-09T00:00:00', - ShipVia: 1, - Freight: 143.2800, - ShipName: 'Seven Seas Imports', - ShipAddress: '90 Wadhurst Rd.', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'OX15 4NB', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10870, - CustomerID: 'WOLZA', - EmployeeID: 5, - OrderDate: '2020-02-04T00:00:00', - RequiredDate: '2020-03-04T00:00:00', - ShippedDate: '2020-02-13T00:00:00', - ShipVia: 3, - Freight: 12.0400, - ShipName: 'Wolski Zajazd', - ShipAddress: 'ul. Filtrowa 68', - ShipCity: 'Warszawa', - ShipRegion: null, - ShipPostalCode: '01-012', - ShipCountry: 'Poland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10871, - CustomerID: 'BONAP', - EmployeeID: 9, - OrderDate: '2020-02-05T00:00:00', - RequiredDate: '2020-03-05T00:00:00', - ShippedDate: '2020-02-10T00:00:00', - ShipVia: 2, - Freight: 112.2700, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10872, - CustomerID: 'GODOS', - EmployeeID: 5, - OrderDate: '2020-02-05T00:00:00', - RequiredDate: '2020-03-05T00:00:00', - ShippedDate: '2020-02-09T00:00:00', - ShipVia: 2, - Freight: 175.3200, - ShipName: 'Godos Cocina Típica', - ShipAddress: 'C/ Romero, 33', - ShipCity: 'Sevilla', - ShipRegion: null, - ShipPostalCode: '41101', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10873, - CustomerID: 'WILMK', - EmployeeID: 4, - OrderDate: '2020-02-06T00:00:00', - RequiredDate: '2020-03-06T00:00:00', - ShippedDate: '2020-02-09T00:00:00', - ShipVia: 1, - Freight: 0.8200, - ShipName: 'Wilman Kala', - ShipAddress: 'Keskuskatu 45', - ShipCity: 'Helsinki', - ShipRegion: null, - ShipPostalCode: '21240', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10874, - CustomerID: 'GODOS', - EmployeeID: 5, - OrderDate: '2020-02-06T00:00:00', - RequiredDate: '2020-03-06T00:00:00', - ShippedDate: '2020-02-11T00:00:00', - ShipVia: 2, - Freight: 19.5800, - ShipName: 'Godos Cocina Típica', - ShipAddress: 'C/ Romero, 33', - ShipCity: 'Sevilla', - ShipRegion: null, - ShipPostalCode: '41101', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10875, - CustomerID: 'BERGS', - EmployeeID: 4, - OrderDate: '2020-02-06T00:00:00', - RequiredDate: '2020-03-06T00:00:00', - ShippedDate: '2020-03-03T00:00:00', - ShipVia: 2, - Freight: 32.3700, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10876, - CustomerID: 'BONAP', - EmployeeID: 7, - OrderDate: '2020-02-09T00:00:00', - RequiredDate: '2020-03-09T00:00:00', - ShippedDate: '2020-02-12T00:00:00', - ShipVia: 3, - Freight: 60.4200, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10877, - CustomerID: 'RICAR', - EmployeeID: 1, - OrderDate: '2020-02-09T00:00:00', - RequiredDate: '2020-03-09T00:00:00', - ShippedDate: '2020-02-19T00:00:00', - ShipVia: 1, - Freight: 38.0600, - ShipName: 'Ricardo Adocicados', - ShipAddress: 'Av. Copacabana, 267', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-890', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10878, - CustomerID: 'QUICK', - EmployeeID: 4, - OrderDate: '2020-02-10T00:00:00', - RequiredDate: '2020-03-10T00:00:00', - ShippedDate: '2020-02-12T00:00:00', - ShipVia: 1, - Freight: 46.6900, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10879, - CustomerID: 'WILMK', - EmployeeID: 3, - OrderDate: '2020-02-10T00:00:00', - RequiredDate: '2020-03-10T00:00:00', - ShippedDate: '2020-02-12T00:00:00', - ShipVia: 3, - Freight: 8.5000, - ShipName: 'Wilman Kala', - ShipAddress: 'Keskuskatu 45', - ShipCity: 'Helsinki', - ShipRegion: null, - ShipPostalCode: '21240', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10880, - CustomerID: 'FOLKO', - EmployeeID: 7, - OrderDate: '2020-02-10T00:00:00', - RequiredDate: '2020-03-24T00:00:00', - ShippedDate: '2020-02-18T00:00:00', - ShipVia: 1, - Freight: 88.0100, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10881, - CustomerID: 'CACTU', - EmployeeID: 4, - OrderDate: '2020-02-11T00:00:00', - RequiredDate: '2020-03-11T00:00:00', - ShippedDate: '2020-02-18T00:00:00', - ShipVia: 1, - Freight: 2.8400, - ShipName: 'Cactus Comidas para llevar', - ShipAddress: 'Cerrito 333', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10882, - CustomerID: 'SAVEA', - EmployeeID: 4, - OrderDate: '2020-02-11T00:00:00', - RequiredDate: '2020-03-11T00:00:00', - ShippedDate: '2020-02-20T00:00:00', - ShipVia: 3, - Freight: 23.1000, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10883, - CustomerID: 'LONEP', - EmployeeID: 8, - OrderDate: '2020-02-12T00:00:00', - RequiredDate: '2020-03-12T00:00:00', - ShippedDate: '2020-02-20T00:00:00', - ShipVia: 3, - Freight: 0.5300, - ShipName: 'Lonesome Pine Restaurant', - ShipAddress: '89 Chiaroscuro Rd.', - ShipCity: 'Portland', - ShipRegion: 'OR', - ShipPostalCode: '97219', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10884, - CustomerID: 'LETSS', - EmployeeID: 4, - OrderDate: '2020-02-12T00:00:00', - RequiredDate: '2020-03-12T00:00:00', - ShippedDate: '2020-02-13T00:00:00', - ShipVia: 2, - Freight: 90.9700, - ShipName: 'Let\'s Stop N Shop', - ShipAddress: '87 Polk St. Suite 5', - ShipCity: 'San Francisco', - ShipRegion: 'CA', - ShipPostalCode: '94117', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10885, - CustomerID: 'SUPRD', - EmployeeID: 6, - OrderDate: '2020-02-12T00:00:00', - RequiredDate: '2020-03-12T00:00:00', - ShippedDate: '2020-02-18T00:00:00', - ShipVia: 3, - Freight: 5.6400, - ShipName: 'Suprêmes délices', - ShipAddress: 'Boulevard Tirou, 255', - ShipCity: 'Charleroi', - ShipRegion: null, - ShipPostalCode: 'B-6000', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10886, - CustomerID: 'HANAR', - EmployeeID: 1, - OrderDate: '2020-02-13T00:00:00', - RequiredDate: '2020-03-13T00:00:00', - ShippedDate: '2020-03-02T00:00:00', - ShipVia: 1, - Freight: 4.9900, - ShipName: 'Hanari Carnes', - ShipAddress: 'Rua do Paço, 67', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '05454-876', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10887, - CustomerID: 'GALED', - EmployeeID: 8, - OrderDate: '2020-02-13T00:00:00', - RequiredDate: '2020-03-13T00:00:00', - ShippedDate: '2020-02-16T00:00:00', - ShipVia: 3, - Freight: 1.2500, - ShipName: 'Galería del gastronómo', - ShipAddress: 'Rambla de Cataluña, 23', - ShipCity: 'Barcelona', - ShipRegion: null, - ShipPostalCode: '8022', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10888, - CustomerID: 'GODOS', - EmployeeID: 1, - OrderDate: '2020-02-16T00:00:00', - RequiredDate: '2020-03-16T00:00:00', - ShippedDate: '2020-02-23T00:00:00', - ShipVia: 2, - Freight: 51.8700, - ShipName: 'Godos Cocina Típica', - ShipAddress: 'C/ Romero, 33', - ShipCity: 'Sevilla', - ShipRegion: null, - ShipPostalCode: '41101', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10889, - CustomerID: 'RATTC', - EmployeeID: 9, - OrderDate: '2020-02-16T00:00:00', - RequiredDate: '2020-03-16T00:00:00', - ShippedDate: '2020-02-23T00:00:00', - ShipVia: 3, - Freight: 280.6100, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10890, - CustomerID: 'DUMON', - EmployeeID: 7, - OrderDate: '2020-02-16T00:00:00', - RequiredDate: '2020-03-16T00:00:00', - ShippedDate: '2020-02-18T00:00:00', - ShipVia: 1, - Freight: 32.7600, - ShipName: 'Du monde entier', - ShipAddress: '67, rue des Cinquante Otages', - ShipCity: 'Nantes', - ShipRegion: null, - ShipPostalCode: '44000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10891, - CustomerID: 'LEHMS', - EmployeeID: 7, - OrderDate: '2020-02-17T00:00:00', - RequiredDate: '2020-03-17T00:00:00', - ShippedDate: '2020-02-19T00:00:00', - ShipVia: 2, - Freight: 20.3700, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10892, - CustomerID: 'MAISD', - EmployeeID: 4, - OrderDate: '2020-02-17T00:00:00', - RequiredDate: '2020-03-17T00:00:00', - ShippedDate: '2020-02-19T00:00:00', - ShipVia: 2, - Freight: 120.2700, - ShipName: 'Maison Dewey', - ShipAddress: 'Rue Joseph-Bens 532', - ShipCity: 'Bruxelles', - ShipRegion: null, - ShipPostalCode: 'B-1180', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10893, - CustomerID: 'KOENE', - EmployeeID: 9, - OrderDate: '2020-02-18T00:00:00', - RequiredDate: '2020-03-18T00:00:00', - ShippedDate: '2020-02-20T00:00:00', - ShipVia: 2, - Freight: 77.7800, - ShipName: 'Königlich Essen', - ShipAddress: 'Maubelstr. 90', - ShipCity: 'Brandenburg', - ShipRegion: null, - ShipPostalCode: '14776', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10894, - CustomerID: 'SAVEA', - EmployeeID: 1, - OrderDate: '2020-02-18T00:00:00', - RequiredDate: '2020-03-18T00:00:00', - ShippedDate: '2020-02-20T00:00:00', - ShipVia: 1, - Freight: 116.1300, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10895, - CustomerID: 'ERNSH', - EmployeeID: 3, - OrderDate: '2020-02-18T00:00:00', - RequiredDate: '2020-03-18T00:00:00', - ShippedDate: '2020-02-23T00:00:00', - ShipVia: 1, - Freight: 162.7500, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10896, - CustomerID: 'MAISD', - EmployeeID: 7, - OrderDate: '2020-02-19T00:00:00', - RequiredDate: '2020-03-19T00:00:00', - ShippedDate: '2020-02-27T00:00:00', - ShipVia: 3, - Freight: 32.4500, - ShipName: 'Maison Dewey', - ShipAddress: 'Rue Joseph-Bens 532', - ShipCity: 'Bruxelles', - ShipRegion: null, - ShipPostalCode: 'B-1180', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10897, - CustomerID: 'HUNGO', - EmployeeID: 3, - OrderDate: '2020-02-19T00:00:00', - RequiredDate: '2020-03-19T00:00:00', - ShippedDate: '2020-02-25T00:00:00', - ShipVia: 2, - Freight: 603.5400, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10898, - CustomerID: 'OCEAN', - EmployeeID: 4, - OrderDate: '2020-02-20T00:00:00', - RequiredDate: '2020-03-20T00:00:00', - ShippedDate: '2020-03-06T00:00:00', - ShipVia: 2, - Freight: 1.2700, - ShipName: 'Océano Atlántico Ltda.', - ShipAddress: 'Ing. Gustavo Moncada 8585 Piso 20-A', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10899, - CustomerID: 'LILAS', - EmployeeID: 5, - OrderDate: '2020-02-20T00:00:00', - RequiredDate: '2020-03-20T00:00:00', - ShippedDate: '2020-02-26T00:00:00', - ShipVia: 3, - Freight: 1.2100, - ShipName: 'LILA-Supermercado', - ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', - ShipCity: 'Barquisimeto', - ShipRegion: 'Lara', - ShipPostalCode: '3508', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10900, - CustomerID: 'WELLI', - EmployeeID: 1, - OrderDate: '2020-02-20T00:00:00', - RequiredDate: '2020-03-20T00:00:00', - ShippedDate: '2020-03-04T00:00:00', - ShipVia: 2, - Freight: 1.6600, - ShipName: 'Wellington Importadora', - ShipAddress: 'Rua do Mercado, 12', - ShipCity: 'Resende', - ShipRegion: 'SP', - ShipPostalCode: '08737-363', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10901, - CustomerID: 'HILAA', - EmployeeID: 4, - OrderDate: '2020-02-23T00:00:00', - RequiredDate: '2020-03-23T00:00:00', - ShippedDate: '2020-02-26T00:00:00', - ShipVia: 1, - Freight: 62.0900, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10902, - CustomerID: 'FOLKO', - EmployeeID: 1, - OrderDate: '2020-02-23T00:00:00', - RequiredDate: '2020-03-23T00:00:00', - ShippedDate: '2020-03-03T00:00:00', - ShipVia: 1, - Freight: 44.1500, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10903, - CustomerID: 'HANAR', - EmployeeID: 3, - OrderDate: '2020-02-24T00:00:00', - RequiredDate: '2020-03-24T00:00:00', - ShippedDate: '2020-03-04T00:00:00', - ShipVia: 3, - Freight: 36.7100, - ShipName: 'Hanari Carnes', - ShipAddress: 'Rua do Paço, 67', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '05454-876', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10904, - CustomerID: 'WHITC', - EmployeeID: 3, - OrderDate: '2020-02-24T00:00:00', - RequiredDate: '2020-03-24T00:00:00', - ShippedDate: '2020-02-27T00:00:00', - ShipVia: 3, - Freight: 162.9500, - ShipName: 'White Clover Markets', - ShipAddress: '1029 - 12th Ave. S.', - ShipCity: 'Seattle', - ShipRegion: 'WA', - ShipPostalCode: '98124', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10905, - CustomerID: 'WELLI', - EmployeeID: 9, - OrderDate: '2020-02-24T00:00:00', - RequiredDate: '2020-03-24T00:00:00', - ShippedDate: '2020-03-06T00:00:00', - ShipVia: 2, - Freight: 13.7200, - ShipName: 'Wellington Importadora', - ShipAddress: 'Rua do Mercado, 12', - ShipCity: 'Resende', - ShipRegion: 'SP', - ShipPostalCode: '08737-363', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10906, - CustomerID: 'WOLZA', - EmployeeID: 4, - OrderDate: '2020-02-25T00:00:00', - RequiredDate: '2020-03-11T00:00:00', - ShippedDate: '2020-03-03T00:00:00', - ShipVia: 3, - Freight: 26.2900, - ShipName: 'Wolski Zajazd', - ShipAddress: 'ul. Filtrowa 68', - ShipCity: 'Warszawa', - ShipRegion: null, - ShipPostalCode: '01-012', - ShipCountry: 'Poland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10907, - CustomerID: 'SPECD', - EmployeeID: 6, - OrderDate: '2020-02-25T00:00:00', - RequiredDate: '2020-03-25T00:00:00', - ShippedDate: '2020-02-27T00:00:00', - ShipVia: 3, - Freight: 9.1900, - ShipName: 'Spécialités du monde', - ShipAddress: '25, rue Lauriston', - ShipCity: 'Paris', - ShipRegion: null, - ShipPostalCode: '75016', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10908, - CustomerID: 'REGGC', - EmployeeID: 4, - OrderDate: '2020-02-26T00:00:00', - RequiredDate: '2020-03-26T00:00:00', - ShippedDate: '2020-03-06T00:00:00', - ShipVia: 2, - Freight: 32.9600, - ShipName: 'Reggiani Caseifici', - ShipAddress: 'Strada Provinciale 124', - ShipCity: 'Reggio Emilia', - ShipRegion: null, - ShipPostalCode: '42100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10909, - CustomerID: 'SANTG', - EmployeeID: 1, - OrderDate: '2020-02-26T00:00:00', - RequiredDate: '2020-03-26T00:00:00', - ShippedDate: '2020-03-10T00:00:00', - ShipVia: 2, - Freight: 53.0500, - ShipName: 'Santé Gourmet', - ShipAddress: 'Erling Skakkes gate 78', - ShipCity: 'Stavern', - ShipRegion: null, - ShipPostalCode: '4110', - ShipCountry: 'Norway', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10910, - CustomerID: 'WILMK', - EmployeeID: 1, - OrderDate: '2020-02-26T00:00:00', - RequiredDate: '2020-03-26T00:00:00', - ShippedDate: '2020-03-04T00:00:00', - ShipVia: 3, - Freight: 38.1100, - ShipName: 'Wilman Kala', - ShipAddress: 'Keskuskatu 45', - ShipCity: 'Helsinki', - ShipRegion: null, - ShipPostalCode: '21240', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10911, - CustomerID: 'GODOS', - EmployeeID: 3, - OrderDate: '2020-02-26T00:00:00', - RequiredDate: '2020-03-26T00:00:00', - ShippedDate: '2020-03-05T00:00:00', - ShipVia: 1, - Freight: 38.1900, - ShipName: 'Godos Cocina Típica', - ShipAddress: 'C/ Romero, 33', - ShipCity: 'Sevilla', - ShipRegion: null, - ShipPostalCode: '41101', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10912, - CustomerID: 'HUNGO', - EmployeeID: 2, - OrderDate: '2020-02-26T00:00:00', - RequiredDate: '2020-03-26T00:00:00', - ShippedDate: '2020-03-18T00:00:00', - ShipVia: 2, - Freight: 580.9100, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10913, - CustomerID: 'QUEEN', - EmployeeID: 4, - OrderDate: '2020-02-26T00:00:00', - RequiredDate: '2020-03-26T00:00:00', - ShippedDate: '2020-03-04T00:00:00', - ShipVia: 1, - Freight: 33.0500, - ShipName: 'Queen Cozinha', - ShipAddress: 'Alameda dos Canàrios, 891', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05487-020', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10914, - CustomerID: 'QUEEN', - EmployeeID: 6, - OrderDate: '2020-02-27T00:00:00', - RequiredDate: '2020-03-27T00:00:00', - ShippedDate: '2020-03-02T00:00:00', - ShipVia: 1, - Freight: 21.1900, - ShipName: 'Queen Cozinha', - ShipAddress: 'Alameda dos Canàrios, 891', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05487-020', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10915, - CustomerID: 'TORTU', - EmployeeID: 2, - OrderDate: '2020-02-27T00:00:00', - RequiredDate: '2020-03-27T00:00:00', - ShippedDate: '2020-03-02T00:00:00', - ShipVia: 2, - Freight: 3.5100, - ShipName: 'Tortuga Restaurante', - ShipAddress: 'Avda. Azteca 123', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10916, - CustomerID: 'RANCH', - EmployeeID: 1, - OrderDate: '2020-02-27T00:00:00', - RequiredDate: '2020-03-27T00:00:00', - ShippedDate: '2020-03-09T00:00:00', - ShipVia: 2, - Freight: 63.7700, - ShipName: 'Rancho grande', - ShipAddress: 'Av. del Libertador 900', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10917, - CustomerID: 'ROMEY', - EmployeeID: 4, - OrderDate: '2020-03-02T00:00:00', - RequiredDate: '2020-03-30T00:00:00', - ShippedDate: '2020-03-11T00:00:00', - ShipVia: 2, - Freight: 8.2900, - ShipName: 'Romero y tomillo', - ShipAddress: 'Gran Vía, 1', - ShipCity: 'Madrid', - ShipRegion: null, - ShipPostalCode: '28001', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10918, - CustomerID: 'BOTTM', - EmployeeID: 3, - OrderDate: '2020-03-02T00:00:00', - RequiredDate: '2020-03-30T00:00:00', - ShippedDate: '2020-03-11T00:00:00', - ShipVia: 3, - Freight: 48.8300, - ShipName: 'Bottom-Dollar Markets', - ShipAddress: '23 Tsawassen Blvd.', - ShipCity: 'Tsawassen', - ShipRegion: 'BC', - ShipPostalCode: 'T2F 8M4', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10919, - CustomerID: 'LINOD', - EmployeeID: 2, - OrderDate: '2020-03-02T00:00:00', - RequiredDate: '2020-03-30T00:00:00', - ShippedDate: '2020-03-04T00:00:00', - ShipVia: 2, - Freight: 19.8000, - ShipName: 'LINO-Delicateses', - ShipAddress: 'Ave. 5 de Mayo Porlamar', - ShipCity: 'I. de Margarita', - ShipRegion: 'Nueva Esparta', - ShipPostalCode: '4980', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10920, - CustomerID: 'AROUT', - EmployeeID: 4, - OrderDate: '2020-03-03T00:00:00', - RequiredDate: '2020-03-31T00:00:00', - ShippedDate: '2020-03-09T00:00:00', - ShipVia: 2, - Freight: 29.6100, - ShipName: 'Around the Horn', - ShipAddress: 'Brook Farm Stratford St. Mary', - ShipCity: 'Colchester', - ShipRegion: 'Essex', - ShipPostalCode: 'CO7 6JX', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10921, - CustomerID: 'VAFFE', - EmployeeID: 1, - OrderDate: '2020-03-03T00:00:00', - RequiredDate: '2020-04-14T00:00:00', - ShippedDate: '2020-03-09T00:00:00', - ShipVia: 1, - Freight: 176.4800, - ShipName: 'Vaffeljernet', - ShipAddress: 'Smagsloget 45', - ShipCity: 'Århus', - ShipRegion: null, - ShipPostalCode: '8200', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10922, - CustomerID: 'HANAR', - EmployeeID: 5, - OrderDate: '2020-03-03T00:00:00', - RequiredDate: '2020-03-31T00:00:00', - ShippedDate: '2020-03-05T00:00:00', - ShipVia: 3, - Freight: 62.7400, - ShipName: 'Hanari Carnes', - ShipAddress: 'Rua do Paço, 67', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '05454-876', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10923, - CustomerID: 'LAMAI', - EmployeeID: 7, - OrderDate: '2020-03-03T00:00:00', - RequiredDate: '2020-04-14T00:00:00', - ShippedDate: '2020-03-13T00:00:00', - ShipVia: 3, - Freight: 68.2600, - ShipName: 'La maison d\'Asie', - ShipAddress: '1 rue Alsace-Lorraine', - ShipCity: 'Toulouse', - ShipRegion: null, - ShipPostalCode: '31000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10924, - CustomerID: 'BERGS', - EmployeeID: 3, - OrderDate: '2020-03-04T00:00:00', - RequiredDate: '2020-04-01T00:00:00', - ShippedDate: '2020-04-08T00:00:00', - ShipVia: 2, - Freight: 151.5200, - ShipName: 'Berglunds snabbköp', - ShipAddress: 'Berguvsvägen 8', - ShipCity: 'Luleå', - ShipRegion: null, - ShipPostalCode: 'S-958 22', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10925, - CustomerID: 'HANAR', - EmployeeID: 3, - OrderDate: '2020-03-04T00:00:00', - RequiredDate: '2020-04-01T00:00:00', - ShippedDate: '2020-03-13T00:00:00', - ShipVia: 1, - Freight: 2.2700, - ShipName: 'Hanari Carnes', - ShipAddress: 'Rua do Paço, 67', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '05454-876', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10926, - CustomerID: 'ANATR', - EmployeeID: 4, - OrderDate: '2020-03-04T00:00:00', - RequiredDate: '2020-04-01T00:00:00', - ShippedDate: '2020-03-11T00:00:00', - ShipVia: 3, - Freight: 39.9200, - ShipName: 'Ana Trujillo Emparedados y helados', - ShipAddress: 'Avda. de la Constitución 2222', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05021', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10927, - CustomerID: 'LACOR', - EmployeeID: 4, - OrderDate: '2020-03-05T00:00:00', - RequiredDate: '2020-04-02T00:00:00', - ShippedDate: '2020-04-08T00:00:00', - ShipVia: 1, - Freight: 19.7900, - ShipName: 'La corne d\'abondance', - ShipAddress: '67, avenue de l\'Europe', - ShipCity: 'Versailles', - ShipRegion: null, - ShipPostalCode: '78000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10928, - CustomerID: 'GALED', - EmployeeID: 1, - OrderDate: '2020-03-05T00:00:00', - RequiredDate: '2020-04-02T00:00:00', - ShippedDate: '2020-03-18T00:00:00', - ShipVia: 1, - Freight: 1.3600, - ShipName: 'Galería del gastronómo', - ShipAddress: 'Rambla de Cataluña, 23', - ShipCity: 'Barcelona', - ShipRegion: null, - ShipPostalCode: '8022', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10929, - CustomerID: 'FRANK', - EmployeeID: 6, - OrderDate: '2020-03-05T00:00:00', - RequiredDate: '2020-04-02T00:00:00', - ShippedDate: '2020-03-12T00:00:00', - ShipVia: 1, - Freight: 33.9300, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10930, - CustomerID: 'SUPRD', - EmployeeID: 4, - OrderDate: '2020-03-06T00:00:00', - RequiredDate: '2020-04-17T00:00:00', - ShippedDate: '2020-03-18T00:00:00', - ShipVia: 3, - Freight: 15.5500, - ShipName: 'Suprêmes délices', - ShipAddress: 'Boulevard Tirou, 255', - ShipCity: 'Charleroi', - ShipRegion: null, - ShipPostalCode: 'B-6000', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10931, - CustomerID: 'RICSU', - EmployeeID: 4, - OrderDate: '2020-03-06T00:00:00', - RequiredDate: '2020-03-20T00:00:00', - ShippedDate: '2020-03-19T00:00:00', - ShipVia: 2, - Freight: 13.6000, - ShipName: 'Richter Supermarkt', - ShipAddress: 'Starenweg 5', - ShipCity: 'Genève', - ShipRegion: null, - ShipPostalCode: '1204', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10932, - CustomerID: 'BONAP', - EmployeeID: 8, - OrderDate: '2020-03-06T00:00:00', - RequiredDate: '2020-04-03T00:00:00', - ShippedDate: '2020-03-24T00:00:00', - ShipVia: 1, - Freight: 134.6400, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10933, - CustomerID: 'ISLAT', - EmployeeID: 6, - OrderDate: '2020-03-06T00:00:00', - RequiredDate: '2020-04-03T00:00:00', - ShippedDate: '2020-03-16T00:00:00', - ShipVia: 3, - Freight: 54.1500, - ShipName: 'Island Trading', - ShipAddress: 'Garden House Crowther Way', - ShipCity: 'Cowes', - ShipRegion: 'Isle of Wight', - ShipPostalCode: 'PO31 7PJ', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10934, - CustomerID: 'LEHMS', - EmployeeID: 3, - OrderDate: '2020-03-09T00:00:00', - RequiredDate: '2020-04-06T00:00:00', - ShippedDate: '2020-03-12T00:00:00', - ShipVia: 3, - Freight: 32.0100, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10935, - CustomerID: 'WELLI', - EmployeeID: 4, - OrderDate: '2020-03-09T00:00:00', - RequiredDate: '2020-04-06T00:00:00', - ShippedDate: '2020-03-18T00:00:00', - ShipVia: 3, - Freight: 47.5900, - ShipName: 'Wellington Importadora', - ShipAddress: 'Rua do Mercado, 12', - ShipCity: 'Resende', - ShipRegion: 'SP', - ShipPostalCode: '08737-363', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10936, - CustomerID: 'GREAL', - EmployeeID: 3, - OrderDate: '2020-03-09T00:00:00', - RequiredDate: '2020-04-06T00:00:00', - ShippedDate: '2020-03-18T00:00:00', - ShipVia: 2, - Freight: 33.6800, - ShipName: 'Great Lakes Food Market', - ShipAddress: '2732 Baker Blvd.', - ShipCity: 'Eugene', - ShipRegion: 'OR', - ShipPostalCode: '97403', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10937, - CustomerID: 'CACTU', - EmployeeID: 7, - OrderDate: '2020-03-10T00:00:00', - RequiredDate: '2020-03-24T00:00:00', - ShippedDate: '2020-03-13T00:00:00', - ShipVia: 3, - Freight: 31.5100, - ShipName: 'Cactus Comidas para llevar', - ShipAddress: 'Cerrito 333', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10938, - CustomerID: 'QUICK', - EmployeeID: 3, - OrderDate: '2020-03-10T00:00:00', - RequiredDate: '2020-04-07T00:00:00', - ShippedDate: '2020-03-16T00:00:00', - ShipVia: 2, - Freight: 31.8900, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10939, - CustomerID: 'MAGAA', - EmployeeID: 2, - OrderDate: '2020-03-10T00:00:00', - RequiredDate: '2020-04-07T00:00:00', - ShippedDate: '2020-03-13T00:00:00', - ShipVia: 2, - Freight: 76.3300, - ShipName: 'Magazzini Alimentari Riuniti', - ShipAddress: 'Via Ludovico il Moro 22', - ShipCity: 'Bergamo', - ShipRegion: null, - ShipPostalCode: '24100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10940, - CustomerID: 'BONAP', - EmployeeID: 8, - OrderDate: '2020-03-11T00:00:00', - RequiredDate: '2020-04-08T00:00:00', - ShippedDate: '2020-03-23T00:00:00', - ShipVia: 3, - Freight: 19.7700, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10941, - CustomerID: 'SAVEA', - EmployeeID: 7, - OrderDate: '2020-03-11T00:00:00', - RequiredDate: '2020-04-08T00:00:00', - ShippedDate: '2020-03-20T00:00:00', - ShipVia: 2, - Freight: 400.8100, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10942, - CustomerID: 'REGGC', - EmployeeID: 9, - OrderDate: '2020-03-11T00:00:00', - RequiredDate: '2020-04-08T00:00:00', - ShippedDate: '2020-03-18T00:00:00', - ShipVia: 3, - Freight: 17.9500, - ShipName: 'Reggiani Caseifici', - ShipAddress: 'Strada Provinciale 124', - ShipCity: 'Reggio Emilia', - ShipRegion: null, - ShipPostalCode: '42100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10943, - CustomerID: 'BSBEV', - EmployeeID: 4, - OrderDate: '2020-03-11T00:00:00', - RequiredDate: '2020-04-08T00:00:00', - ShippedDate: '2020-03-19T00:00:00', - ShipVia: 2, - Freight: 2.1700, - ShipName: 'B\'s Beverages', - ShipAddress: 'Fauntleroy Circus', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'EC2 5NT', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10944, - CustomerID: 'BOTTM', - EmployeeID: 6, - OrderDate: '2020-03-12T00:00:00', - RequiredDate: '2020-03-26T00:00:00', - ShippedDate: '2020-03-13T00:00:00', - ShipVia: 3, - Freight: 52.9200, - ShipName: 'Bottom-Dollar Markets', - ShipAddress: '23 Tsawassen Blvd.', - ShipCity: 'Tsawassen', - ShipRegion: 'BC', - ShipPostalCode: 'T2F 8M4', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10945, - CustomerID: 'MORGK', - EmployeeID: 4, - OrderDate: '2020-03-12T00:00:00', - RequiredDate: '2020-04-09T00:00:00', - ShippedDate: '2020-03-18T00:00:00', - ShipVia: 1, - Freight: 10.2200, - ShipName: 'Morgenstern Gesundkost', - ShipAddress: 'Heerstr. 22', - ShipCity: 'Leipzig', - ShipRegion: null, - ShipPostalCode: '04179', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10946, - CustomerID: 'VAFFE', - EmployeeID: 1, - OrderDate: '2020-03-12T00:00:00', - RequiredDate: '2020-04-09T00:00:00', - ShippedDate: '2020-03-19T00:00:00', - ShipVia: 2, - Freight: 27.2000, - ShipName: 'Vaffeljernet', - ShipAddress: 'Smagsloget 45', - ShipCity: 'Århus', - ShipRegion: null, - ShipPostalCode: '8200', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10947, - CustomerID: 'BSBEV', - EmployeeID: 3, - OrderDate: '2020-03-13T00:00:00', - RequiredDate: '2020-04-10T00:00:00', - ShippedDate: '2020-03-16T00:00:00', - ShipVia: 2, - Freight: 3.2600, - ShipName: 'B\'s Beverages', - ShipAddress: 'Fauntleroy Circus', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'EC2 5NT', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10948, - CustomerID: 'GODOS', - EmployeeID: 3, - OrderDate: '2020-03-13T00:00:00', - RequiredDate: '2020-04-10T00:00:00', - ShippedDate: '2020-03-19T00:00:00', - ShipVia: 3, - Freight: 23.3900, - ShipName: 'Godos Cocina Típica', - ShipAddress: 'C/ Romero, 33', - ShipCity: 'Sevilla', - ShipRegion: null, - ShipPostalCode: '41101', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10949, - CustomerID: 'BOTTM', - EmployeeID: 2, - OrderDate: '2020-03-13T00:00:00', - RequiredDate: '2020-04-10T00:00:00', - ShippedDate: '2020-03-17T00:00:00', - ShipVia: 3, - Freight: 74.4400, - ShipName: 'Bottom-Dollar Markets', - ShipAddress: '23 Tsawassen Blvd.', - ShipCity: 'Tsawassen', - ShipRegion: 'BC', - ShipPostalCode: 'T2F 8M4', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10950, - CustomerID: 'MAGAA', - EmployeeID: 1, - OrderDate: '2020-03-16T00:00:00', - RequiredDate: '2020-04-13T00:00:00', - ShippedDate: '2020-03-23T00:00:00', - ShipVia: 2, - Freight: 2.5000, - ShipName: 'Magazzini Alimentari Riuniti', - ShipAddress: 'Via Ludovico il Moro 22', - ShipCity: 'Bergamo', - ShipRegion: null, - ShipPostalCode: '24100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10951, - CustomerID: 'RICSU', - EmployeeID: 9, - OrderDate: '2020-03-16T00:00:00', - RequiredDate: '2020-04-27T00:00:00', - ShippedDate: '2020-04-07T00:00:00', - ShipVia: 2, - Freight: 30.8500, - ShipName: 'Richter Supermarkt', - ShipAddress: 'Starenweg 5', - ShipCity: 'Genève', - ShipRegion: null, - ShipPostalCode: '1204', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10952, - CustomerID: 'ALFKI', - EmployeeID: 1, - OrderDate: '2020-03-16T00:00:00', - RequiredDate: '2020-04-27T00:00:00', - ShippedDate: '2020-03-24T00:00:00', - ShipVia: 1, - Freight: 40.4200, - ShipName: 'Alfred\'s Futterkiste', - ShipAddress: 'Obere Str. 57', - ShipCity: 'Berlin', - ShipRegion: null, - ShipPostalCode: '12209', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10953, - CustomerID: 'AROUT', - EmployeeID: 9, - OrderDate: '2020-03-16T00:00:00', - RequiredDate: '2020-03-30T00:00:00', - ShippedDate: '2020-03-25T00:00:00', - ShipVia: 2, - Freight: 23.7200, - ShipName: 'Around the Horn', - ShipAddress: 'Brook Farm Stratford St. Mary', - ShipCity: 'Colchester', - ShipRegion: 'Essex', - ShipPostalCode: 'CO7 6JX', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10954, - CustomerID: 'LINOD', - EmployeeID: 5, - OrderDate: '2020-03-17T00:00:00', - RequiredDate: '2020-04-28T00:00:00', - ShippedDate: '2020-03-20T00:00:00', - ShipVia: 1, - Freight: 27.9100, - ShipName: 'LINO-Delicateses', - ShipAddress: 'Ave. 5 de Mayo Porlamar', - ShipCity: 'I. de Margarita', - ShipRegion: 'Nueva Esparta', - ShipPostalCode: '4980', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10955, - CustomerID: 'FOLKO', - EmployeeID: 8, - OrderDate: '2020-03-17T00:00:00', - RequiredDate: '2020-04-14T00:00:00', - ShippedDate: '2020-03-20T00:00:00', - ShipVia: 2, - Freight: 3.2600, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10956, - CustomerID: 'BLAUS', - EmployeeID: 6, - OrderDate: '2020-03-17T00:00:00', - RequiredDate: '2020-04-28T00:00:00', - ShippedDate: '2020-03-20T00:00:00', - ShipVia: 2, - Freight: 44.6500, - ShipName: 'Blauer See Delikatessen', - ShipAddress: 'Forsterstr. 57', - ShipCity: 'Mannheim', - ShipRegion: null, - ShipPostalCode: '68306', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10957, - CustomerID: 'HILAA', - EmployeeID: 8, - OrderDate: '2020-03-18T00:00:00', - RequiredDate: '2020-04-15T00:00:00', - ShippedDate: '2020-03-27T00:00:00', - ShipVia: 3, - Freight: 105.3600, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10958, - CustomerID: 'OCEAN', - EmployeeID: 7, - OrderDate: '2020-03-18T00:00:00', - RequiredDate: '2020-04-15T00:00:00', - ShippedDate: '2020-03-27T00:00:00', - ShipVia: 2, - Freight: 49.5600, - ShipName: 'Océano Atlántico Ltda.', - ShipAddress: 'Ing. Gustavo Moncada 8585 Piso 20-A', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10959, - CustomerID: 'GOURL', - EmployeeID: 6, - OrderDate: '2020-03-18T00:00:00', - RequiredDate: '2020-04-29T00:00:00', - ShippedDate: '2020-03-23T00:00:00', - ShipVia: 2, - Freight: 4.9800, - ShipName: 'Gourmet Lanchonetes', - ShipAddress: 'Av. Brasil, 442', - ShipCity: 'Campinas', - ShipRegion: 'SP', - ShipPostalCode: '04876-786', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10960, - CustomerID: 'HILAA', - EmployeeID: 3, - OrderDate: '2020-03-19T00:00:00', - RequiredDate: '2020-04-02T00:00:00', - ShippedDate: '2020-04-08T00:00:00', - ShipVia: 1, - Freight: 2.0800, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10961, - CustomerID: 'QUEEN', - EmployeeID: 8, - OrderDate: '2020-03-19T00:00:00', - RequiredDate: '2020-04-16T00:00:00', - ShippedDate: '2020-03-30T00:00:00', - ShipVia: 1, - Freight: 104.4700, - ShipName: 'Queen Cozinha', - ShipAddress: 'Alameda dos Canàrios, 891', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05487-020', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10962, - CustomerID: 'QUICK', - EmployeeID: 8, - OrderDate: '2020-03-19T00:00:00', - RequiredDate: '2020-04-16T00:00:00', - ShippedDate: '2020-03-23T00:00:00', - ShipVia: 2, - Freight: 275.7900, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10963, - CustomerID: 'FURIB', - EmployeeID: 9, - OrderDate: '2020-03-19T00:00:00', - RequiredDate: '2020-04-16T00:00:00', - ShippedDate: '2020-03-26T00:00:00', - ShipVia: 3, - Freight: 2.7000, - ShipName: 'Furia Bacalhau e Frutos do Mar', - ShipAddress: 'Jardim das rosas n. 32', - ShipCity: 'Lisboa', - ShipRegion: null, - ShipPostalCode: '1675', - ShipCountry: 'Portugal', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10964, - CustomerID: 'SPECD', - EmployeeID: 3, - OrderDate: '2020-03-20T00:00:00', - RequiredDate: '2020-04-17T00:00:00', - ShippedDate: '2020-03-24T00:00:00', - ShipVia: 2, - Freight: 87.3800, - ShipName: 'Spécialités du monde', - ShipAddress: '25, rue Lauriston', - ShipCity: 'Paris', - ShipRegion: null, - ShipPostalCode: '75016', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10965, - CustomerID: 'OLDWO', - EmployeeID: 6, - OrderDate: '2020-03-20T00:00:00', - RequiredDate: '2020-04-17T00:00:00', - ShippedDate: '2020-03-30T00:00:00', - ShipVia: 3, - Freight: 144.3800, - ShipName: 'Old World Delicatessen', - ShipAddress: '2743 Bering St.', - ShipCity: 'Anchorage', - ShipRegion: 'AK', - ShipPostalCode: '99508', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10966, - CustomerID: 'CHOPS', - EmployeeID: 4, - OrderDate: '2020-03-20T00:00:00', - RequiredDate: '2020-04-17T00:00:00', - ShippedDate: '2020-04-08T00:00:00', - ShipVia: 1, - Freight: 27.1900, - ShipName: 'Chop-suey Chinese', - ShipAddress: 'Hauptstr. 31', - ShipCity: 'Bern', - ShipRegion: null, - ShipPostalCode: '3012', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10967, - CustomerID: 'TOMSP', - EmployeeID: 2, - OrderDate: '2020-03-23T00:00:00', - RequiredDate: '2020-04-20T00:00:00', - ShippedDate: '2020-04-02T00:00:00', - ShipVia: 2, - Freight: 62.2200, - ShipName: 'Toms Spezialitäten', - ShipAddress: 'Luisenstr. 48', - ShipCity: 'Münster', - ShipRegion: null, - ShipPostalCode: '44087', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10968, - CustomerID: 'ERNSH', - EmployeeID: 1, - OrderDate: '2020-03-23T00:00:00', - RequiredDate: '2020-04-20T00:00:00', - ShippedDate: '2020-04-01T00:00:00', - ShipVia: 3, - Freight: 74.6000, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10969, - CustomerID: 'COMMI', - EmployeeID: 1, - OrderDate: '2020-03-23T00:00:00', - RequiredDate: '2020-04-20T00:00:00', - ShippedDate: '2020-03-30T00:00:00', - ShipVia: 2, - Freight: 0.2100, - ShipName: 'Comércio Mineiro', - ShipAddress: 'Av. dos Lusíadas, 23', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05432-043', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10970, - CustomerID: 'BOLID', - EmployeeID: 9, - OrderDate: '2020-03-24T00:00:00', - RequiredDate: '2020-04-07T00:00:00', - ShippedDate: '2020-04-24T00:00:00', - ShipVia: 1, - Freight: 16.1600, - ShipName: 'Bólido Comidas preparadas', - ShipAddress: 'C/ Araquil, 67', - ShipCity: 'Madrid', - ShipRegion: null, - ShipPostalCode: '28023', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10971, - CustomerID: 'FRANR', - EmployeeID: 2, - OrderDate: '2020-03-24T00:00:00', - RequiredDate: '2020-04-21T00:00:00', - ShippedDate: '2020-04-02T00:00:00', - ShipVia: 2, - Freight: 121.8200, - ShipName: 'France restauration', - ShipAddress: '54, rue Royale', - ShipCity: 'Nantes', - ShipRegion: null, - ShipPostalCode: '44000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10972, - CustomerID: 'LACOR', - EmployeeID: 4, - OrderDate: '2020-03-24T00:00:00', - RequiredDate: '2020-04-21T00:00:00', - ShippedDate: '2020-03-26T00:00:00', - ShipVia: 2, - Freight: 0.0200, - ShipName: 'La corne d\'abondance', - ShipAddress: '67, avenue de l\'Europe', - ShipCity: 'Versailles', - ShipRegion: null, - ShipPostalCode: '78000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10973, - CustomerID: 'LACOR', - EmployeeID: 6, - OrderDate: '2020-03-24T00:00:00', - RequiredDate: '2020-04-21T00:00:00', - ShippedDate: '2020-03-27T00:00:00', - ShipVia: 2, - Freight: 15.1700, - ShipName: 'La corne d\'abondance', - ShipAddress: '67, avenue de l\'Europe', - ShipCity: 'Versailles', - ShipRegion: null, - ShipPostalCode: '78000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10974, - CustomerID: 'SPLIR', - EmployeeID: 3, - OrderDate: '2020-03-25T00:00:00', - RequiredDate: '2020-04-08T00:00:00', - ShippedDate: '2020-04-03T00:00:00', - ShipVia: 3, - Freight: 12.9600, - ShipName: 'Split Rail Beer & Ale', - ShipAddress: 'P.O. Box 555', - ShipCity: 'Lander', - ShipRegion: 'WY', - ShipPostalCode: '82520', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10975, - CustomerID: 'BOTTM', - EmployeeID: 1, - OrderDate: '2020-03-25T00:00:00', - RequiredDate: '2020-04-22T00:00:00', - ShippedDate: '2020-03-27T00:00:00', - ShipVia: 3, - Freight: 32.2700, - ShipName: 'Bottom-Dollar Markets', - ShipAddress: '23 Tsawassen Blvd.', - ShipCity: 'Tsawassen', - ShipRegion: 'BC', - ShipPostalCode: 'T2F 8M4', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10976, - CustomerID: 'HILAA', - EmployeeID: 1, - OrderDate: '2020-03-25T00:00:00', - RequiredDate: '2020-05-06T00:00:00', - ShippedDate: '2020-04-03T00:00:00', - ShipVia: 1, - Freight: 37.9700, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10977, - CustomerID: 'FOLKO', - EmployeeID: 8, - OrderDate: '2020-03-26T00:00:00', - RequiredDate: '2020-04-23T00:00:00', - ShippedDate: '2020-04-10T00:00:00', - ShipVia: 3, - Freight: 208.5000, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10978, - CustomerID: 'MAISD', - EmployeeID: 9, - OrderDate: '2020-03-26T00:00:00', - RequiredDate: '2020-04-23T00:00:00', - ShippedDate: '2020-04-23T00:00:00', - ShipVia: 2, - Freight: 32.8200, - ShipName: 'Maison Dewey', - ShipAddress: 'Rue Joseph-Bens 532', - ShipCity: 'Bruxelles', - ShipRegion: null, - ShipPostalCode: 'B-1180', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10979, - CustomerID: 'ERNSH', - EmployeeID: 8, - OrderDate: '2020-03-26T00:00:00', - RequiredDate: '2020-04-23T00:00:00', - ShippedDate: '2020-03-31T00:00:00', - ShipVia: 2, - Freight: 353.0700, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10980, - CustomerID: 'FOLKO', - EmployeeID: 4, - OrderDate: '2020-03-27T00:00:00', - RequiredDate: '2020-05-08T00:00:00', - ShippedDate: '2020-04-17T00:00:00', - ShipVia: 1, - Freight: 1.2600, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10981, - CustomerID: 'HANAR', - EmployeeID: 1, - OrderDate: '2020-03-27T00:00:00', - RequiredDate: '2020-04-24T00:00:00', - ShippedDate: '2020-04-02T00:00:00', - ShipVia: 2, - Freight: 193.3700, - ShipName: 'Hanari Carnes', - ShipAddress: 'Rua do Paço, 67', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '05454-876', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10982, - CustomerID: 'BOTTM', - EmployeeID: 2, - OrderDate: '2020-03-27T00:00:00', - RequiredDate: '2020-04-24T00:00:00', - ShippedDate: '2020-04-08T00:00:00', - ShipVia: 1, - Freight: 14.0100, - ShipName: 'Bottom-Dollar Markets', - ShipAddress: '23 Tsawassen Blvd.', - ShipCity: 'Tsawassen', - ShipRegion: 'BC', - ShipPostalCode: 'T2F 8M4', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10983, - CustomerID: 'SAVEA', - EmployeeID: 2, - OrderDate: '2020-03-27T00:00:00', - RequiredDate: '2020-04-24T00:00:00', - ShippedDate: '2020-04-06T00:00:00', - ShipVia: 2, - Freight: 657.5400, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10984, - CustomerID: 'SAVEA', - EmployeeID: 1, - OrderDate: '2020-03-30T00:00:00', - RequiredDate: '2020-04-27T00:00:00', - ShippedDate: '2020-04-03T00:00:00', - ShipVia: 3, - Freight: 211.2200, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10985, - CustomerID: 'HUNGO', - EmployeeID: 2, - OrderDate: '2020-03-30T00:00:00', - RequiredDate: '2020-04-27T00:00:00', - ShippedDate: '2020-04-02T00:00:00', - ShipVia: 1, - Freight: 91.5100, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10986, - CustomerID: 'OCEAN', - EmployeeID: 8, - OrderDate: '2020-03-30T00:00:00', - RequiredDate: '2020-04-27T00:00:00', - ShippedDate: '2020-04-21T00:00:00', - ShipVia: 2, - Freight: 217.8600, - ShipName: 'Océano Atlántico Ltda.', - ShipAddress: 'Ing. Gustavo Moncada 8585 Piso 20-A', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10987, - CustomerID: 'EASTC', - EmployeeID: 8, - OrderDate: '2020-03-31T00:00:00', - RequiredDate: '2020-04-28T00:00:00', - ShippedDate: '2020-04-06T00:00:00', - ShipVia: 1, - Freight: 185.4800, - ShipName: 'Eastern Connection', - ShipAddress: '35 King George', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'WX3 6FW', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10988, - CustomerID: 'RATTC', - EmployeeID: 3, - OrderDate: '2020-03-31T00:00:00', - RequiredDate: '2020-04-28T00:00:00', - ShippedDate: '2020-04-10T00:00:00', - ShipVia: 2, - Freight: 61.1400, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10989, - CustomerID: 'QUEDE', - EmployeeID: 2, - OrderDate: '2020-03-31T00:00:00', - RequiredDate: '2020-04-28T00:00:00', - ShippedDate: '2020-04-02T00:00:00', - ShipVia: 1, - Freight: 34.7600, - ShipName: 'Que Delícia', - ShipAddress: 'Rua da Panificadora, 12', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-673', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10990, - CustomerID: 'ERNSH', - EmployeeID: 2, - OrderDate: '2020-04-01T00:00:00', - RequiredDate: '2020-05-13T00:00:00', - ShippedDate: '2020-04-07T00:00:00', - ShipVia: 3, - Freight: 117.6100, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10991, - CustomerID: 'QUICK', - EmployeeID: 1, - OrderDate: '2020-04-01T00:00:00', - RequiredDate: '2020-04-29T00:00:00', - ShippedDate: '2020-04-07T00:00:00', - ShipVia: 1, - Freight: 38.5100, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10992, - CustomerID: 'THEBI', - EmployeeID: 1, - OrderDate: '2020-04-01T00:00:00', - RequiredDate: '2020-04-29T00:00:00', - ShippedDate: '2020-04-03T00:00:00', - ShipVia: 3, - Freight: 4.2700, - ShipName: 'The Big Cheese', - ShipAddress: '89 Jefferson Way Suite 2', - ShipCity: 'Portland', - ShipRegion: 'OR', - ShipPostalCode: '97201', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10993, - CustomerID: 'FOLKO', - EmployeeID: 7, - OrderDate: '2020-04-01T00:00:00', - RequiredDate: '2020-04-29T00:00:00', - ShippedDate: '2020-04-10T00:00:00', - ShipVia: 3, - Freight: 8.8100, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10994, - CustomerID: 'VAFFE', - EmployeeID: 2, - OrderDate: '2020-04-02T00:00:00', - RequiredDate: '2020-04-16T00:00:00', - ShippedDate: '2020-04-09T00:00:00', - ShipVia: 3, - Freight: 65.5300, - ShipName: 'Vaffeljernet', - ShipAddress: 'Smagsloget 45', - ShipCity: 'Århus', - ShipRegion: null, - ShipPostalCode: '8200', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10995, - CustomerID: 'PERIC', - EmployeeID: 1, - OrderDate: '2020-04-02T00:00:00', - RequiredDate: '2020-04-30T00:00:00', - ShippedDate: '2020-04-06T00:00:00', - ShipVia: 3, - Freight: 46.0000, - ShipName: 'Pericles Comidas clásicas', - ShipAddress: 'Calle Dr. Jorge Cash 321', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10996, - CustomerID: 'QUICK', - EmployeeID: 4, - OrderDate: '2020-04-02T00:00:00', - RequiredDate: '2020-04-30T00:00:00', - ShippedDate: '2020-04-10T00:00:00', - ShipVia: 2, - Freight: 1.1200, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10997, - CustomerID: 'LILAS', - EmployeeID: 8, - OrderDate: '2020-04-03T00:00:00', - RequiredDate: '2020-05-15T00:00:00', - ShippedDate: '2020-04-13T00:00:00', - ShipVia: 2, - Freight: 73.9100, - ShipName: 'LILA-Supermercado', - ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', - ShipCity: 'Barquisimeto', - ShipRegion: 'Lara', - ShipPostalCode: '3508', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10998, - CustomerID: 'WOLZA', - EmployeeID: 8, - OrderDate: '2020-04-03T00:00:00', - RequiredDate: '2020-04-17T00:00:00', - ShippedDate: '2020-04-17T00:00:00', - ShipVia: 2, - Freight: 20.3100, - ShipName: 'Wolski Zajazd', - ShipAddress: 'ul. Filtrowa 68', - ShipCity: 'Warszawa', - ShipRegion: null, - ShipPostalCode: '01-012', - ShipCountry: 'Poland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 10999, - CustomerID: 'OTTIK', - EmployeeID: 6, - OrderDate: '2020-04-03T00:00:00', - RequiredDate: '2020-05-01T00:00:00', - ShippedDate: '2020-04-10T00:00:00', - ShipVia: 2, - Freight: 96.3500, - ShipName: 'Ottilies Käseladen', - ShipAddress: 'Mehrheimerstr. 369', - ShipCity: 'Köln', - ShipRegion: null, - ShipPostalCode: '50739', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11000, - CustomerID: 'RATTC', - EmployeeID: 2, - OrderDate: '2020-04-06T00:00:00', - RequiredDate: '2020-05-04T00:00:00', - ShippedDate: '2020-04-14T00:00:00', - ShipVia: 3, - Freight: 55.1200, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11001, - CustomerID: 'FOLKO', - EmployeeID: 2, - OrderDate: '2020-04-06T00:00:00', - RequiredDate: '2020-05-04T00:00:00', - ShippedDate: '2020-04-14T00:00:00', - ShipVia: 2, - Freight: 197.3000, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11002, - CustomerID: 'SAVEA', - EmployeeID: 4, - OrderDate: '2020-04-06T00:00:00', - RequiredDate: '2020-05-04T00:00:00', - ShippedDate: '2020-04-16T00:00:00', - ShipVia: 1, - Freight: 141.1600, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11003, - CustomerID: 'THECR', - EmployeeID: 3, - OrderDate: '2020-04-06T00:00:00', - RequiredDate: '2020-05-04T00:00:00', - ShippedDate: '2020-04-08T00:00:00', - ShipVia: 3, - Freight: 14.9100, - ShipName: 'The Cracker Box', - ShipAddress: '55 Grizzly Peak Rd.', - ShipCity: 'Butte', - ShipRegion: 'MT', - ShipPostalCode: '59801', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11004, - CustomerID: 'MAISD', - EmployeeID: 3, - OrderDate: '2020-04-07T00:00:00', - RequiredDate: '2020-05-05T00:00:00', - ShippedDate: '2020-04-20T00:00:00', - ShipVia: 1, - Freight: 44.8400, - ShipName: 'Maison Dewey', - ShipAddress: 'Rue Joseph-Bens 532', - ShipCity: 'Bruxelles', - ShipRegion: null, - ShipPostalCode: 'B-1180', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11005, - CustomerID: 'WILMK', - EmployeeID: 2, - OrderDate: '2020-04-07T00:00:00', - RequiredDate: '2020-05-05T00:00:00', - ShippedDate: '2020-04-10T00:00:00', - ShipVia: 1, - Freight: 0.7500, - ShipName: 'Wilman Kala', - ShipAddress: 'Keskuskatu 45', - ShipCity: 'Helsinki', - ShipRegion: null, - ShipPostalCode: '21240', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11006, - CustomerID: 'GREAL', - EmployeeID: 3, - OrderDate: '2020-04-07T00:00:00', - RequiredDate: '2020-05-05T00:00:00', - ShippedDate: '2020-04-15T00:00:00', - ShipVia: 2, - Freight: 25.1900, - ShipName: 'Great Lakes Food Market', - ShipAddress: '2732 Baker Blvd.', - ShipCity: 'Eugene', - ShipRegion: 'OR', - ShipPostalCode: '97403', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11007, - CustomerID: 'PRINI', - EmployeeID: 8, - OrderDate: '2020-04-08T00:00:00', - RequiredDate: '2020-05-06T00:00:00', - ShippedDate: '2020-04-13T00:00:00', - ShipVia: 2, - Freight: 202.2400, - ShipName: 'Princesa Isabel Vinhos', - ShipAddress: 'Estrada da saúde n. 58', - ShipCity: 'Lisboa', - ShipRegion: null, - ShipPostalCode: '1756', - ShipCountry: 'Portugal', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11008, - CustomerID: 'ERNSH', - EmployeeID: 7, - OrderDate: '2020-04-08T00:00:00', - RequiredDate: '2020-05-06T00:00:00', - ShippedDate: null, - ShipVia: 3, - Freight: 79.4600, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11009, - CustomerID: 'GODOS', - EmployeeID: 2, - OrderDate: '2020-04-08T00:00:00', - RequiredDate: '2020-05-06T00:00:00', - ShippedDate: '2020-04-10T00:00:00', - ShipVia: 1, - Freight: 59.1100, - ShipName: 'Godos Cocina Típica', - ShipAddress: 'C/ Romero, 33', - ShipCity: 'Sevilla', - ShipRegion: null, - ShipPostalCode: '41101', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11010, - CustomerID: 'REGGC', - EmployeeID: 2, - OrderDate: '2020-04-09T00:00:00', - RequiredDate: '2020-05-07T00:00:00', - ShippedDate: '2020-04-21T00:00:00', - ShipVia: 2, - Freight: 28.7100, - ShipName: 'Reggiani Caseifici', - ShipAddress: 'Strada Provinciale 124', - ShipCity: 'Reggio Emilia', - ShipRegion: null, - ShipPostalCode: '42100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11011, - CustomerID: 'ALFKI', - EmployeeID: 3, - OrderDate: '2020-04-09T00:00:00', - RequiredDate: '2020-05-07T00:00:00', - ShippedDate: '2020-04-13T00:00:00', - ShipVia: 1, - Freight: 1.2100, - ShipName: 'Alfred\'s Futterkiste', - ShipAddress: 'Obere Str. 57', - ShipCity: 'Berlin', - ShipRegion: null, - ShipPostalCode: '12209', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11012, - CustomerID: 'FRANK', - EmployeeID: 1, - OrderDate: '2020-04-09T00:00:00', - RequiredDate: '2020-04-23T00:00:00', - ShippedDate: '2020-04-17T00:00:00', - ShipVia: 3, - Freight: 242.9500, - ShipName: 'Frankenversand', - ShipAddress: 'Berliner Platz 43', - ShipCity: 'München', - ShipRegion: null, - ShipPostalCode: '80805', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11013, - CustomerID: 'ROMEY', - EmployeeID: 2, - OrderDate: '2020-04-09T00:00:00', - RequiredDate: '2020-05-07T00:00:00', - ShippedDate: '2020-04-10T00:00:00', - ShipVia: 1, - Freight: 32.9900, - ShipName: 'Romero y tomillo', - ShipAddress: 'Gran Vía, 1', - ShipCity: 'Madrid', - ShipRegion: null, - ShipPostalCode: '28001', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11014, - CustomerID: 'LINOD', - EmployeeID: 2, - OrderDate: '2020-04-10T00:00:00', - RequiredDate: '2020-05-08T00:00:00', - ShippedDate: '2020-04-15T00:00:00', - ShipVia: 3, - Freight: 23.6000, - ShipName: 'LINO-Delicateses', - ShipAddress: 'Ave. 5 de Mayo Porlamar', - ShipCity: 'I. de Margarita', - ShipRegion: 'Nueva Esparta', - ShipPostalCode: '4980', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11015, - CustomerID: 'SANTG', - EmployeeID: 2, - OrderDate: '2020-04-10T00:00:00', - RequiredDate: '2020-04-24T00:00:00', - ShippedDate: '2020-04-20T00:00:00', - ShipVia: 2, - Freight: 4.6200, - ShipName: 'Santé Gourmet', - ShipAddress: 'Erling Skakkes gate 78', - ShipCity: 'Stavern', - ShipRegion: null, - ShipPostalCode: '4110', - ShipCountry: 'Norway', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11016, - CustomerID: 'AROUT', - EmployeeID: 9, - OrderDate: '2020-04-10T00:00:00', - RequiredDate: '2020-05-08T00:00:00', - ShippedDate: '2020-04-13T00:00:00', - ShipVia: 2, - Freight: 33.8000, - ShipName: 'Around the Horn', - ShipAddress: 'Brook Farm Stratford St. Mary', - ShipCity: 'Colchester', - ShipRegion: 'Essex', - ShipPostalCode: 'CO7 6JX', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11017, - CustomerID: 'ERNSH', - EmployeeID: 9, - OrderDate: '2020-04-13T00:00:00', - RequiredDate: '2020-05-11T00:00:00', - ShippedDate: '2020-04-20T00:00:00', - ShipVia: 2, - Freight: 754.2600, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11018, - CustomerID: 'LONEP', - EmployeeID: 4, - OrderDate: '2020-04-13T00:00:00', - RequiredDate: '2020-05-11T00:00:00', - ShippedDate: '2020-04-16T00:00:00', - ShipVia: 2, - Freight: 11.6500, - ShipName: 'Lonesome Pine Restaurant', - ShipAddress: '89 Chiaroscuro Rd.', - ShipCity: 'Portland', - ShipRegion: 'OR', - ShipPostalCode: '97219', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11019, - CustomerID: 'RANCH', - EmployeeID: 6, - OrderDate: '2020-04-13T00:00:00', - RequiredDate: '2020-05-11T00:00:00', - ShippedDate: null, - ShipVia: 3, - Freight: 3.1700, - ShipName: 'Rancho grande', - ShipAddress: 'Av. del Libertador 900', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11020, - CustomerID: 'OTTIK', - EmployeeID: 2, - OrderDate: '2020-04-14T00:00:00', - RequiredDate: '2020-05-12T00:00:00', - ShippedDate: '2020-04-16T00:00:00', - ShipVia: 2, - Freight: 43.3000, - ShipName: 'Ottilies Käseladen', - ShipAddress: 'Mehrheimerstr. 369', - ShipCity: 'Köln', - ShipRegion: null, - ShipPostalCode: '50739', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11021, - CustomerID: 'QUICK', - EmployeeID: 3, - OrderDate: '2020-04-14T00:00:00', - RequiredDate: '2020-05-12T00:00:00', - ShippedDate: '2020-04-21T00:00:00', - ShipVia: 1, - Freight: 297.1800, - ShipName: 'QUICK-Stop', - ShipAddress: 'Taucherstraße 10', - ShipCity: 'Cunewalde', - ShipRegion: null, - ShipPostalCode: '01307', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11022, - CustomerID: 'HANAR', - EmployeeID: 9, - OrderDate: '2020-04-14T00:00:00', - RequiredDate: '2020-05-12T00:00:00', - ShippedDate: '2020-05-04T00:00:00', - ShipVia: 2, - Freight: 6.2700, - ShipName: 'Hanari Carnes', - ShipAddress: 'Rua do Paço, 67', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '05454-876', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11023, - CustomerID: 'BSBEV', - EmployeeID: 1, - OrderDate: '2020-04-14T00:00:00', - RequiredDate: '2020-04-28T00:00:00', - ShippedDate: '2020-04-24T00:00:00', - ShipVia: 2, - Freight: 123.8300, - ShipName: 'B\'s Beverages', - ShipAddress: 'Fauntleroy Circus', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'EC2 5NT', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11024, - CustomerID: 'EASTC', - EmployeeID: 4, - OrderDate: '2020-04-15T00:00:00', - RequiredDate: '2020-05-13T00:00:00', - ShippedDate: '2020-04-20T00:00:00', - ShipVia: 1, - Freight: 74.3600, - ShipName: 'Eastern Connection', - ShipAddress: '35 King George', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'WX3 6FW', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11025, - CustomerID: 'WARTH', - EmployeeID: 6, - OrderDate: '2020-04-15T00:00:00', - RequiredDate: '2020-05-13T00:00:00', - ShippedDate: '2020-04-24T00:00:00', - ShipVia: 3, - Freight: 29.1700, - ShipName: 'Wartian Herkku', - ShipAddress: 'Torikatu 38', - ShipCity: 'Oulu', - ShipRegion: null, - ShipPostalCode: '90110', - ShipCountry: 'Finland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11026, - CustomerID: 'FRANS', - EmployeeID: 4, - OrderDate: '2020-04-15T00:00:00', - RequiredDate: '2020-05-13T00:00:00', - ShippedDate: '2020-04-28T00:00:00', - ShipVia: 1, - Freight: 47.0900, - ShipName: 'Franchi S.p.A.', - ShipAddress: 'Via Monte Bianco 34', - ShipCity: 'Torino', - ShipRegion: null, - ShipPostalCode: '10100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11027, - CustomerID: 'BOTTM', - EmployeeID: 1, - OrderDate: '2020-04-16T00:00:00', - RequiredDate: '2020-05-14T00:00:00', - ShippedDate: '2020-04-20T00:00:00', - ShipVia: 1, - Freight: 52.5200, - ShipName: 'Bottom-Dollar Markets', - ShipAddress: '23 Tsawassen Blvd.', - ShipCity: 'Tsawassen', - ShipRegion: 'BC', - ShipPostalCode: 'T2F 8M4', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11028, - CustomerID: 'KOENE', - EmployeeID: 2, - OrderDate: '2020-04-16T00:00:00', - RequiredDate: '2020-05-14T00:00:00', - ShippedDate: '2020-04-22T00:00:00', - ShipVia: 1, - Freight: 29.5900, - ShipName: 'Königlich Essen', - ShipAddress: 'Maubelstr. 90', - ShipCity: 'Brandenburg', - ShipRegion: null, - ShipPostalCode: '14776', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11029, - CustomerID: 'CHOPS', - EmployeeID: 4, - OrderDate: '2020-04-16T00:00:00', - RequiredDate: '2020-05-14T00:00:00', - ShippedDate: '2020-04-27T00:00:00', - ShipVia: 1, - Freight: 47.8400, - ShipName: 'Chop-suey Chinese', - ShipAddress: 'Hauptstr. 31', - ShipCity: 'Bern', - ShipRegion: null, - ShipPostalCode: '3012', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11030, - CustomerID: 'SAVEA', - EmployeeID: 7, - OrderDate: '2020-04-17T00:00:00', - RequiredDate: '2020-05-15T00:00:00', - ShippedDate: '2020-04-27T00:00:00', - ShipVia: 2, - Freight: 830.7500, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11031, - CustomerID: 'SAVEA', - EmployeeID: 6, - OrderDate: '2020-04-17T00:00:00', - RequiredDate: '2020-05-15T00:00:00', - ShippedDate: '2020-04-24T00:00:00', - ShipVia: 2, - Freight: 227.2200, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11032, - CustomerID: 'WHITC', - EmployeeID: 2, - OrderDate: '2020-04-17T00:00:00', - RequiredDate: '2020-05-15T00:00:00', - ShippedDate: '2020-04-23T00:00:00', - ShipVia: 3, - Freight: 606.1900, - ShipName: 'White Clover Markets', - ShipAddress: '1029 - 12th Ave. S.', - ShipCity: 'Seattle', - ShipRegion: 'WA', - ShipPostalCode: '98124', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11033, - CustomerID: 'RICSU', - EmployeeID: 7, - OrderDate: '2020-04-17T00:00:00', - RequiredDate: '2020-05-15T00:00:00', - ShippedDate: '2020-04-23T00:00:00', - ShipVia: 3, - Freight: 84.7400, - ShipName: 'Richter Supermarkt', - ShipAddress: 'Starenweg 5', - ShipCity: 'Genève', - ShipRegion: null, - ShipPostalCode: '1204', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11034, - CustomerID: 'OLDWO', - EmployeeID: 8, - OrderDate: '2020-04-20T00:00:00', - RequiredDate: '2020-06-01T00:00:00', - ShippedDate: '2020-04-27T00:00:00', - ShipVia: 1, - Freight: 40.3200, - ShipName: 'Old World Delicatessen', - ShipAddress: '2743 Bering St.', - ShipCity: 'Anchorage', - ShipRegion: 'AK', - ShipPostalCode: '99508', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11035, - CustomerID: 'SUPRD', - EmployeeID: 2, - OrderDate: '2020-04-20T00:00:00', - RequiredDate: '2020-05-18T00:00:00', - ShippedDate: '2020-04-24T00:00:00', - ShipVia: 2, - Freight: 0.1700, - ShipName: 'Suprêmes délices', - ShipAddress: 'Boulevard Tirou, 255', - ShipCity: 'Charleroi', - ShipRegion: null, - ShipPostalCode: 'B-6000', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11036, - CustomerID: 'DRACD', - EmployeeID: 8, - OrderDate: '2020-04-20T00:00:00', - RequiredDate: '2020-05-18T00:00:00', - ShippedDate: '2020-04-22T00:00:00', - ShipVia: 3, - Freight: 149.4700, - ShipName: 'Drachenblut Delikatessen', - ShipAddress: 'Walserweg 21', - ShipCity: 'Aachen', - ShipRegion: null, - ShipPostalCode: '52066', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11037, - CustomerID: 'GODOS', - EmployeeID: 7, - OrderDate: '2020-04-21T00:00:00', - RequiredDate: '2020-05-19T00:00:00', - ShippedDate: '2020-04-27T00:00:00', - ShipVia: 1, - Freight: 3.2000, - ShipName: 'Godos Cocina Típica', - ShipAddress: 'C/ Romero, 33', - ShipCity: 'Sevilla', - ShipRegion: null, - ShipPostalCode: '41101', - ShipCountry: 'Spain', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11038, - CustomerID: 'SUPRD', - EmployeeID: 1, - OrderDate: '2020-04-21T00:00:00', - RequiredDate: '2020-05-19T00:00:00', - ShippedDate: '2020-04-30T00:00:00', - ShipVia: 2, - Freight: 29.5900, - ShipName: 'Suprêmes délices', - ShipAddress: 'Boulevard Tirou, 255', - ShipCity: 'Charleroi', - ShipRegion: null, - ShipPostalCode: 'B-6000', - ShipCountry: 'Belgium', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11039, - CustomerID: 'LINOD', - EmployeeID: 1, - OrderDate: '2020-04-21T00:00:00', - RequiredDate: '2020-05-19T00:00:00', - ShippedDate: null, - ShipVia: 2, - Freight: 65.0000, - ShipName: 'LINO-Delicateses', - ShipAddress: 'Ave. 5 de Mayo Porlamar', - ShipCity: 'I. de Margarita', - ShipRegion: 'Nueva Esparta', - ShipPostalCode: '4980', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11040, - CustomerID: 'GREAL', - EmployeeID: 4, - OrderDate: '2020-04-22T00:00:00', - RequiredDate: '2020-05-20T00:00:00', - ShippedDate: null, - ShipVia: 3, - Freight: 18.8400, - ShipName: 'Great Lakes Food Market', - ShipAddress: '2732 Baker Blvd.', - ShipCity: 'Eugene', - ShipRegion: 'OR', - ShipPostalCode: '97403', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11041, - CustomerID: 'CHOPS', - EmployeeID: 3, - OrderDate: '2020-04-22T00:00:00', - RequiredDate: '2020-05-20T00:00:00', - ShippedDate: '2020-04-28T00:00:00', - ShipVia: 2, - Freight: 48.2200, - ShipName: 'Chop-suey Chinese', - ShipAddress: 'Hauptstr. 31', - ShipCity: 'Bern', - ShipRegion: null, - ShipPostalCode: '3012', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11042, - CustomerID: 'COMMI', - EmployeeID: 2, - OrderDate: '2020-04-22T00:00:00', - RequiredDate: '2020-05-06T00:00:00', - ShippedDate: '2020-05-01T00:00:00', - ShipVia: 1, - Freight: 29.9900, - ShipName: 'Comércio Mineiro', - ShipAddress: 'Av. dos Lusíadas, 23', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05432-043', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11043, - CustomerID: 'SPECD', - EmployeeID: 5, - OrderDate: '2020-04-22T00:00:00', - RequiredDate: '2020-05-20T00:00:00', - ShippedDate: '2020-04-29T00:00:00', - ShipVia: 2, - Freight: 8.8000, - ShipName: 'Spécialités du monde', - ShipAddress: '25, rue Lauriston', - ShipCity: 'Paris', - ShipRegion: null, - ShipPostalCode: '75016', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11044, - CustomerID: 'WOLZA', - EmployeeID: 4, - OrderDate: '2020-04-23T00:00:00', - RequiredDate: '2020-05-21T00:00:00', - ShippedDate: '2020-05-01T00:00:00', - ShipVia: 1, - Freight: 8.7200, - ShipName: 'Wolski Zajazd', - ShipAddress: 'ul. Filtrowa 68', - ShipCity: 'Warszawa', - ShipRegion: null, - ShipPostalCode: '01-012', - ShipCountry: 'Poland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11045, - CustomerID: 'BOTTM', - EmployeeID: 6, - OrderDate: '2020-04-23T00:00:00', - RequiredDate: '2020-05-21T00:00:00', - ShippedDate: null, - ShipVia: 2, - Freight: 70.5800, - ShipName: 'Bottom-Dollar Markets', - ShipAddress: '23 Tsawassen Blvd.', - ShipCity: 'Tsawassen', - ShipRegion: 'BC', - ShipPostalCode: 'T2F 8M4', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11046, - CustomerID: 'WANDK', - EmployeeID: 8, - OrderDate: '2020-04-23T00:00:00', - RequiredDate: '2020-05-21T00:00:00', - ShippedDate: '2020-04-24T00:00:00', - ShipVia: 2, - Freight: 71.6400, - ShipName: 'Die Wandernde Kuh', - ShipAddress: 'Adenauerallee 900', - ShipCity: 'Stuttgart', - ShipRegion: null, - ShipPostalCode: '70563', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11047, - CustomerID: 'EASTC', - EmployeeID: 7, - OrderDate: '2020-04-24T00:00:00', - RequiredDate: '2020-05-22T00:00:00', - ShippedDate: '2020-05-01T00:00:00', - ShipVia: 3, - Freight: 46.6200, - ShipName: 'Eastern Connection', - ShipAddress: '35 King George', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'WX3 6FW', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11048, - CustomerID: 'BOTTM', - EmployeeID: 7, - OrderDate: '2020-04-24T00:00:00', - RequiredDate: '2020-05-22T00:00:00', - ShippedDate: '2020-04-30T00:00:00', - ShipVia: 3, - Freight: 24.1200, - ShipName: 'Bottom-Dollar Markets', - ShipAddress: '23 Tsawassen Blvd.', - ShipCity: 'Tsawassen', - ShipRegion: 'BC', - ShipPostalCode: 'T2F 8M4', - ShipCountry: 'Canada', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11049, - CustomerID: 'GOURL', - EmployeeID: 3, - OrderDate: '2020-04-24T00:00:00', - RequiredDate: '2020-05-22T00:00:00', - ShippedDate: '2020-05-04T00:00:00', - ShipVia: 1, - Freight: 8.3400, - ShipName: 'Gourmet Lanchonetes', - ShipAddress: 'Av. Brasil, 442', - ShipCity: 'Campinas', - ShipRegion: 'SP', - ShipPostalCode: '04876-786', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11050, - CustomerID: 'FOLKO', - EmployeeID: 8, - OrderDate: '2020-04-27T00:00:00', - RequiredDate: '2020-05-25T00:00:00', - ShippedDate: '2020-05-05T00:00:00', - ShipVia: 2, - Freight: 59.4100, - ShipName: 'Folk och fä HB', - ShipAddress: 'Åkergatan 24', - ShipCity: 'Bräcke', - ShipRegion: null, - ShipPostalCode: 'S-844 67', - ShipCountry: 'Sweden', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11051, - CustomerID: 'LAMAI', - EmployeeID: 7, - OrderDate: '2020-04-27T00:00:00', - RequiredDate: '2020-05-25T00:00:00', - ShippedDate: null, - ShipVia: 3, - Freight: 2.7900, - ShipName: 'La maison d\'Asie', - ShipAddress: '1 rue Alsace-Lorraine', - ShipCity: 'Toulouse', - ShipRegion: null, - ShipPostalCode: '31000', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11052, - CustomerID: 'HANAR', - EmployeeID: 3, - OrderDate: '2020-04-27T00:00:00', - RequiredDate: '2020-05-25T00:00:00', - ShippedDate: '2020-05-01T00:00:00', - ShipVia: 1, - Freight: 67.2600, - ShipName: 'Hanari Carnes', - ShipAddress: 'Rua do Paço, 67', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '05454-876', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11053, - CustomerID: 'PICCO', - EmployeeID: 2, - OrderDate: '2020-04-27T00:00:00', - RequiredDate: '2020-05-25T00:00:00', - ShippedDate: '2020-04-29T00:00:00', - ShipVia: 2, - Freight: 53.0500, - ShipName: 'Piccolo und mehr', - ShipAddress: 'Geislweg 14', - ShipCity: 'Salzburg', - ShipRegion: null, - ShipPostalCode: '5020', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11054, - CustomerID: 'CACTU', - EmployeeID: 8, - OrderDate: '2020-04-28T00:00:00', - RequiredDate: '2020-05-26T00:00:00', - ShippedDate: null, - ShipVia: 1, - Freight: 0.3300, - ShipName: 'Cactus Comidas para llevar', - ShipAddress: 'Cerrito 333', - ShipCity: 'Buenos Aires', - ShipRegion: null, - ShipPostalCode: '1010', - ShipCountry: 'Argentina', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11055, - CustomerID: 'HILAA', - EmployeeID: 7, - OrderDate: '2020-04-28T00:00:00', - RequiredDate: '2020-05-26T00:00:00', - ShippedDate: '2020-05-05T00:00:00', - ShipVia: 2, - Freight: 120.9200, - ShipName: 'HILARION-Abastos', - ShipAddress: 'Carrera 22 con Ave. Carlos Soublette #8-35', - ShipCity: 'San Cristóbal', - ShipRegion: 'Táchira', - ShipPostalCode: '5022', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11056, - CustomerID: 'EASTC', - EmployeeID: 8, - OrderDate: '2020-04-28T00:00:00', - RequiredDate: '2020-05-12T00:00:00', - ShippedDate: '2020-05-01T00:00:00', - ShipVia: 2, - Freight: 278.9600, - ShipName: 'Eastern Connection', - ShipAddress: '35 King George', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'WX3 6FW', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11057, - CustomerID: 'NORTS', - EmployeeID: 3, - OrderDate: '2020-04-29T00:00:00', - RequiredDate: '2020-05-27T00:00:00', - ShippedDate: '2020-05-01T00:00:00', - ShipVia: 3, - Freight: 4.1300, - ShipName: 'North/South', - ShipAddress: 'South House 300 Queensbridge', - ShipCity: 'London', - ShipRegion: null, - ShipPostalCode: 'SW7 1RZ', - ShipCountry: 'UK', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11058, - CustomerID: 'BLAUS', - EmployeeID: 9, - OrderDate: '2020-04-29T00:00:00', - RequiredDate: '2020-05-27T00:00:00', - ShippedDate: null, - ShipVia: 3, - Freight: 31.1400, - ShipName: 'Blauer See Delikatessen', - ShipAddress: 'Forsterstr. 57', - ShipCity: 'Mannheim', - ShipRegion: null, - ShipPostalCode: '68306', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11059, - CustomerID: 'RICAR', - EmployeeID: 2, - OrderDate: '2020-04-29T00:00:00', - RequiredDate: '2020-06-10T00:00:00', - ShippedDate: null, - ShipVia: 2, - Freight: 85.8000, - ShipName: 'Ricardo Adocicados', - ShipAddress: 'Av. Copacabana, 267', - ShipCity: 'Rio de Janeiro', - ShipRegion: 'RJ', - ShipPostalCode: '02389-890', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11060, - CustomerID: 'FRANS', - EmployeeID: 2, - OrderDate: '2020-04-30T00:00:00', - RequiredDate: '2020-05-28T00:00:00', - ShippedDate: '2020-05-04T00:00:00', - ShipVia: 2, - Freight: 10.9800, - ShipName: 'Franchi S.p.A.', - ShipAddress: 'Via Monte Bianco 34', - ShipCity: 'Torino', - ShipRegion: null, - ShipPostalCode: '10100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11061, - CustomerID: 'GREAL', - EmployeeID: 4, - OrderDate: '2020-04-30T00:00:00', - RequiredDate: '2020-06-11T00:00:00', - ShippedDate: null, - ShipVia: 3, - Freight: 14.0100, - ShipName: 'Great Lakes Food Market', - ShipAddress: '2732 Baker Blvd.', - ShipCity: 'Eugene', - ShipRegion: 'OR', - ShipPostalCode: '97403', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11062, - CustomerID: 'REGGC', - EmployeeID: 4, - OrderDate: '2020-04-30T00:00:00', - RequiredDate: '2020-05-28T00:00:00', - ShippedDate: null, - ShipVia: 2, - Freight: 29.9300, - ShipName: 'Reggiani Caseifici', - ShipAddress: 'Strada Provinciale 124', - ShipCity: 'Reggio Emilia', - ShipRegion: null, - ShipPostalCode: '42100', - ShipCountry: 'Italy', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11063, - CustomerID: 'HUNGO', - EmployeeID: 3, - OrderDate: '2020-04-30T00:00:00', - RequiredDate: '2020-05-28T00:00:00', - ShippedDate: '2020-05-06T00:00:00', - ShipVia: 2, - Freight: 81.7300, - ShipName: 'Hungry Owl All-Night Grocers', - ShipAddress: '8 Johnstown Road', - ShipCity: 'Cork', - ShipRegion: 'Co. Cork', - ShipPostalCode: null, - ShipCountry: 'Ireland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11064, - CustomerID: 'SAVEA', - EmployeeID: 1, - OrderDate: '2020-05-01T00:00:00', - RequiredDate: '2020-05-29T00:00:00', - ShippedDate: '2020-05-04T00:00:00', - ShipVia: 1, - Freight: 30.0900, - ShipName: 'Save-a-lot Markets', - ShipAddress: '187 Suffolk Ln.', - ShipCity: 'Boise', - ShipRegion: 'ID', - ShipPostalCode: '83720', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11065, - CustomerID: 'LILAS', - EmployeeID: 8, - OrderDate: '2020-05-01T00:00:00', - RequiredDate: '2020-05-29T00:00:00', - ShippedDate: null, - ShipVia: 1, - Freight: 12.9100, - ShipName: 'LILA-Supermercado', - ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', - ShipCity: 'Barquisimeto', - ShipRegion: 'Lara', - ShipPostalCode: '3508', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11066, - CustomerID: 'WHITC', - EmployeeID: 7, - OrderDate: '2020-05-01T00:00:00', - RequiredDate: '2020-05-29T00:00:00', - ShippedDate: '2020-05-04T00:00:00', - ShipVia: 2, - Freight: 44.7200, - ShipName: 'White Clover Markets', - ShipAddress: '1029 - 12th Ave. S.', - ShipCity: 'Seattle', - ShipRegion: 'WA', - ShipPostalCode: '98124', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11067, - CustomerID: 'DRACD', - EmployeeID: 1, - OrderDate: '2020-05-04T00:00:00', - RequiredDate: '2020-05-18T00:00:00', - ShippedDate: '2020-05-06T00:00:00', - ShipVia: 2, - Freight: 7.9800, - ShipName: 'Drachenblut Delikatessen', - ShipAddress: 'Walserweg 21', - ShipCity: 'Aachen', - ShipRegion: null, - ShipPostalCode: '52066', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11068, - CustomerID: 'QUEEN', - EmployeeID: 8, - OrderDate: '2020-05-04T00:00:00', - RequiredDate: '2020-06-01T00:00:00', - ShippedDate: null, - ShipVia: 2, - Freight: 81.7500, - ShipName: 'Queen Cozinha', - ShipAddress: 'Alameda dos Canàrios, 891', - ShipCity: 'Sao Paulo', - ShipRegion: 'SP', - ShipPostalCode: '05487-020', - ShipCountry: 'Brazil', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11069, - CustomerID: 'TORTU', - EmployeeID: 1, - OrderDate: '2020-05-04T00:00:00', - RequiredDate: '2020-06-01T00:00:00', - ShippedDate: '2020-05-06T00:00:00', - ShipVia: 2, - Freight: 15.6700, - ShipName: 'Tortuga Restaurante', - ShipAddress: 'Avda. Azteca 123', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11070, - CustomerID: 'LEHMS', - EmployeeID: 2, - OrderDate: '2020-05-05T00:00:00', - RequiredDate: '2020-06-02T00:00:00', - ShippedDate: null, - ShipVia: 1, - Freight: 136.0000, - ShipName: 'Lehmanns Marktstand', - ShipAddress: 'Magazinweg 7', - ShipCity: 'Frankfurt a.M.', - ShipRegion: null, - ShipPostalCode: '60528', - ShipCountry: 'Germany', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11071, - CustomerID: 'LILAS', - EmployeeID: 1, - OrderDate: '2020-05-05T00:00:00', - RequiredDate: '2020-06-02T00:00:00', - ShippedDate: null, - ShipVia: 1, - Freight: 0.9300, - ShipName: 'LILA-Supermercado', - ShipAddress: 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', - ShipCity: 'Barquisimeto', - ShipRegion: 'Lara', - ShipPostalCode: '3508', - ShipCountry: 'Venezuela', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11072, - CustomerID: 'ERNSH', - EmployeeID: 4, - OrderDate: '2020-05-05T00:00:00', - RequiredDate: '2020-06-02T00:00:00', - ShippedDate: null, - ShipVia: 2, - Freight: 258.6400, - ShipName: 'Ernst Handel', - ShipAddress: 'Kirchgasse 6', - ShipCity: 'Graz', - ShipRegion: null, - ShipPostalCode: '8010', - ShipCountry: 'Austria', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11073, - CustomerID: 'PERIC', - EmployeeID: 2, - OrderDate: '2020-05-05T00:00:00', - RequiredDate: '2020-06-02T00:00:00', - ShippedDate: null, - ShipVia: 2, - Freight: 24.9500, - ShipName: 'Pericles Comidas clásicas', - ShipAddress: 'Calle Dr. Jorge Cash 321', - ShipCity: 'México D.F.', - ShipRegion: null, - ShipPostalCode: '05033', - ShipCountry: 'Mexico', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11074, - CustomerID: 'SIMOB', - EmployeeID: 7, - OrderDate: '2020-05-06T00:00:00', - RequiredDate: '2020-06-03T00:00:00', - ShippedDate: null, - ShipVia: 2, - Freight: 18.4400, - ShipName: 'Simons bistro', - ShipAddress: 'Vinbæltet 34', - ShipCity: 'Kobenhavn', - ShipRegion: null, - ShipPostalCode: '1734', - ShipCountry: 'Denmark', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11075, - CustomerID: 'RICSU', - EmployeeID: 8, - OrderDate: '2020-05-06T00:00:00', - RequiredDate: '2020-06-03T00:00:00', - ShippedDate: null, - ShipVia: 2, - Freight: 6.1900, - ShipName: 'Richter Supermarkt', - ShipAddress: 'Starenweg 5', - ShipCity: 'Genève', - ShipRegion: null, - ShipPostalCode: '1204', - ShipCountry: 'Switzerland', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11076, - CustomerID: 'BONAP', - EmployeeID: 4, - OrderDate: '2020-05-06T00:00:00', - RequiredDate: '2020-06-03T00:00:00', - ShippedDate: null, - ShipVia: 2, - Freight: 38.2800, - ShipName: 'Bon app\'', - ShipAddress: '12, rue des Bouchers', - ShipCity: 'Marseille', - ShipRegion: null, - ShipPostalCode: '13008', - ShipCountry: 'France', - Customer: null, - Employee: null, - Shipper: null, - }, - { - OrderID: 11077, - CustomerID: 'RATTC', - EmployeeID: 1, - OrderDate: '2020-05-06T00:00:00', - RequiredDate: '2020-06-03T00:00:00', - ShippedDate: null, - ShipVia: 2, - Freight: 8.5300, - ShipName: 'Rattlesnake Canyon Grocery', - ShipAddress: '2817 Milton Dr.', - ShipCity: 'Albuquerque', - ShipRegion: 'NM', - ShipPostalCode: '87110', - ShipCountry: 'USA', - Customer: null, - Employee: null, - Shipper: null, - }, -]; diff --git a/Angular/src/orig_index.html b/Angular/src/orig_index.html deleted file mode 100644 index 05ff713..0000000 --- a/Angular/src/orig_index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Angular - - - - - - - - diff --git a/Angular/src/orig_main.ts b/Angular/src/orig_main.ts deleted file mode 100644 index a0f9d2c..0000000 --- a/Angular/src/orig_main.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; - -import { AppModule } from './app/app.module'; - -platformBrowserDynamic().bootstrapModule(AppModule) - // eslint-disable-next-line no-console - .catch((err) => console.error(err)); diff --git a/React/orig_index.html b/React/orig_index.html deleted file mode 100644 index e4b78ea..0000000 --- a/React/orig_index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - Vite + React + TS - - -
- - - diff --git a/React/src/GroupRowSelection/orig_GroupRowComponent.css b/React/src/GroupRowSelection/orig_GroupRowComponent.css deleted file mode 100644 index 5e389db..0000000 --- a/React/src/GroupRowSelection/orig_GroupRowComponent.css +++ /dev/null @@ -1,13 +0,0 @@ -.group-selection-front { - margin-right: 10px; -} - -.group-selection-front .dx-loadindicator { - display: block; -} - -.group-row-flex { - display: flex; - flex-direction: row; - align-items: center; -} \ No newline at end of file diff --git a/React/src/GroupRowSelection/orig_GroupRowComponent.tsx b/React/src/GroupRowSelection/orig_GroupRowComponent.tsx deleted file mode 100644 index a9b1857..0000000 --- a/React/src/GroupRowSelection/orig_GroupRowComponent.tsx +++ /dev/null @@ -1,82 +0,0 @@ -import { LoadIndicator } from 'devextreme-react'; -import './GroupRowComponent.css'; -import { type DataGridTypes } from 'devextreme-react/data-grid'; -import { useCallback, useEffect, useState } from 'react'; -import CheckBox from 'devextreme-react/check-box'; -import type { ValueChangedEvent } from 'devextreme/ui/check_box'; - -interface GroupRowProps { - groupCellData: DataGridTypes.ColumnGroupCellTemplateData; - childRowKeys?: any[]; - // eslint-disable-next-line no-unused-vars - onInitialized: (param: IGroupRowReadyParameter) => void; -} - -const iconSize = 18; - -// eslint-disable-next-line func-style -const GroupRowComponent: React.FC = ({ - groupCellData, - onInitialized, -}) => { - const [isLoading, setIsLoading] = useState(true); - const [checked, setChecked] = useState(false); - const [childKeys, setChildKeys] = useState([]); - - // eslint-disable-next-line func-style - const groupText = (): string => { - let text = `${groupCellData.column.caption}: ${groupCellData.displayValue}`; - if (groupCellData.groupContinuedMessage) text += ` (${groupCellData.groupContinuedMessage})`; - if (groupCellData.groupContinuesMessage) text += ` (${groupCellData.groupContinuesMessage})`; - return text; - }; - - const onValueChange = useCallback((value: ValueChangedEvent) => { - if (value) { - // eslint-disable-next-line no-console - groupCellData.component.selectRows(childKeys ?? [], true).catch(console.error); - } else { - // eslint-disable-next-line no-console - groupCellData.component.deselectRows(childKeys ?? []).catch(console.error); - } - }, [childKeys, groupCellData]); - - const setCheckedState = useCallback((value: boolean | undefined) => { - setChecked(value); - setIsLoading(false); - }, [setChecked, setIsLoading]); - - useEffect(() => { - // eslint-disable-next-line @typescript-eslint/no-invalid-this - const arr = onInitialized({ key: groupCellData.row.key, setCheckedState: setCheckedState.bind(this) }); - // eslint-disable-next-line @typescript-eslint/no-floating-promises - (arr as unknown as Promise).then((children: any) => { - setChildKeys(children); - }); - }, [groupCellData, setCheckedState, setChildKeys]); - - return ( -
-
- - -
- {groupText()} -
- ); -}; - -export default GroupRowComponent; - -export interface IGroupRowReadyParameter { - key: string[]; - setCheckedState: Function; -} diff --git a/React/src/GroupRowSelection/orig_GroupRowSelectionHelper.tsx b/React/src/GroupRowSelection/orig_GroupRowSelectionHelper.tsx deleted file mode 100644 index cd4caca..0000000 --- a/React/src/GroupRowSelection/orig_GroupRowSelectionHelper.tsx +++ /dev/null @@ -1,136 +0,0 @@ -import dxDataGrid from 'devextreme/ui/data_grid'; -import { type DataGridTypes } from 'devextreme-react/data-grid'; -import { type LoadOptions } from 'devextreme/common/data'; -import { isItemsArray } from 'devextreme/common/data/custom-store'; -import { type IGroupRowReadyParameter } from './GroupRowComponent'; - -export default class GroupSelectionHelper { - groupedColumns: DataGridTypes.Column[]; - - grid: dxDataGrid; - - getSelectedKeysPromise: Promise | null; - - selectedKeys: any[] = []; - - groupChildKeys: Record = {}; - - constructor(grid: dxDataGrid) { - this.grid = grid; - this.groupedColumns = this.collectGroupedColumns(grid); - this.getSelectedKeysPromise = this.getSelectedKeys(grid); - this.getSelectedKeysPromise.then((keys: any[]) => { - this.selectedKeys = keys; - }).catch(() => {}); - const defaultSelectionHandler: Function | undefined = grid.option('onSelectionChanged'); - grid.option('onSelectionChanged', (e: DataGridTypes.SelectionChangedEvent) => { - this.selectionChanged(e); - if (defaultSelectionHandler) { defaultSelectionHandler(e); } - }); - const defaultOptionChangedHandler: Function | undefined = grid.option('onOptionChanged'); - grid.option('onOptionChanged', (e: DataGridTypes.OptionChangedEvent) => { - if (e.fullName.includes('groupIndex')) { - this.groupedColumns = this.collectGroupedColumns(grid); - } - if (defaultOptionChangedHandler) { defaultOptionChangedHandler(e); } - }); - } - - groupRowInit(arg: IGroupRowReadyParameter): Promise { - const checkBoxId = this.calcCheckBoxId(this.grid, arg.key); - const promise = new Promise((resolve) => { - if (!this.groupChildKeys[checkBoxId]) { - const filter: any[] = []; - arg.key.forEach((key, i) => { - filter.push([this.groupedColumns[i].dataField, '=', key]); - }); - const loadOptions: LoadOptions = { - filter, - }; - const store = this.grid.getDataSource().store(); - - store.load(loadOptions).then((data) => { - if (isItemsArray(data)) { - // eslint-disable-next-line @typescript-eslint/no-unsafe-return - this.groupChildKeys[checkBoxId] = data.map((d) => this.grid.keyOf(d)); - this.getSelectedKeys(this.grid).then((selectedKeys) => { - const checkedState: boolean | undefined = this.areKeysSelected(this.groupChildKeys[checkBoxId], selectedKeys); - arg.setCheckedState(checkedState); - }).catch(() => {}); - resolve(this.groupChildKeys[checkBoxId]); - } - }).catch(() => {}); - } else { - this.getSelectedKeys(this.grid).then((selectedKeys) => { - const checkedState: boolean | undefined = this.areKeysSelected(this.groupChildKeys[checkBoxId], selectedKeys); - arg.setCheckedState(checkedState); - resolve(this.groupChildKeys[checkBoxId]); - }).catch(() => {}); - } - }); - - return promise; - } - - selectionChanged(e: DataGridTypes.SelectionChangedEvent): void { - const groupRows: DataGridTypes.Row[] = e.component.getVisibleRows().filter((r) => r.rowType === 'group'); - this.getSelectedKeysPromise = null; - if (e.component.option('selection.deferred')) { - const selectionFilter = e.component.option('selectionFilter'); - if (selectionFilter && selectionFilter.length >= 0) { - this.repaintGroupRowTree(e.component, groupRows); - } else { - e.component.repaintRows(groupRows.map((g) => g.rowIndex)); - } - } else if (e.selectedRowKeys.length >= e.component.totalCount() || e.currentDeselectedRowKeys.length >= e.component.totalCount()) { - e.component.repaintRows(groupRows.map((g) => g.rowIndex)); - } else { - this.repaintGroupRowTree(e.component, groupRows); - } - } - - getSelectedKeys(grid: dxDataGrid): Promise { - if (grid.option('selection.deferred')) { - if (!this.getSelectedKeysPromise) { - this.getSelectedKeysPromise = grid.getSelectedRowKeys(); - } - return this.getSelectedKeysPromise; - } - return Promise.resolve(grid.getSelectedRowKeys()); - } - - repaintGroupRowTree(grid: dxDataGrid, groupRows: DataGridTypes.Row[]): void { - const topGroupRow: DataGridTypes.Row | null = groupRows.filter((r) => r.isExpanded).reduce((acc: DataGridTypes.Row | null, curr) => (!acc || acc.key.length > curr.key.length ? curr : acc), null); - if (topGroupRow) { - const affectedGroupRows = groupRows.filter((g) => g.key[0] == topGroupRow.key[0]); - grid.repaintRows(affectedGroupRows.map((g) => g.rowIndex)); - } - } - - areKeysSelected(keysToCheck: any[], selectedKeys: any[]): boolean | undefined { - if (selectedKeys.length == 0) { return false; } - const intersectionCount = keysToCheck.filter((k) => selectedKeys.includes(k)).length; - if (intersectionCount === 0) { return false; } - if (intersectionCount === keysToCheck.length) { return true; } - return undefined; - } - - getChildRowKeys(grid: dxDataGrid, groupRowKey: string[]): any[] { - // eslint-disable-next-line @typescript-eslint/no-unsafe-return - return this.groupChildKeys[this.calcCheckBoxId(grid, groupRowKey)]; - } - - calcCheckBoxId(grid: dxDataGrid, groupRowKey: string[]): string { - const gridId: string = grid.element().id; - return `${gridId}groupCheckBox${groupRowKey.join('')}`; - } - - collectGroupedColumns(grid: dxDataGrid): DataGridTypes.Column[] { - const allColumns: DataGridTypes.Column[] = grid.getVisibleColumns(); - return allColumns.filter((c: DataGridTypes.Column) => c.groupIndex != undefined && c.groupIndex >= 0) - .sort((a, b) => { - if (!a.groupIndex || !b.groupIndex) return 0; - return a.groupIndex > b.groupIndex ? 1 : -1; - }); - } -} diff --git a/React/src/orig_App.css b/React/src/orig_App.css deleted file mode 100644 index 252bfaf..0000000 --- a/React/src/orig_App.css +++ /dev/null @@ -1,4 +0,0 @@ -.main { - margin: 50px; - width: 90vh; -} \ No newline at end of file diff --git a/React/src/orig_App.tsx b/React/src/orig_App.tsx deleted file mode 100644 index f8175de..0000000 --- a/React/src/orig_App.tsx +++ /dev/null @@ -1,112 +0,0 @@ -import { useEffect, useRef, useState } from 'react'; -import './App.css'; -import 'devextreme/dist/css/dx.material.blue.light.compact.css'; -import * as AspNetData from 'devextreme-aspnet-data-nojquery'; -import DataGrid, { - Column, type DataGridTypes, GroupPanel, Grouping, type DataGridRef, Lookup, Paging, Selection, -} from 'devextreme-react/data-grid'; -import GroupSelectionHelper from './GroupRowSelection/GroupRowSelectionHelper'; -import GroupRowComponent, { type IGroupRowReadyParameter } from './GroupRowSelection/GroupRowComponent'; - -const url = 'https://js.devexpress.com/Demos/Mvc/api/DataGridWebApi'; -const dataSource = AspNetData.createStore({ - key: 'OrderID', - loadUrl: `${url}/Orders`, - onBeforeSend(_method, ajaxOptions) { - ajaxOptions.xhrFields = { withCredentials: true }; - }, -}); -const customersData = AspNetData.createStore({ - key: 'Value', - loadUrl: `${url}/CustomersLookup`, - onBeforeSend(_method, ajaxOptions) { - ajaxOptions.xhrFields = { withCredentials: true }; - }, -}); -const shippersData = AspNetData.createStore({ - key: 'Value', - loadUrl: `${url}/ShippersLookup`, - onBeforeSend(_method, ajaxOptions) { - ajaxOptions.xhrFields = { withCredentials: true }; - }, -}); - -function App(): JSX.Element { - const dataGrid = useRef(null); - const [helper, setHelper] = useState(); - - useEffect(() => { - if (dataGrid?.current) { - setHelper(new GroupSelectionHelper(dataGrid.current.instance())); - } - }, [dataGrid, setHelper]); - - // eslint-disable-next-line func-style - const groupRowInit = (arg: IGroupRowReadyParameter): void => { helper?.groupRowInit(arg); }; - - // eslint-disable-next-line func-style - const groupCellRender = (group: DataGridTypes.ColumnGroupCellTemplateData): JSX.Element => ( - - ); - - return ( -
- - - - - - - - - - - - - - - - -
- ); -} - -export default App; diff --git a/React/src/orig_index.css b/React/src/orig_index.css deleted file mode 100644 index b835b06..0000000 --- a/React/src/orig_index.css +++ /dev/null @@ -1,13 +0,0 @@ -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, - Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', - sans-serif; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -code { - font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', - monospace; -} \ No newline at end of file diff --git a/React/src/orig_main.tsx b/React/src/orig_main.tsx deleted file mode 100644 index 3084387..0000000 --- a/React/src/orig_main.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import { StrictMode } from 'react'; -import { createRoot } from 'react-dom/client'; -import './index.css'; -import App from './App.tsx'; - -createRoot(document.getElementById('root') as HTMLElement).render( - - - , -); diff --git a/Vue/orig_index.html b/Vue/orig_index.html deleted file mode 100644 index 1f7c6cf..0000000 --- a/Vue/orig_index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - Vite App - - -
- - - diff --git a/Vue/src/assets/orig_main.css b/Vue/src/assets/orig_main.css deleted file mode 100644 index e3267f4..0000000 --- a/Vue/src/assets/orig_main.css +++ /dev/null @@ -1,8 +0,0 @@ -.main { - font-family: Avenir, Helvetica, Arial, sans-serif; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - color: #2c3e50; - margin: 50px 50px; - width: 90vh; -} \ No newline at end of file diff --git a/Vue/src/components/GroupRowSelection/orig_GroupRowComponent.vue b/Vue/src/components/GroupRowSelection/orig_GroupRowComponent.vue deleted file mode 100644 index 58faf1e..0000000 --- a/Vue/src/components/GroupRowSelection/orig_GroupRowComponent.vue +++ /dev/null @@ -1,78 +0,0 @@ - - - - - diff --git a/Vue/src/components/GroupRowSelection/orig_GroupRowSelectionHelper.ts b/Vue/src/components/GroupRowSelection/orig_GroupRowSelectionHelper.ts deleted file mode 100644 index 00fd4c6..0000000 --- a/Vue/src/components/GroupRowSelection/orig_GroupRowSelectionHelper.ts +++ /dev/null @@ -1,149 +0,0 @@ -import type dxDataGrid from 'devextreme/ui/data_grid'; -import type { DxDataGridTypes } from 'devextreme-vue/data-grid'; -import type { LoadOptions } from 'devextreme/data'; -import { isItemsArray } from 'devextreme/common/data/custom-store'; -import type { IGroupRowReadyParameter } from '@/types'; - -export default class GroupSelectionHelper { - groupedColumns: DxDataGridTypes.Column[]; - grid: dxDataGrid; - getSelectedKeysPromise: Promise | null; - selectedKeys: any[] = []; - groupChildKeys: Record = {}; - - constructor(grid: dxDataGrid) { - this.grid = grid; - this.groupedColumns = this.collectGroupedColumns(grid); - this.getSelectedKeysPromise = this.getSelectedKeys(grid); - this.getSelectedKeysPromise.then((keys: any[]) => { - this.selectedKeys = keys; - }).catch(() => {}); - const defaultCustomizeCallback: Function | undefined = grid.option('customizeColumns'); - grid.option('customizeColumns', (columns: DxDataGridTypes.Column[]) => { - columns.forEach((column: DxDataGridTypes.Column) => { - column.groupCellTemplate = 'groupCellTemplate'; - }); - if (defaultCustomizeCallback) { defaultCustomizeCallback(columns); } - }); - const defaultSelectionHandler: Function | undefined = grid.option('onSelectionChanged'); - grid.option('onSelectionChanged', (e: DxDataGridTypes.SelectionChangedEvent) => { - this.selectionChanged(e); - if (defaultSelectionHandler) { defaultSelectionHandler(e); } - }); - const defaultOptionChangedHandler: Function | undefined = grid.option('onOptionChanged'); - grid.option('onOptionChanged', (e: DxDataGridTypes.OptionChangedEvent) => { - if (e.fullName.includes('groupIndex')) { - this.groupedColumns = this.collectGroupedColumns(grid); - } - if (defaultOptionChangedHandler) { defaultOptionChangedHandler(e); } - }); - } - - groupRowInit(arg: IGroupRowReadyParameter): Promise { - const checkBoxId = this.calcCheckBoxId(this.grid, arg.key); - - const promise = new Promise((resolve) => { - if (!this.groupChildKeys[checkBoxId]) { - const filter: any[] = []; - arg.key.forEach((key, i) => { - filter.push([this.groupedColumns[i].dataField, '=', key]); - }); - const loadOptions: LoadOptions = { - filter, - }; - const store = this.grid.getDataSource().store(); - store.load(loadOptions).then((data) => { - if (isItemsArray(data)) { - this.groupChildKeys[checkBoxId] = data.map((d) => this.grid.keyOf(d)); - this.getSelectedKeys(this.grid).then((selectedKeys) => { - const checkedState: boolean | undefined = this.areKeysSelected( - this.groupChildKeys[checkBoxId], selectedKeys - ); - arg.setCheckedState(checkedState); - }).catch(() => {}); - resolve(this.groupChildKeys[checkBoxId]); - } - }).catch(() => {}); - } else { - this.getSelectedKeys(this.grid).then((selectedKeys) => { - const checkedState: boolean | undefined = this.areKeysSelected( - this.groupChildKeys[checkBoxId], selectedKeys - ); - arg.setCheckedState(checkedState); - }).catch(() => {}); - resolve(this.groupChildKeys[checkBoxId]); - } - }); - return promise; - } - - selectionChanged(e: DxDataGridTypes.SelectionChangedEvent): void { - const groupRows: DxDataGridTypes.Row[] = e.component.getVisibleRows().filter((r) => r.rowType === 'group'); - this.getSelectedKeysPromise = null; - if (e.component.option('selection.deferred')) { - const selectionFilter = e.component.option('selectionFilter'); - if (selectionFilter && selectionFilter.length >= 0) { - this.repaintGroupRowTree(e.component, groupRows); - } else { - e.component.repaintRows(groupRows.map((g) => g.rowIndex)); - } - } else if (e.selectedRowKeys.length >= e.component.totalCount() - || e.currentDeselectedRowKeys.length >= e.component.totalCount()) { - e.component.repaintRows(groupRows.map((g) => g.rowIndex)); - } else { - this.repaintGroupRowTree(e.component, groupRows); - } - } - - getSelectedKeys(grid: dxDataGrid): Promise { - if (grid.option('selection.deferred')) { - if (!this.getSelectedKeysPromise) { - this.getSelectedKeysPromise = grid.getSelectedRowKeys(); - } - return this.getSelectedKeysPromise; - } - return new Promise((resolve) => resolve(grid.getSelectedRowKeys())); - } - - repaintGroupRowTree(grid: dxDataGrid, groupRows: DxDataGridTypes.Row[]): void { - const topGroupRow: DxDataGridTypes.Row | null = groupRows.filter( - (r) => r.isExpanded - ).reduce((acc: DxDataGridTypes.Row | null, curr) => - (!acc || acc.key.length > curr.key.length ? curr : acc), null); - if (topGroupRow) { - const affectedGroupRows = groupRows.filter((g) => g.key[0] == topGroupRow.key[0]); - grid.repaintRows(affectedGroupRows.map((g) => g.rowIndex)); - } - } - - areKeysSelected(keysToCheck: any[], selectedKeys: any[]): boolean | undefined { - if (selectedKeys.length == 0) { return false; } - const intersectionCount = keysToCheck.filter((k) => selectedKeys.includes(k)).length; - if (intersectionCount === 0) { return false; } - if (intersectionCount === keysToCheck.length) { return true; } - return undefined; - } - - getChildRowKeys(grid: dxDataGrid, groupRowKey: string[]): any[] { - return this.groupChildKeys[this.calcCheckBoxId(grid, groupRowKey)]; - } - - calcCheckBoxId(grid: dxDataGrid, groupRowKey: string[]): string { - const gridId: string = grid.element().id; - if(!groupRowKey) { - return `${gridId}groupCheckBox`; - }else{ - return groupRowKey && `${gridId}groupCheckBox${groupRowKey.join('')}`; - } - } - - collectGroupedColumns(grid: dxDataGrid): DxDataGridTypes.Column[] { - const allColumns: DxDataGridTypes.Column[] = grid.getVisibleColumns(); - return allColumns.filter( - (c: DxDataGridTypes.Column) => c.groupIndex != undefined && c.groupIndex >= 0) - .sort((a, b) => { - if (!a.groupIndex || !b.groupIndex) return 0; - return a.groupIndex > b.groupIndex ? 1 : -1; - }); - } -} diff --git a/Vue/src/components/__tests__/orig_Content.spec.ts b/Vue/src/components/__tests__/orig_Content.spec.ts deleted file mode 100644 index f4b8576..0000000 --- a/Vue/src/components/__tests__/orig_Content.spec.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest'; - -import { mount } from '@vue/test-utils'; -import Content from '../HomeContent.vue'; - -describe('Content', () => { - it('renders properly', () => { - const wrapper = mount(Content, { props: { text: 'count' } }); - expect(wrapper.text()).toContain('count'); - }); -}); diff --git a/Vue/src/components/orig_HomeContent.vue b/Vue/src/components/orig_HomeContent.vue deleted file mode 100644 index fcdb07c..0000000 --- a/Vue/src/components/orig_HomeContent.vue +++ /dev/null @@ -1,109 +0,0 @@ - - diff --git a/Vue/src/orig_App.vue b/Vue/src/orig_App.vue deleted file mode 100644 index 3b51b3a..0000000 --- a/Vue/src/orig_App.vue +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/Vue/src/orig_main.ts b/Vue/src/orig_main.ts deleted file mode 100644 index 97a0c3c..0000000 --- a/Vue/src/orig_main.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { createApp } from 'vue'; -import App from './App.vue'; -import router from './router'; - -import './assets/main.css'; - -const app = createApp(App); - -app.use(router); - -app.mount('#app'); diff --git a/Vue/src/orig_types.ts b/Vue/src/orig_types.ts deleted file mode 100644 index 9415237..0000000 --- a/Vue/src/orig_types.ts +++ /dev/null @@ -1,4 +0,0 @@ -export interface IGroupRowReadyParameter { - key: string[]; - setCheckedState: Function; -} diff --git a/jQuery/css/orig_styles.css b/jQuery/css/orig_styles.css deleted file mode 100644 index f568107..0000000 --- a/jQuery/css/orig_styles.css +++ /dev/null @@ -1,9 +0,0 @@ -.group-selection-check-box { - margin-right: 10px; -} - -.group-row-flex { - display: flex; - flex-direction: row; - align-items: center; -} \ No newline at end of file diff --git a/jQuery/orig_GroupSelectionBehavior.js b/jQuery/orig_GroupSelectionBehavior.js deleted file mode 100644 index e558cd4..0000000 --- a/jQuery/orig_GroupSelectionBehavior.js +++ /dev/null @@ -1,147 +0,0 @@ -class GroupSelectionBehavior { - skipCheckBoxValueHandling = false; - - rowKeysCache = {}; - - cacheGroupRequests = true; - - getSelectedKeysPromise; - - constructor(dataGrid) { - this.customizeColumns = this.customizeColumns.bind(this); - this.gridSelectionChanged = this.gridSelectionChanged.bind(this); - this.groupTemplate = this.groupTemplate.bind(this); - this.getGroupRowText = this.getGroupRowText.bind(this); - this.initCheckBox = this.initCheckBox.bind(this); - this.getSelectedKeys = this.getSelectedKeys.bind(this); - dataGrid.option('customizeColumns', this.customizeColumns); - dataGrid.on('selectionChanged', this.gridSelectionChanged); - } - - customizeColumns(columns) { - columns.forEach((col) => { - col.groupCellTemplate = this.groupTemplate; - }); - } - - groupTemplate(cellElement, cellData) { - const flex = $('
').addClass('group-row-flex').appendTo(cellElement); - const checkBoxId = this.calcCheckBoxId(cellData.component.element().attr('id'), cellData.row.key); - const that = this; - const checkBox = $('
').attr('id', checkBoxId).addClass('group-selection-check-box').appendTo(flex) - .dxCheckBox({ - visible: false, - onValueChanged(valueArgs) { - if (that.skipCheckBoxValueHandling) return; - const childRowKeys = valueArgs.component.option('childRowKeys'); - if (valueArgs.value) cellData.component.selectRows(childRowKeys, true); - else cellData.component.deselectRows(childRowKeys); - }, - }) - .dxCheckBox('instance'); - const loadIndicator = $('
').appendTo(flex).addClass('group-selection-check-box').dxLoadIndicator({ - height: 22, - width: 22, - }) - .dxLoadIndicator('instance'); - - this.getSelectedKeys(cellData.component).then((selectedKeys) => { - if (this.cacheGroupRequests && this.rowKeysCache[checkBoxId]) { - this.initCheckBox(checkBox, loadIndicator, checkBoxId, selectedKeys); - } else { - const groupedColumns = cellData.component.getVisibleColumns() - .filter((c) => c.groupIndex >= 0) - .sort((a, b) => (a.groupIndex > b.groupIndex ? 1 : -1)); - const filter = []; - cellData.key.forEach((key, i) => { - filter.push([groupedColumns[i].dataField, '=', key]); - }); - const loadOptions = { - filter, - }; - const store = cellData.component.getDataSource().store(); - store.load(loadOptions).then((data) => { - const keys = data.map((d) => cellData.component.keyOf(d)); - this.rowKeysCache[checkBoxId] = keys; - this.initCheckBox(checkBox, loadIndicator, checkBoxId, selectedKeys); - }); - } - }); - flex.append($('').text(this.getGroupRowText(cellData))); - } - - getGroupRowText(cellData) { - let text = `${cellData.column.caption}: ${cellData.displayValue}`; - if (cellData.groupContinuedMessage) text += ` (${cellData.groupContinuedMessage})`; - if (cellData.groupContinuesMessage) text += ` (${cellData.groupContinuesMessage})`; - return text; - } - - initCheckBox(checkBox, loadIndicator, checkBoxId, selectedKeys) { - this.skipCheckBoxValueHandling = true; - checkBox.option({ - visible: true, - value: this.areKeysSelected(this.rowKeysCache[checkBoxId], selectedKeys), - childRowKeys: this.rowKeysCache[checkBoxId], - }); - loadIndicator.option('visible', false); - this.skipCheckBoxValueHandling = false; - } - - getSelectedKeys(grid) { - if (grid.option('selection.deferred')) { - if (!this.getSelectedKeysPromise) { - this.getSelectedKeysPromise = new Promise((resolve) => { - grid.getSelectedRowKeys().then((selectedKeys) => { - resolve(selectedKeys); - }); - }); - } - return this.getSelectedKeysPromise; - } - // eslint-disable-next-line no-promise-executor-return - return new Promise((resolve) => resolve(grid.getSelectedRowKeys())); - } - - repaintGroupRowTree(grid, groupRows) { - const topGroupRow = groupRows - .filter((r) => r.isExpanded) - .reduce( - (acc, current) => ((!acc || acc.key.length > current.key.length) ? current : acc), - null, - ); - if (topGroupRow) { - const affectedGroupRows = groupRows.filter((g) => g.key[0] === topGroupRow.key[0]); - grid.repaintRows(affectedGroupRows.map((g) => g.rowIndex)); - } - } - - gridSelectionChanged(e) { - const groupRows = e.component.getVisibleRows().filter((r) => r.rowType === 'group'); - if (e.component.option('selection.deferred')) { - this.getSelectedKeysPromise = null; - if (e.component.option('selectionFilter').length === 0) { - e.component.repaintRows(groupRows.map((g) => g.rowIndex)); - } else { - this.repaintGroupRowTree(e.component, groupRows); - } - } else if (e.selectedRowKeys.length >= e.component.totalCount() - || e.currentDeselectedRowKeys.length >= e.component.totalCount()) { - e.component.repaintRows(groupRows.map((g) => g.rowIndex)); - } else { - this.repaintGroupRowTree(e.component, groupRows); - } - } - - calcCheckBoxId(gridId, groupRowKey) { - return `${gridId}groupCheckBox${groupRowKey.join('')}`; - } - - areKeysSelected(keysToCheck, selectedKeys) { - if (selectedKeys.length === 0) return false; - const intersectionCount = keysToCheck.filter((k) => selectedKeys.indexOf(k) >= 0).length; - if (intersectionCount === 0) return false; - if (intersectionCount === keysToCheck.length) return true; - return undefined; - } -} diff --git a/jQuery/orig_data.js b/jQuery/orig_data.js deleted file mode 100644 index 58e5b8d..0000000 --- a/jQuery/orig_data.js +++ /dev/null @@ -1,84 +0,0 @@ -const myJsonObject = [ - { - 'ProductID': 1, - 'ProductName': 'Whisk', - 'Category': { - 'CategoryName': 'Kitchen', - }, - 'GroupCode': 'First', - }, { - 'ProductID': 2, - 'ProductName': 'Spatula', - 'Category': { - 'CategoryName': 'Kitchen', - }, - 'GroupCode': 'First', - }, { - 'ProductID': 3, - 'ProductName': 'Wrench', - 'Category': { - 'CategoryName': 'HandTool', - }, - 'GroupCode': 'First', - }, { - 'ProductID': 4, - 'ProductName': 'Hammer', - 'Category': { - 'CategoryName': 'HandTool', - }, - 'GroupCode': 'First', - }, - { - 'ProductID': 5, - 'ProductName': 'Keyboard', - 'Category': { - 'CategoryName': 'Computer', - }, - 'GroupCode': 'Second', - }, - { - 'ProductID': 6, - 'ProductName': 'Mouse', - 'Category': { - 'CategoryName': 'Computer', - }, - 'GroupCode': 'Second', - }, - { - 'ProductID': 7, - 'ProductName': 'LCD Monitor', - 'Category': { - 'CategoryName': 'Computer', - }, - 'GroupCode': 'Second', - }, - { - 'ProductID': 8, - 'ProductName': 'Saw', - 'Category': { - 'CategoryName': 'HandTool', - }, - 'GroupCode': 'First', - }, { - 'ProductID': 9, - 'ProductName': 'Screwdriver', - 'Category': { - 'CategoryName': 'HandTool', - }, - 'GroupCode': 'First', - }, { - 'ProductID': 10, - 'ProductName': 'Pliers', - 'Category': { - 'CategoryName': 'HandTool', - }, - 'GroupCode': 'First', - }, - { - 'ProductID': 11, - 'ProductName': 'LCD Monitor Testing', - 'Category': { - 'CategoryName': 'Computer', - }, - 'GroupCode': 'First', - }]; diff --git a/jQuery/orig_index.html b/jQuery/orig_index.html deleted file mode 100644 index cab5500..0000000 --- a/jQuery/orig_index.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - -
- - - \ No newline at end of file diff --git a/jQuery/orig_index.js b/jQuery/orig_index.js deleted file mode 100644 index 8cbd538..0000000 --- a/jQuery/orig_index.js +++ /dev/null @@ -1,72 +0,0 @@ -$(() => { - const url = 'https://js.devexpress.com/Demos/Mvc/api/DataGridWebApi'; - function getLookupDataSource(lookupUrl) { - return DevExpress.data.AspNet.createStore({ - key: 'Value', - loadUrl: lookupUrl, - onBeforeSend(method, ajaxOptions) { - ajaxOptions.xhrFields = { withCredentials: true }; - }, - }); - } - $('#grid').dxDataGrid({ - onInitialized(e) { - GroupSelectionBehavior(e.component); - }, - remoteOperations: true, - selectedRowKeys: [10521], - selection: { - mode: 'multiple', - allowSelectAll: true, - showCheckBoxesMode: 'always', - }, - width: 1200, - height: 880, - dataSource: DevExpress.data.AspNet.createStore({ - key: 'OrderID', - loadUrl: `${url}/Orders`, - onBeforeSend(method, ajaxOptions) { - ajaxOptions.xhrFields = { withCredentials: true }; - }, - }), - columns: [{ - dataField: 'OrderID', - }, { - dataField: 'CustomerID', - caption: 'Customer', - lookup: { - dataSource: getLookupDataSource(`${url}/CustomersLookup`), - valueExpr: 'Value', - displayExpr: 'Text', - }, - }, { - dataField: 'OrderDate', - dataType: 'date', - }, { - dataField: 'Freight', - }, { - dataField: 'ShipCountry', - groupIndex: 0, - }, { - dataField: 'ShipCity', - groupIndex: 2, - }, { - dataField: 'ShipVia', - caption: 'Shipping Company', - groupIndex: 1, - dataType: 'number', - lookup: { - dataSource: getLookupDataSource(`${url}/ShippersLookup`), - valueExpr: 'Value', - displayExpr: 'Text', - }, - }], - groupPanel: { - visible: true, - }, - showBorders: true, - grouping: { - autoExpandAll: false, - }, - }); -}); diff --git a/jQuery/src/orig_index.css b/jQuery/src/orig_index.css deleted file mode 100644 index 94e5507..0000000 --- a/jQuery/src/orig_index.css +++ /dev/null @@ -1,4 +0,0 @@ -.demo-container { - margin: 50px; - width: 90vh; -} diff --git a/jQuery/src/orig_index.html b/jQuery/src/orig_index.html deleted file mode 100644 index 423bb30..0000000 --- a/jQuery/src/orig_index.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - DevExtreme jQuery app - - - - - - - - - - - - -
-
-
- - diff --git a/jQuery/src/orig_index.js b/jQuery/src/orig_index.js deleted file mode 100644 index 6d9c698..0000000 --- a/jQuery/src/orig_index.js +++ /dev/null @@ -1,10 +0,0 @@ -$(() => { - let count = 0; - $('#btn').dxButton({ - text: `Click count: ${count}`, - onClick(e) { - count += 1; - e.component.option('text', `Click count: ${count}`); - }, - }); -}); From 0fa61482f66e30c6644f38426d2afa3cc82b0054 Mon Sep 17 00:00:00 2001 From: DevExpressExampleBot Date: Mon, 6 Oct 2025 08:19:10 +0400 Subject: [PATCH 08/10] README auto update [skip ci] --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 9571948..52bbee3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -![](https://img.shields.io/endpoint?url=https://codecentral.devexpress.com/api/v1/VersionRange/128583254/25.1.3%2B) [![](https://img.shields.io/badge/Open_in_DevExpress_Support_Center-FF7200?style=flat-square&logo=DevExpress&logoColor=white)](https://supportcenter.devexpress.com/ticket/details/T444368) [![](https://img.shields.io/badge/📖_How_to_use_DevExpress_Examples-e9f6fc?style=flat-square)](https://docs.devexpress.com/GeneralInformation/403183) [![](https://img.shields.io/badge/💬_Leave_Feedback-feecdd?style=flat-square)](#does-this-example-address-your-development-requirementsobjectives) From 73277f565c265bb82ee095c02f11ae419a90e6d9 Mon Sep 17 00:00:00 2001 From: Artem Kurchenko Date: Mon, 6 Oct 2025 14:49:53 +0400 Subject: [PATCH 09/10] fix readme links --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 52bbee3..5113ac9 100644 --- a/README.md +++ b/README.md @@ -17,16 +17,21 @@ DataGrid may query all data when selecting a group row with many data records. Y ## Files to Review - **jQuery** - - [index.js](jQuery/index.js) - - [GroupSelectionBehavior.js](jQuery/GroupSelectionBehavior.js) + - [index.js](jQuery/src/index.js) + - [GroupSelectionBehavior.js](jQuery/src/GroupSelectionBehavior.js) +- **ASP.NET Core** + - [Index.cshtml](ASP.NET%20Core/Views/Home/Index/cshtml) + - [GroupSelectionBehavior.js](ASP.NET%20Core/wwwroot/js/GroupSelectionBehavior.js) - **Angular** - [GroupRowSelectionHelper.ts](Angular/src/app/GroupRowSelection/GroupRowSelectionHelper.ts) - [group-row.component.html](Angular/src/app/GroupRowSelection/group-row-component/group-row.component.html) - [group-row.component.ts](Angular/src/app/GroupRowSelection/group-row-component/group-row.component.ts) - **React** - - [GroupRowComponent.tsx](React/src/GroupRowSelection/GroupRowComponent.tsx) + - [App.tsx](React/src/App.tsx) + - [GroupRowComponent.tsx](React/src/GroupRowSelection//GroupRowComponent.tsx) - [GroupRowSelectionHelper.tsx](React/src/GroupRowSelection/GroupRowSelectionHelper.tsx) - **Vue** + - [Home.vue](Vue/src/components/HomeContent.vue) - [GroupRowComponent.vue](Vue/src/components/GroupRowSelection/GroupRowComponent.vue) - [GroupRowSelectionHelper.ts](Vue/src/components/GroupRowSelection/GroupRowSelectionHelper.ts) From efdcb758f96c1ccb66d7c459cd014e767b2726d3 Mon Sep 17 00:00:00 2001 From: Artem Kurchenko Date: Mon, 6 Oct 2025 15:08:07 +0400 Subject: [PATCH 10/10] readme - fix link typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5113ac9..7caf3bb 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ DataGrid may query all data when selecting a group row with many data records. Y - [index.js](jQuery/src/index.js) - [GroupSelectionBehavior.js](jQuery/src/GroupSelectionBehavior.js) - **ASP.NET Core** - - [Index.cshtml](ASP.NET%20Core/Views/Home/Index/cshtml) + - [Index.cshtml](ASP.NET%20Core/Views/Home/Index.cshtml) - [GroupSelectionBehavior.js](ASP.NET%20Core/wwwroot/js/GroupSelectionBehavior.js) - **Angular** - [GroupRowSelectionHelper.ts](Angular/src/app/GroupRowSelection/GroupRowSelectionHelper.ts)