DevExtreme v23.2 is now available.

Explore our newest features/capabilities and share your thoughts with us.

Your search did not match any results.

Virtual Scrolling

If the PivotGrid is bound to a large dataset, you can enable the virtual scrolling mode to optimize data load time and reduce resource consumption. In this mode, the PivotGrid loads only the cells that are in the viewport. When cells leave the viewport, the PivotGrid removes them from the DOM.

To enable this mode, set the scrolling.mode to "virtual".

In this demo, the PivotGrid stores approximately 4000 values locally. To see virtual scrolling in action, scroll the PivotGrid horizontally.

Backend API
$(() => { $('#pivotgrid').dxPivotGrid({ allowSortingBySummary: true, allowSorting: true, allowFiltering: true, allowExpandAll: true, showBorders: true, height: 560, fieldChooser: { enabled: false, }, scrolling: { mode: 'virtual', }, dataSource: { fields: [{ caption: 'Region', width: 120, dataField: 'region', area: 'row', expanded: true, }, { caption: 'City', dataField: 'city', width: 150, area: 'row', }, { dataField: 'date', dataType: 'date', area: 'column', }, { groupName: 'date', groupInterval: 'year', expanded: true, }, { groupName: 'date', groupInterval: 'quarter', expanded: true, }, { caption: 'Total', dataField: 'amount', dataType: 'number', summaryType: 'sum', format: 'currency', area: 'data', }], store: sales, }, }); });
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>DevExtreme Demo</title> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script> <link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/23.2.5/css/dx.light.css" /> <script src="js/dx.all.js"></script> <script src="data.js"></script> <script src="index.js"></script> <link rel="stylesheet" type="text/css" href="styles.css" /> </head> <body class="dx-viewport"> <div class="demo-container"> <div id="pivotgrid"></div> </div> </body> </html>
const sales = [{ id: 1, region: 'North America', country: 'USA', city: 'New York', amount: 5220, date: '2006/01/05', }, { id: 2, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 4225, date: '2006/01/06', }, { id: 3, region: 'North America', country: 'USA', city: 'Denver', amount: 4260, date: '2006/01/03', }, { id: 4, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1860, date: '2006/01/14', }, { id: 5, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1490, date: '2006/01/03', }, { id: 6, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 580, date: '2006/01/04', }, { id: 7, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 495, date: '2006/01/16', }, { id: 8, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1100, date: '2006/01/19', }, { id: 9, region: 'Europe', country: 'GBR', city: 'London', amount: 6575, date: '2006/01/04', }, { id: 10, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2275, date: '2006/01/26', }, { id: 11, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1580, date: '2006/01/18', }, { id: 12, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5740, date: '2006/01/16', }, { id: 13, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3870, date: '2006/01/22', }, { id: 14, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8730, date: '2006/01/22', }, { id: 15, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3200, date: '2006/01/20', }, { id: 16, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 5140, date: '2006/01/03', }, { id: 17, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 765, date: '2006/01/16', }, { id: 18, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1880, date: '2006/01/12', }, { id: 19, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1270, date: '2006/01/10', }, { id: 20, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1560, date: '2006/01/19', }, { id: 21, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 750, date: '2006/01/17', }, { id: 22, region: 'North America', country: 'USA', city: 'New York', amount: 4770, date: '2006/02/10', }, { id: 23, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 5900, date: '2006/02/24', }, { id: 24, region: 'North America', country: 'USA', city: 'Denver', amount: 2070, date: '2006/02/12', }, { id: 25, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1815, date: '2006/02/21', }, { id: 26, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2170, date: '2006/02/08', }, { id: 27, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2160, date: '2006/02/14', }, { id: 28, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 945, date: '2006/02/07', }, { id: 29, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2850, date: '2006/02/08', }, { id: 30, region: 'Europe', country: 'GBR', city: 'London', amount: 4150, date: '2006/02/14', }, { id: 31, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7025, date: '2006/02/03', }, { id: 32, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2120, date: '2006/02/21', }, { id: 33, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 500, date: '2006/02/17', }, { id: 34, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 5100, date: '2006/02/03', }, { id: 35, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 7710, date: '2006/02/15', }, { id: 36, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5475, date: '2006/02/06', }, { id: 37, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 740, date: '2006/02/26', }, { id: 38, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4020, date: '2006/02/07', }, { id: 39, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2610, date: '2006/02/20', }, { id: 40, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1240, date: '2006/02/17', }, { id: 41, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1390, date: '2006/02/15', }, { id: 42, region: 'North America', country: 'USA', city: 'New York', amount: 4260, date: '2006/03/12', }, { id: 43, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 900, date: '2006/03/10', }, { id: 44, region: 'North America', country: 'USA', city: 'Denver', amount: 2730, date: '2006/03/04', }, { id: 45, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 570, date: '2006/03/20', }, { id: 46, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2590, date: '2006/03/04', }, { id: 47, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 6300, date: '2006/03/05', }, { id: 48, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1335, date: '2006/03/15', }, { id: 49, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 3030, date: '2006/03/14', }, { id: 50, region: 'Europe', country: 'GBR', city: 'London', amount: 7175, date: '2006/03/01', }, { id: 51, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3450, date: '2006/03/09', }, { id: 52, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5920, date: '2006/03/08', }, { id: 53, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2880, date: '2006/03/22', }, { id: 54, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6000, date: '2006/03/13', }, { id: 55, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 870, date: '2006/03/19', }, { id: 56, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5175, date: '2006/03/08', }, { id: 57, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3160, date: '2006/03/17', }, { id: 58, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2685, date: '2006/03/17', }, { id: 59, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 910, date: '2006/03/25', }, { id: 60, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1800, date: '2006/03/22', }, { id: 61, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3625, date: '2006/03/19', }, { id: 62, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2085, date: '2006/03/26', }, { id: 63, region: 'North America', country: 'USA', city: 'New York', amount: 4980, date: '2006/04/12', }, { id: 64, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3950, date: '2006/04/18', }, { id: 65, region: 'North America', country: 'USA', city: 'Denver', amount: 3855, date: '2006/04/11', }, { id: 66, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 615, date: '2006/04/02', }, { id: 67, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1380, date: '2006/04/23', }, { id: 68, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 500, date: '2006/04/05', }, { id: 69, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 660, date: '2006/04/13', }, { id: 70, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1290, date: '2006/04/07', }, { id: 71, region: 'Europe', country: 'GBR', city: 'London', amount: 2650, date: '2006/04/18', }, { id: 72, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5850, date: '2006/04/06', }, { id: 73, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1360, date: '2006/04/18', }, { id: 74, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1580, date: '2006/04/01', }, { id: 75, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 5550, date: '2006/04/17', }, { id: 76, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 5280, date: '2006/04/18', }, { id: 77, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5325, date: '2006/04/12', }, { id: 78, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4780, date: '2006/04/03', }, { id: 79, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1515, date: '2006/04/22', }, { id: 80, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1850, date: '2006/04/23', }, { id: 81, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1760, date: '2006/04/18', }, { id: 82, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 1440, date: '2006/04/03', }, { id: 83, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 310, date: '2006/04/18', }, { id: 84, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 980, date: '2006/04/01', }, { id: 85, region: 'North America', country: 'USA', city: 'New York', amount: 4350, date: '2006/04/25', }, { id: 86, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4740, date: '2006/04/11', }, { id: 87, region: 'North America', country: 'USA', city: 'New York', amount: 5640, date: '2006/05/22', }, { id: 88, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 5775, date: '2006/05/16', }, { id: 89, region: 'North America', country: 'USA', city: 'Denver', amount: 3795, date: '2006/05/14', }, { id: 90, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3975, date: '2006/05/12', }, { id: 91, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2050, date: '2006/05/08', }, { id: 92, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4600, date: '2006/05/07', }, { id: 93, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4695, date: '2006/05/09', }, { id: 94, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1190, date: '2006/05/21', }, { id: 95, region: 'Europe', country: 'GBR', city: 'London', amount: 600, date: '2006/05/03', }, { id: 96, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7625, date: '2006/05/07', }, { id: 97, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2800, date: '2006/05/08', }, { id: 98, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4340, date: '2006/05/05', }, { id: 99, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 8100, date: '2006/05/14', }, { id: 100, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 7890, date: '2006/05/01', }, { id: 101, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3100, date: '2006/05/10', }, { id: 102, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3240, date: '2006/05/23', }, { id: 103, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2685, date: '2006/05/14', }, { id: 104, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1160, date: '2006/05/22', }, { id: 105, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1070, date: '2006/05/09', }, { id: 106, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4940, date: '2006/05/04', }, { id: 107, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1960, date: '2006/05/05', }, { id: 108, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1680, date: '2006/05/08', }, { id: 109, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 885, date: '2006/05/23', }, { id: 110, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2890, date: '2006/05/08', }, { id: 111, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2310, date: '2006/05/13', }, { id: 112, region: 'North America', country: 'USA', city: 'New York', amount: 8490, date: '2006/06/18', }, { id: 113, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2350, date: '2006/06/19', }, { id: 114, region: 'North America', country: 'USA', city: 'Denver', amount: 4665, date: '2006/06/03', }, { id: 115, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1425, date: '2006/06/07', }, { id: 116, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1090, date: '2006/06/22', }, { id: 117, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1860, date: '2006/06/06', }, { id: 118, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 735, date: '2006/06/18', }, { id: 119, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1480, date: '2006/06/16', }, { id: 120, region: 'Europe', country: 'GBR', city: 'London', amount: 1000, date: '2006/06/09', }, { id: 121, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1700, date: '2006/06/22', }, { id: 122, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4880, date: '2006/06/13', }, { id: 123, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 6280, date: '2006/06/22', }, { id: 124, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1590, date: '2006/06/24', }, { id: 125, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3630, date: '2006/06/01', }, { id: 126, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3425, date: '2006/06/20', }, { id: 127, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 900, date: '2006/06/01', }, { id: 128, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3165, date: '2006/06/20', }, { id: 129, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2070, date: '2006/06/04', }, { id: 130, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 350, date: '2006/06/11', }, { id: 131, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 370, date: '2006/06/19', }, { id: 132, region: 'North America', country: 'USA', city: 'New York', amount: 1260, date: '2006/07/16', }, { id: 133, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3450, date: '2006/07/16', }, { id: 134, region: 'North America', country: 'USA', city: 'Denver', amount: 3225, date: '2006/07/19', }, { id: 135, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1125, date: '2006/07/05', }, { id: 136, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 730, date: '2006/07/25', }, { id: 137, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1380, date: '2006/07/05', }, { id: 138, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4470, date: '2006/07/09', }, { id: 139, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2700, date: '2006/07/10', }, { id: 140, region: 'Europe', country: 'GBR', city: 'London', amount: 3050, date: '2006/07/15', }, { id: 141, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5475, date: '2006/07/23', }, { id: 142, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5280, date: '2006/07/21', }, { id: 143, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5180, date: '2006/07/06', }, { id: 144, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3870, date: '2006/07/07', }, { id: 145, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 1080, date: '2006/07/15', }, { id: 146, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6750, date: '2006/07/16', }, { id: 147, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4120, date: '2006/07/17', }, { id: 148, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1305, date: '2006/07/14', }, { id: 149, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1060, date: '2006/07/08', }, { id: 150, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1740, date: '2006/07/20', }, { id: 151, region: 'North America', country: 'USA', city: 'Denver', amount: 3030, date: '2006/07/23', }, { id: 152, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 2880, date: '2006/07/24', }, { id: 153, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4040, date: '2006/07/13', }, { id: 154, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1140, date: '2006/07/02', }, { id: 155, region: 'North America', country: 'USA', city: 'New York', amount: 3420, date: '2006/08/24', }, { id: 156, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1025, date: '2006/08/21', }, { id: 157, region: 'North America', country: 'USA', city: 'Denver', amount: 4350, date: '2006/08/10', }, { id: 158, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4230, date: '2006/08/26', }, { id: 159, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1210, date: '2006/08/18', }, { id: 160, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 560, date: '2006/08/14', }, { id: 161, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 360, date: '2006/08/17', }, { id: 162, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2990, date: '2006/08/02', }, { id: 163, region: 'Europe', country: 'GBR', city: 'London', amount: 4475, date: '2006/08/20', }, { id: 164, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 6425, date: '2006/08/09', }, { id: 165, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5180, date: '2006/08/09', }, { id: 166, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1280, date: '2006/08/04', }, { id: 167, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 7230, date: '2006/08/08', }, { id: 168, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 7740, date: '2006/08/01', }, { id: 169, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3275, date: '2006/08/02', }, { id: 170, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1580, date: '2006/08/10', }, { id: 171, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2160, date: '2006/08/18', }, { id: 172, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2970, date: '2006/08/11', }, { id: 173, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2150, date: '2006/08/07', }, { id: 174, region: 'North America', country: 'USA', city: 'New York', amount: 3540, date: '2006/09/14', }, { id: 175, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7725, date: '2006/09/16', }, { id: 176, region: 'North America', country: 'USA', city: 'Denver', amount: 3690, date: '2006/09/19', }, { id: 177, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3885, date: '2006/09/22', }, { id: 178, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 350, date: '2006/09/12', }, { id: 179, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1800, date: '2006/09/04', }, { id: 180, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1785, date: '2006/09/26', }, { id: 181, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 790, date: '2006/09/11', }, { id: 182, region: 'Europe', country: 'GBR', city: 'London', amount: 2250, date: '2006/09/07', }, { id: 183, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1750, date: '2006/09/23', }, { id: 184, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1460, date: '2006/09/17', }, { id: 185, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1040, date: '2006/09/22', }, { id: 186, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 5610, date: '2006/09/12', }, { id: 187, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6900, date: '2006/09/09', }, { id: 188, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4175, date: '2006/09/10', }, { id: 189, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 6020, date: '2006/09/07', }, { id: 190, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 705, date: '2006/09/21', }, { id: 191, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2450, date: '2006/09/26', }, { id: 192, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 960, date: '2006/09/21', }, { id: 193, region: 'North America', country: 'USA', city: 'New York', amount: 1200, date: '2006/09/08', }, { id: 194, region: 'North America', country: 'USA', city: 'New York', amount: 5820, date: '2006/10/15', }, { id: 195, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2450, date: '2006/10/24', }, { id: 196, region: 'North America', country: 'USA', city: 'Denver', amount: 3555, date: '2006/10/15', }, { id: 197, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 720, date: '2006/10/25', }, { id: 198, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1480, date: '2006/10/16', }, { id: 199, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5620, date: '2006/10/24', }, { id: 200, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3075, date: '2006/10/24', }, { id: 201, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 930, date: '2006/10/17', }, { id: 202, region: 'Europe', country: 'GBR', city: 'London', amount: 4100, date: '2006/10/13', }, { id: 203, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5250, date: '2006/10/14', }, { id: 204, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5460, date: '2006/10/26', }, { id: 205, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2240, date: '2006/10/12', }, { id: 206, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1680, date: '2006/10/12', }, { id: 207, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 4980, date: '2006/10/12', }, { id: 208, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4875, date: '2006/10/25', }, { id: 209, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 5640, date: '2006/10/21', }, { id: 210, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 525, date: '2006/10/12', }, { id: 211, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 230, date: '2006/10/23', }, { id: 212, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 3030, date: '2006/10/01', }, { id: 213, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2570, date: '2006/10/11', }, { id: 214, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2010, date: '2006/10/12', }, { id: 215, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5280, date: '2006/10/18', }, { id: 216, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4080, date: '2006/10/06', }, { id: 217, region: 'North America', country: 'USA', city: 'New York', amount: 8430, date: '2006/11/02', }, { id: 218, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3550, date: '2006/11/20', }, { id: 219, region: 'North America', country: 'USA', city: 'Denver', amount: 2655, date: '2006/11/15', }, { id: 220, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1965, date: '2006/11/25', }, { id: 221, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2150, date: '2006/11/23', }, { id: 222, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3760, date: '2006/11/02', }, { id: 223, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2160, date: '2006/11/17', }, { id: 224, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1170, date: '2006/11/16', }, { id: 225, region: 'Europe', country: 'GBR', city: 'London', amount: 3675, date: '2006/11/20', }, { id: 226, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1625, date: '2006/11/12', }, { id: 227, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2360, date: '2006/11/14', }, { id: 228, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 6120, date: '2006/11/18', }, { id: 229, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2550, date: '2006/11/07', }, { id: 230, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 960, date: '2006/11/07', }, { id: 231, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2650, date: '2006/11/24', }, { id: 232, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3080, date: '2006/11/17', }, { id: 233, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4185, date: '2006/11/21', }, { id: 234, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 390, date: '2006/11/10', }, { id: 235, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 610, date: '2006/11/02', }, { id: 236, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 4700, date: '2006/11/26', }, { id: 237, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6500, date: '2006/11/04', }, { id: 238, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3915, date: '2006/11/25', }, { id: 239, region: 'North America', country: 'USA', city: 'New York', amount: 2250, date: '2006/12/05', }, { id: 240, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1575, date: '2006/12/21', }, { id: 241, region: 'North America', country: 'USA', city: 'Denver', amount: 3030, date: '2006/12/21', }, { id: 242, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 915, date: '2006/12/12', }, { id: 243, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1440, date: '2006/12/25', }, { id: 244, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1760, date: '2006/12/02', }, { id: 245, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3090, date: '2006/12/08', }, { id: 246, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 450, date: '2006/12/19', }, { id: 247, region: 'Europe', country: 'GBR', city: 'London', amount: 1700, date: '2006/12/13', }, { id: 248, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1000, date: '2006/12/14', }, { id: 249, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1820, date: '2006/12/01', }, { id: 250, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5560, date: '2006/12/15', }, { id: 251, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1650, date: '2006/12/18', }, { id: 252, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 630, date: '2006/12/21', }, { id: 253, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7350, date: '2006/12/09', }, { id: 254, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2700, date: '2006/12/15', }, { id: 255, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2505, date: '2006/12/21', }, { id: 256, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2710, date: '2006/12/09', }, { id: 257, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 560, date: '2006/12/17', }, { id: 258, region: 'North America', country: 'USA', city: 'New York', amount: 780, date: '2007/01/05', }, { id: 259, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1000, date: '2007/01/05', }, { id: 260, region: 'North America', country: 'USA', city: 'Denver', amount: 4545, date: '2007/01/04', }, { id: 261, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1710, date: '2007/01/17', }, { id: 262, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2260, date: '2007/01/25', }, { id: 263, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5500, date: '2007/01/23', }, { id: 264, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 975, date: '2007/01/14', }, { id: 265, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2410, date: '2007/01/18', }, { id: 266, region: 'Europe', country: 'GBR', city: 'London', amount: 4925, date: '2007/01/23', }, { id: 267, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 4100, date: '2007/01/21', }, { id: 268, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3520, date: '2007/01/19', }, { id: 269, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1540, date: '2007/01/24', }, { id: 270, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3240, date: '2007/01/09', }, { id: 271, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 4020, date: '2007/01/07', }, { id: 272, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7375, date: '2007/01/24', }, { id: 273, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4180, date: '2007/01/09', }, { id: 274, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4665, date: '2007/01/25', }, { id: 275, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2980, date: '2007/01/03', }, { id: 276, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1530, date: '2007/01/01', }, { id: 277, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5600, date: '2007/01/20', }, { id: 278, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2690, date: '2007/01/04', }, { id: 279, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4710, date: '2007/01/25', }, { id: 280, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5800, date: '2007/01/16', }, { id: 281, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2520, date: '2007/01/03', }, { id: 282, region: 'North America', country: 'USA', city: 'New York', amount: 1770, date: '2007/02/05', }, { id: 283, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6850, date: '2007/02/24', }, { id: 284, region: 'North America', country: 'USA', city: 'Denver', amount: 1185, date: '2007/02/24', }, { id: 285, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3900, date: '2007/02/08', }, { id: 286, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2660, date: '2007/02/07', }, { id: 287, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 6040, date: '2007/02/18', }, { id: 288, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1590, date: '2007/02/05', }, { id: 289, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1980, date: '2007/02/17', }, { id: 290, region: 'Europe', country: 'GBR', city: 'London', amount: 7725, date: '2007/02/12', }, { id: 291, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3700, date: '2007/02/09', }, { id: 292, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1760, date: '2007/02/11', }, { id: 293, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 6080, date: '2007/02/24', }, { id: 294, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6450, date: '2007/02/26', }, { id: 295, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8430, date: '2007/02/15', }, { id: 296, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4325, date: '2007/02/20', }, { id: 297, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2360, date: '2007/02/22', }, { id: 298, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4245, date: '2007/02/16', }, { id: 299, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2930, date: '2007/02/24', }, { id: 300, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 840, date: '2007/02/14', }, { id: 301, region: 'North America', country: 'USA', city: 'New York', amount: 1380, date: '2007/03/23', }, { id: 302, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 5125, date: '2007/03/22', }, { id: 303, region: 'North America', country: 'USA', city: 'Denver', amount: 3030, date: '2007/03/10', }, { id: 304, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4635, date: '2007/03/24', }, { id: 305, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 290, date: '2007/03/19', }, { id: 306, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2560, date: '2007/03/02', }, { id: 307, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1725, date: '2007/03/01', }, { id: 308, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2000, date: '2007/03/02', }, { id: 309, region: 'Europe', country: 'GBR', city: 'London', amount: 6525, date: '2007/03/18', }, { id: 310, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 6900, date: '2007/03/24', }, { id: 311, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5480, date: '2007/03/16', }, { id: 312, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5860, date: '2007/03/20', }, { id: 313, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2520, date: '2007/03/19', }, { id: 314, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6030, date: '2007/03/24', }, { id: 315, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2425, date: '2007/03/21', }, { id: 316, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 800, date: '2007/03/04', }, { id: 317, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 885, date: '2007/03/10', }, { id: 318, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2480, date: '2007/03/18', }, { id: 319, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 800, date: '2007/03/13', }, { id: 320, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2950, date: '2007/03/01', }, { id: 321, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1770, date: '2007/03/03', }, { id: 322, region: 'North America', country: 'USA', city: 'New York', amount: 6690, date: '2007/03/15', }, { id: 323, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 9510, date: '2007/03/14', }, { id: 324, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2800, date: '2007/03/11', }, { id: 325, region: 'North America', country: 'USA', city: 'New York', amount: 9450, date: '2007/04/04', }, { id: 326, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6400, date: '2007/04/21', }, { id: 327, region: 'North America', country: 'USA', city: 'Denver', amount: 2025, date: '2007/04/04', }, { id: 328, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2655, date: '2007/04/04', }, { id: 329, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 490, date: '2007/04/06', }, { id: 330, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2100, date: '2007/04/20', }, { id: 331, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4170, date: '2007/04/09', }, { id: 332, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2660, date: '2007/04/06', }, { id: 333, region: 'Europe', country: 'GBR', city: 'London', amount: 6075, date: '2007/04/20', }, { id: 334, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 4450, date: '2007/04/22', }, { id: 335, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4360, date: '2007/04/12', }, { id: 336, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1320, date: '2007/04/13', }, { id: 337, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 9450, date: '2007/04/11', }, { id: 338, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6960, date: '2007/04/25', }, { id: 339, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4325, date: '2007/04/17', }, { id: 340, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 720, date: '2007/04/13', }, { id: 341, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3030, date: '2007/04/17', }, { id: 342, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 220, date: '2007/04/12', }, { id: 343, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 310, date: '2007/04/22', }, { id: 344, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6240, date: '2007/04/13', }, { id: 345, region: 'North America', country: 'USA', city: 'New York', amount: 4740, date: '2007/05/25', }, { id: 346, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7325, date: '2007/05/07', }, { id: 347, region: 'North America', country: 'USA', city: 'Denver', amount: 4665, date: '2007/05/13', }, { id: 348, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4380, date: '2007/05/26', }, { id: 349, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2300, date: '2007/05/07', }, { id: 350, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3820, date: '2007/05/21', }, { id: 351, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1125, date: '2007/05/02', }, { id: 352, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2170, date: '2007/05/13', }, { id: 353, region: 'Europe', country: 'GBR', city: 'London', amount: 6325, date: '2007/05/10', }, { id: 354, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2600, date: '2007/05/04', }, { id: 355, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4760, date: '2007/05/22', }, { id: 356, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3840, date: '2007/05/09', }, { id: 357, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1950, date: '2007/05/20', }, { id: 358, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 2070, date: '2007/05/26', }, { id: 359, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6725, date: '2007/05/20', }, { id: 360, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2260, date: '2007/05/13', }, { id: 361, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1545, date: '2007/05/18', }, { id: 362, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 330, date: '2007/05/03', }, { id: 363, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1020, date: '2007/05/02', }, { id: 364, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2560, date: '2007/05/09', }, { id: 365, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3260, date: '2007/05/26', }, { id: 366, region: 'North America', country: 'USA', city: 'New York', amount: 4770, date: '2007/06/18', }, { id: 367, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3225, date: '2007/06/24', }, { id: 368, region: 'North America', country: 'USA', city: 'Denver', amount: 3705, date: '2007/06/13', }, { id: 369, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4035, date: '2007/06/19', }, { id: 370, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1970, date: '2007/06/21', }, { id: 371, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5240, date: '2007/06/24', }, { id: 372, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1125, date: '2007/06/19', }, { id: 373, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 290, date: '2007/06/04', }, { id: 374, region: 'Europe', country: 'GBR', city: 'London', amount: 3525, date: '2007/06/13', }, { id: 375, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7625, date: '2007/06/04', }, { id: 376, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 560, date: '2007/06/05', }, { id: 377, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3060, date: '2007/06/03', }, { id: 378, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 8370, date: '2007/06/26', }, { id: 379, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6570, date: '2007/06/25', }, { id: 380, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7200, date: '2007/06/22', }, { id: 381, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 620, date: '2007/06/24', }, { id: 382, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2295, date: '2007/06/01', }, { id: 383, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1450, date: '2007/06/04', }, { id: 384, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1430, date: '2007/06/25', }, { id: 385, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3960, date: '2007/06/16', }, { id: 386, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1040, date: '2007/06/19', }, { id: 387, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 9270, date: '2007/06/19', }, { id: 388, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5425, date: '2007/06/15', }, { id: 389, region: 'North America', country: 'USA', city: 'New York', amount: 5610, date: '2007/07/09', }, { id: 390, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7375, date: '2007/07/22', }, { id: 391, region: 'North America', country: 'USA', city: 'Denver', amount: 1875, date: '2007/07/18', }, { id: 392, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4530, date: '2007/07/01', }, { id: 393, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1280, date: '2007/07/23', }, { id: 394, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4680, date: '2007/07/26', }, { id: 395, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2235, date: '2007/07/07', }, { id: 396, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 520, date: '2007/07/07', }, { id: 397, region: 'Europe', country: 'GBR', city: 'London', amount: 1150, date: '2007/07/18', }, { id: 398, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7350, date: '2007/07/04', }, { id: 399, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3440, date: '2007/07/09', }, { id: 400, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3240, date: '2007/07/02', }, { id: 401, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 8940, date: '2007/07/02', }, { id: 402, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 5190, date: '2007/07/12', }, { id: 403, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2375, date: '2007/07/16', }, { id: 404, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3280, date: '2007/07/19', }, { id: 405, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 480, date: '2007/07/01', }, { id: 406, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2280, date: '2007/07/25', }, { id: 407, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 850, date: '2007/07/09', }, { id: 408, region: 'North America', country: 'USA', city: 'New York', amount: 1830, date: '2007/07/02', }, { id: 409, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2910, date: '2007/07/24', }, { id: 410, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 380, date: '2007/07/21', }, { id: 411, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1720, date: '2007/07/04', }, { id: 412, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 380, date: '2007/07/03', }, { id: 413, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 2760, date: '2007/07/20', }, { id: 414, region: 'North America', country: 'USA', city: 'New York', amount: 6870, date: '2007/08/02', }, { id: 415, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7175, date: '2007/08/12', }, { id: 416, region: 'North America', country: 'USA', city: 'Denver', amount: 3975, date: '2007/08/19', }, { id: 417, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4410, date: '2007/08/19', }, { id: 418, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 670, date: '2007/08/10', }, { id: 419, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5540, date: '2007/08/10', }, { id: 420, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1305, date: '2007/08/06', }, { id: 421, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 210, date: '2007/08/12', }, { id: 422, region: 'Europe', country: 'GBR', city: 'London', amount: 6525, date: '2007/08/23', }, { id: 423, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 4975, date: '2007/08/16', }, { id: 424, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3160, date: '2007/08/07', }, { id: 425, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 920, date: '2007/08/17', }, { id: 426, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 9210, date: '2007/08/18', }, { id: 427, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8430, date: '2007/08/14', }, { id: 428, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6850, date: '2007/08/15', }, { id: 429, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1160, date: '2007/08/13', }, { id: 430, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3675, date: '2007/08/18', }, { id: 431, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 920, date: '2007/08/12', }, { id: 432, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 3070, date: '2007/08/06', }, { id: 433, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4320, date: '2007/08/13', }, { id: 434, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7425, date: '2007/08/17', }, { id: 435, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 915, date: '2007/08/16', }, { id: 436, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1225, date: '2007/08/10', }, { id: 437, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2910, date: '2007/08/13', }, { id: 438, region: 'North America', country: 'USA', city: 'New York', amount: 1770, date: '2007/09/03', }, { id: 439, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7100, date: '2007/09/13', }, { id: 440, region: 'North America', country: 'USA', city: 'Denver', amount: 4395, date: '2007/09/24', }, { id: 441, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2115, date: '2007/09/16', }, { id: 442, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1750, date: '2007/09/01', }, { id: 443, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1060, date: '2007/09/22', }, { id: 444, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1050, date: '2007/09/26', }, { id: 445, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2330, date: '2007/09/09', }, { id: 446, region: 'Europe', country: 'GBR', city: 'London', amount: 1425, date: '2007/09/18', }, { id: 447, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7825, date: '2007/09/24', }, { id: 448, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3860, date: '2007/09/05', }, { id: 449, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 960, date: '2007/09/04', }, { id: 450, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1980, date: '2007/09/17', }, { id: 451, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 990, date: '2007/09/08', }, { id: 452, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2500, date: '2007/09/13', }, { id: 453, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 6040, date: '2007/09/21', }, { id: 454, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4470, date: '2007/09/05', }, { id: 455, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2070, date: '2007/09/11', }, { id: 456, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2280, date: '2007/09/07', }, { id: 457, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 6100, date: '2007/09/13', }, { id: 458, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2690, date: '2007/09/16', }, { id: 459, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2430, date: '2007/09/04', }, { id: 460, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5220, date: '2007/09/05', }, { id: 461, region: 'North America', country: 'USA', city: 'New York', amount: 2160, date: '2007/10/19', }, { id: 462, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 5950, date: '2007/10/14', }, { id: 463, region: 'North America', country: 'USA', city: 'Denver', amount: 4575, date: '2007/10/24', }, { id: 464, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1665, date: '2007/10/24', }, { id: 465, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 810, date: '2007/10/10', }, { id: 466, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 6280, date: '2007/10/26', }, { id: 467, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2640, date: '2007/10/10', }, { id: 468, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 290, date: '2007/10/09', }, { id: 469, region: 'Europe', country: 'GBR', city: 'London', amount: 7725, date: '2007/10/10', }, { id: 470, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2475, date: '2007/10/06', }, { id: 471, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2320, date: '2007/10/14', }, { id: 472, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1280, date: '2007/10/19', }, { id: 473, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1170, date: '2007/10/25', }, { id: 474, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 4290, date: '2007/10/01', }, { id: 475, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4650, date: '2007/10/21', }, { id: 476, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 6060, date: '2007/10/18', }, { id: 477, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1230, date: '2007/10/22', }, { id: 478, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2330, date: '2007/10/04', }, { id: 479, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2060, date: '2007/10/24', }, { id: 480, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 6280, date: '2007/10/09', }, { id: 481, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 950, date: '2007/10/10', }, { id: 482, region: 'Europe', country: 'GBR', city: 'London', amount: 6350, date: '2007/10/13', }, { id: 483, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2740, date: '2007/10/14', }, { id: 484, region: 'North America', country: 'USA', city: 'New York', amount: 6750, date: '2007/11/05', }, { id: 485, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3275, date: '2007/11/04', }, { id: 486, region: 'North America', country: 'USA', city: 'Denver', amount: 930, date: '2007/11/22', }, { id: 487, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1500, date: '2007/11/14', }, { id: 488, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1560, date: '2007/11/07', }, { id: 489, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2520, date: '2007/11/19', }, { id: 490, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 810, date: '2007/11/16', }, { id: 491, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2450, date: '2007/11/12', }, { id: 492, region: 'Europe', country: 'GBR', city: 'London', amount: 5275, date: '2007/11/10', }, { id: 493, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 6500, date: '2007/11/18', }, { id: 494, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1020, date: '2007/11/23', }, { id: 495, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5880, date: '2007/11/16', }, { id: 496, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 5040, date: '2007/11/23', }, { id: 497, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6990, date: '2007/11/02', }, { id: 498, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5825, date: '2007/11/22', }, { id: 499, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3340, date: '2007/11/13', }, { id: 500, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1080, date: '2007/11/16', }, { id: 501, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 930, date: '2007/11/19', }, { id: 502, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2440, date: '2007/11/08', }, { id: 503, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1320, date: '2007/11/25', }, { id: 504, region: 'Europe', country: 'GBR', city: 'London', amount: 3450, date: '2007/11/03', }, { id: 505, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3630, date: '2007/11/09', }, { id: 506, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 3100, date: '2007/11/26', }, { id: 507, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 660, date: '2007/11/14', }, { id: 508, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3850, date: '2007/11/26', }, { id: 509, region: 'North America', country: 'USA', city: 'New York', amount: 5100, date: '2007/12/23', }, { id: 510, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 4400, date: '2007/12/14', }, { id: 511, region: 'North America', country: 'USA', city: 'Denver', amount: 960, date: '2007/12/04', }, { id: 512, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3765, date: '2007/12/15', }, { id: 513, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1060, date: '2007/12/03', }, { id: 514, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2060, date: '2007/12/22', }, { id: 515, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3930, date: '2007/12/08', }, { id: 516, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1750, date: '2007/12/16', }, { id: 517, region: 'Europe', country: 'GBR', city: 'London', amount: 5475, date: '2007/12/05', }, { id: 518, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2650, date: '2007/12/13', }, { id: 519, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5560, date: '2007/12/04', }, { id: 520, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5360, date: '2007/12/22', }, { id: 521, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3630, date: '2007/12/04', }, { id: 522, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 810, date: '2007/12/10', }, { id: 523, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2950, date: '2007/12/20', }, { id: 524, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 6140, date: '2007/12/20', }, { id: 525, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4365, date: '2007/12/14', }, { id: 526, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 3110, date: '2007/12/16', }, { id: 527, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 710, date: '2007/12/22', }, { id: 528, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3020, date: '2007/12/24', }, { id: 529, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2310, date: '2007/12/05', }, { id: 530, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1935, date: '2007/12/17', }, { id: 531, region: 'North America', country: 'USA', city: 'New York', amount: 1140, date: '2008/01/25', }, { id: 532, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3050, date: '2008/01/06', }, { id: 533, region: 'North America', country: 'USA', city: 'Denver', amount: 3915, date: '2008/01/17', }, { id: 534, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1140, date: '2008/01/11', }, { id: 535, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2160, date: '2008/01/10', }, { id: 536, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5760, date: '2008/01/25', }, { id: 537, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4290, date: '2008/01/18', }, { id: 538, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1330, date: '2008/01/06', }, { id: 539, region: 'Europe', country: 'GBR', city: 'London', amount: 1575, date: '2008/01/24', }, { id: 540, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5875, date: '2008/01/02', }, { id: 541, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2240, date: '2008/01/11', }, { id: 542, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2180, date: '2008/01/16', }, { id: 543, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6780, date: '2008/01/04', }, { id: 544, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 7350, date: '2008/01/15', }, { id: 545, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4725, date: '2008/01/06', }, { id: 546, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2060, date: '2008/01/08', }, { id: 547, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 675, date: '2008/01/21', }, { id: 548, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2610, date: '2008/01/17', }, { id: 549, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1470, date: '2008/01/25', }, { id: 550, region: 'North America', country: 'USA', city: 'New York', amount: 1380, date: '2008/02/06', }, { id: 551, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6875, date: '2008/02/19', }, { id: 552, region: 'North America', country: 'USA', city: 'Denver', amount: 660, date: '2008/02/22', }, { id: 553, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1575, date: '2008/02/04', }, { id: 554, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 920, date: '2008/02/03', }, { id: 555, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 420, date: '2008/02/04', }, { id: 556, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1140, date: '2008/02/24', }, { id: 557, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1360, date: '2008/02/03', }, { id: 558, region: 'Europe', country: 'GBR', city: 'London', amount: 5575, date: '2008/02/05', }, { id: 559, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7625, date: '2008/02/12', }, { id: 560, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4960, date: '2008/02/19', }, { id: 561, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2040, date: '2008/02/08', }, { id: 562, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 5070, date: '2008/02/12', }, { id: 563, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 750, date: '2008/02/20', }, { id: 564, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1200, date: '2008/02/08', }, { id: 565, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3720, date: '2008/02/18', }, { id: 566, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3750, date: '2008/02/20', }, { id: 567, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1000, date: '2008/02/17', }, { id: 568, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 580, date: '2008/02/04', }, { id: 569, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 5200, date: '2008/02/17', }, { id: 570, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 680, date: '2008/02/12', }, { id: 571, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3920, date: '2008/02/03', }, { id: 572, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3000, date: '2008/02/22', }, { id: 573, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1650, date: '2008/02/17', }, { id: 574, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 9060, date: '2008/02/17', }, { id: 575, region: 'North America', country: 'USA', city: 'New York', amount: 7410, date: '2008/03/13', }, { id: 576, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 5175, date: '2008/03/21', }, { id: 577, region: 'North America', country: 'USA', city: 'Denver', amount: 1995, date: '2008/03/09', }, { id: 578, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1800, date: '2008/03/19', }, { id: 579, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2320, date: '2008/03/03', }, { id: 580, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1380, date: '2008/03/14', }, { id: 581, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2235, date: '2008/03/09', }, { id: 582, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 700, date: '2008/03/12', }, { id: 583, region: 'Europe', country: 'GBR', city: 'London', amount: 2800, date: '2008/03/22', }, { id: 584, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1950, date: '2008/03/17', }, { id: 585, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1720, date: '2008/03/23', }, { id: 586, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3600, date: '2008/03/09', }, { id: 587, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 7590, date: '2008/03/24', }, { id: 588, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 2280, date: '2008/03/21', }, { id: 589, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4575, date: '2008/03/10', }, { id: 590, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1020, date: '2008/03/04', }, { id: 591, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1050, date: '2008/03/20', }, { id: 592, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1600, date: '2008/03/21', }, { id: 593, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 3040, date: '2008/03/25', }, { id: 594, region: 'North America', country: 'USA', city: 'New York', amount: 6060, date: '2008/04/17', }, { id: 595, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6125, date: '2008/04/03', }, { id: 596, region: 'North America', country: 'USA', city: 'Denver', amount: 3015, date: '2008/04/20', }, { id: 597, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2025, date: '2008/04/21', }, { id: 598, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2890, date: '2008/04/09', }, { id: 599, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 560, date: '2008/04/05', }, { id: 600, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3600, date: '2008/04/09', }, { id: 601, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2760, date: '2008/04/12', }, { id: 602, region: 'Europe', country: 'GBR', city: 'London', amount: 3475, date: '2008/04/11', }, { id: 603, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2275, date: '2008/04/11', }, { id: 604, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1420, date: '2008/04/25', }, { id: 605, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5680, date: '2008/04/17', }, { id: 606, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 870, date: '2008/04/18', }, { id: 607, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 7440, date: '2008/04/01', }, { id: 608, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5675, date: '2008/04/15', }, { id: 609, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3260, date: '2008/04/07', }, { id: 610, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3915, date: '2008/04/25', }, { id: 611, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1250, date: '2008/04/23', }, { id: 612, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2110, date: '2008/04/07', }, { id: 613, region: 'North America', country: 'USA', city: 'New York', amount: 4590, date: '2008/05/07', }, { id: 614, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3375, date: '2008/05/24', }, { id: 615, region: 'North America', country: 'USA', city: 'Denver', amount: 4290, date: '2008/05/22', }, { id: 616, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2190, date: '2008/05/19', }, { id: 617, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2400, date: '2008/05/09', }, { id: 618, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2640, date: '2008/05/25', }, { id: 619, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1245, date: '2008/05/06', }, { id: 620, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1160, date: '2008/05/07', }, { id: 621, region: 'Europe', country: 'GBR', city: 'London', amount: 4350, date: '2008/05/09', }, { id: 622, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2900, date: '2008/05/20', }, { id: 623, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 6120, date: '2008/05/15', }, { id: 624, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5800, date: '2008/05/10', }, { id: 625, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 4080, date: '2008/05/14', }, { id: 626, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6150, date: '2008/05/01', }, { id: 627, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6525, date: '2008/05/13', }, { id: 628, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3320, date: '2008/05/24', }, { id: 629, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3630, date: '2008/05/26', }, { id: 630, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2070, date: '2008/05/23', }, { id: 631, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1610, date: '2008/05/19', }, { id: 632, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 810, date: '2008/05/08', }, { id: 633, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 580, date: '2008/05/06', }, { id: 634, region: 'North America', country: 'USA', city: 'New York', amount: 810, date: '2008/06/02', }, { id: 635, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1750, date: '2008/06/25', }, { id: 636, region: 'North America', country: 'USA', city: 'Denver', amount: 3105, date: '2008/06/17', }, { id: 637, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2100, date: '2008/06/26', }, { id: 638, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1760, date: '2008/06/24', }, { id: 639, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1700, date: '2008/06/04', }, { id: 640, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2235, date: '2008/06/17', }, { id: 641, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1860, date: '2008/06/12', }, { id: 642, region: 'Europe', country: 'GBR', city: 'London', amount: 6800, date: '2008/06/02', }, { id: 643, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3275, date: '2008/06/15', }, { id: 644, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2360, date: '2008/06/01', }, { id: 645, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5300, date: '2008/06/19', }, { id: 646, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2310, date: '2008/06/06', }, { id: 647, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3810, date: '2008/06/13', }, { id: 648, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5200, date: '2008/06/25', }, { id: 649, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 720, date: '2008/06/15', }, { id: 650, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1230, date: '2008/06/19', }, { id: 651, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1450, date: '2008/06/13', }, { id: 652, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 240, date: '2008/06/08', }, { id: 653, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 740, date: '2008/06/16', }, { id: 654, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2340, date: '2008/06/19', }, { id: 655, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 5350, date: '2008/06/11', }, { id: 656, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 4740, date: '2008/06/02', }, { id: 657, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1515, date: '2008/06/19', }, { id: 658, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2750, date: '2008/06/16', }, { id: 659, region: 'North America', country: 'USA', city: 'New York', amount: 2190, date: '2008/07/12', }, { id: 660, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1500, date: '2008/07/01', }, { id: 661, region: 'North America', country: 'USA', city: 'Denver', amount: 4425, date: '2008/07/18', }, { id: 662, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2040, date: '2008/07/12', }, { id: 663, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2670, date: '2008/07/02', }, { id: 664, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5120, date: '2008/07/01', }, { id: 665, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4050, date: '2008/07/10', }, { id: 666, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2970, date: '2008/07/21', }, { id: 667, region: 'Europe', country: 'GBR', city: 'London', amount: 2550, date: '2008/07/05', }, { id: 668, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1050, date: '2008/07/22', }, { id: 669, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1400, date: '2008/07/05', }, { id: 670, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4240, date: '2008/07/07', }, { id: 671, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6900, date: '2008/07/02', }, { id: 672, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 7740, date: '2008/07/05', }, { id: 673, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4575, date: '2008/07/07', }, { id: 674, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4540, date: '2008/07/12', }, { id: 675, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1455, date: '2008/07/16', }, { id: 676, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2030, date: '2008/07/05', }, { id: 677, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2420, date: '2008/07/13', }, { id: 678, region: 'Europe', country: 'GBR', city: 'London', amount: 6700, date: '2008/07/20', }, { id: 679, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 630, date: '2008/07/20', }, { id: 680, region: 'North America', country: 'USA', city: 'New York', amount: 6000, date: '2008/08/13', }, { id: 681, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 4450, date: '2008/08/26', }, { id: 682, region: 'North America', country: 'USA', city: 'Denver', amount: 2580, date: '2008/08/05', }, { id: 683, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 600, date: '2008/08/03', }, { id: 684, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1120, date: '2008/08/06', }, { id: 685, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 480, date: '2008/08/11', }, { id: 686, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1485, date: '2008/08/15', }, { id: 687, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2730, date: '2008/08/03', }, { id: 688, region: 'Europe', country: 'GBR', city: 'London', amount: 5750, date: '2008/08/09', }, { id: 689, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 4375, date: '2008/08/23', }, { id: 690, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 920, date: '2008/08/13', }, { id: 691, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1520, date: '2008/08/09', }, { id: 692, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 9180, date: '2008/08/19', }, { id: 693, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 9120, date: '2008/08/08', }, { id: 694, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1525, date: '2008/08/21', }, { id: 695, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3800, date: '2008/08/02', }, { id: 696, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4785, date: '2008/08/10', }, { id: 697, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2960, date: '2008/08/14', }, { id: 698, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2490, date: '2008/08/14', }, { id: 699, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1000, date: '2008/08/04', }, { id: 700, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1900, date: '2008/08/11', }, { id: 701, region: 'North America', country: 'USA', city: 'New York', amount: 7980, date: '2008/09/07', }, { id: 702, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2475, date: '2008/09/09', }, { id: 703, region: 'North America', country: 'USA', city: 'Denver', amount: 2160, date: '2008/09/06', }, { id: 704, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 615, date: '2008/09/21', }, { id: 705, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 430, date: '2008/09/15', }, { id: 706, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1180, date: '2008/09/20', }, { id: 707, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3675, date: '2008/09/01', }, { id: 708, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1050, date: '2008/09/17', }, { id: 709, region: 'Europe', country: 'GBR', city: 'London', amount: 1325, date: '2008/09/23', }, { id: 710, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7325, date: '2008/09/19', }, { id: 711, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5540, date: '2008/09/05', }, { id: 712, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1720, date: '2008/09/04', }, { id: 713, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6480, date: '2008/09/04', }, { id: 714, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 4560, date: '2008/09/23', }, { id: 715, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2200, date: '2008/09/03', }, { id: 716, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 5480, date: '2008/09/21', }, { id: 717, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4230, date: '2008/09/24', }, { id: 718, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 380, date: '2008/09/10', }, { id: 719, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2320, date: '2008/09/26', }, { id: 720, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 4450, date: '2008/09/09', }, { id: 721, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 980, date: '2008/09/16', }, { id: 722, region: 'North America', country: 'USA', city: 'New York', amount: 4800, date: '2008/10/12', }, { id: 723, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 4975, date: '2008/10/17', }, { id: 724, region: 'North America', country: 'USA', city: 'Denver', amount: 1905, date: '2008/10/14', }, { id: 725, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4500, date: '2008/10/22', }, { id: 726, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1030, date: '2008/10/02', }, { id: 727, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3420, date: '2008/10/14', }, { id: 728, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4440, date: '2008/10/17', }, { id: 729, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 830, date: '2008/10/18', }, { id: 730, region: 'Europe', country: 'GBR', city: 'London', amount: 4300, date: '2008/10/03', }, { id: 731, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5825, date: '2008/10/09', }, { id: 732, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3400, date: '2008/10/26', }, { id: 733, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 6200, date: '2008/10/24', }, { id: 734, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 8160, date: '2008/10/11', }, { id: 735, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3810, date: '2008/10/26', }, { id: 736, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1625, date: '2008/10/26', }, { id: 737, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 780, date: '2008/10/01', }, { id: 738, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2835, date: '2008/10/21', }, { id: 739, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 350, date: '2008/10/15', }, { id: 740, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2210, date: '2008/10/06', }, { id: 741, region: 'North America', country: 'USA', city: 'New York', amount: 3960, date: '2008/11/05', }, { id: 742, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3825, date: '2008/11/21', }, { id: 743, region: 'North America', country: 'USA', city: 'Denver', amount: 1005, date: '2008/11/13', }, { id: 744, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1905, date: '2008/11/03', }, { id: 745, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1920, date: '2008/11/16', }, { id: 746, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 940, date: '2008/11/26', }, { id: 747, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3870, date: '2008/11/06', }, { id: 748, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2650, date: '2008/11/20', }, { id: 749, region: 'Europe', country: 'GBR', city: 'London', amount: 3000, date: '2008/11/18', }, { id: 750, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5450, date: '2008/11/23', }, { id: 751, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3920, date: '2008/11/22', }, { id: 752, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2740, date: '2008/11/04', }, { id: 753, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2970, date: '2008/11/25', }, { id: 754, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 5100, date: '2008/11/07', }, { id: 755, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1475, date: '2008/11/12', }, { id: 756, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 440, date: '2008/11/05', }, { id: 757, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4245, date: '2008/11/01', }, { id: 758, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2520, date: '2008/11/13', }, { id: 759, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 570, date: '2008/11/05', }, { id: 760, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 990, date: '2008/11/26', }, { id: 761, region: 'North America', country: 'USA', city: 'Denver', amount: 3330, date: '2008/11/22', }, { id: 762, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3400, date: '2008/11/22', }, { id: 763, region: 'North America', country: 'USA', city: 'New York', amount: 4830, date: '2008/12/17', }, { id: 764, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 5075, date: '2008/12/13', }, { id: 765, region: 'North America', country: 'USA', city: 'Denver', amount: 615, date: '2008/12/07', }, { id: 766, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3840, date: '2008/12/23', }, { id: 767, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2680, date: '2008/12/19', }, { id: 768, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 980, date: '2008/12/12', }, { id: 769, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3315, date: '2008/12/11', }, { id: 770, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1240, date: '2008/12/05', }, { id: 771, region: 'Europe', country: 'GBR', city: 'London', amount: 3400, date: '2008/12/17', }, { id: 772, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7725, date: '2008/12/23', }, { id: 773, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1380, date: '2008/12/03', }, { id: 774, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2400, date: '2008/12/13', }, { id: 775, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 8160, date: '2008/12/18', }, { id: 776, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 5340, date: '2008/12/23', }, { id: 777, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1450, date: '2008/12/03', }, { id: 778, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 6180, date: '2008/12/20', }, { id: 779, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3060, date: '2008/12/17', }, { id: 780, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 3040, date: '2008/12/21', }, { id: 781, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 490, date: '2008/12/07', }, { id: 782, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1260, date: '2008/12/16', }, { id: 783, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 630, date: '2008/12/14', }, { id: 784, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 8010, date: '2008/12/07', }, { id: 785, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2460, date: '2008/12/08', }, { id: 786, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 6220, date: '2008/12/16', }, { id: 787, region: 'North America', country: 'USA', city: 'New York', amount: 8040, date: '2009/01/10', }, { id: 788, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1325, date: '2009/01/02', }, { id: 789, region: 'North America', country: 'USA', city: 'Denver', amount: 3240, date: '2009/01/09', }, { id: 790, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4305, date: '2009/01/06', }, { id: 791, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2050, date: '2009/01/03', }, { id: 792, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3140, date: '2009/01/21', }, { id: 793, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 915, date: '2009/01/13', }, { id: 794, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2030, date: '2009/01/17', }, { id: 795, region: 'Europe', country: 'GBR', city: 'London', amount: 3025, date: '2009/01/26', }, { id: 796, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3800, date: '2009/01/22', }, { id: 797, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1020, date: '2009/01/03', }, { id: 798, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4420, date: '2009/01/02', }, { id: 799, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 8490, date: '2009/01/02', }, { id: 800, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 2970, date: '2009/01/05', }, { id: 801, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5150, date: '2009/01/25', }, { id: 802, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 6260, date: '2009/01/02', }, { id: 803, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4410, date: '2009/01/26', }, { id: 804, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 900, date: '2009/01/06', }, { id: 805, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1760, date: '2009/01/17', }, { id: 806, region: 'Europe', country: 'GBR', city: 'London', amount: 3375, date: '2009/01/19', }, { id: 807, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 550, date: '2009/01/21', }, { id: 808, region: 'North America', country: 'USA', city: 'New York', amount: 3870, date: '2009/01/21', }, { id: 809, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6525, date: '2009/01/25', }, { id: 810, region: 'North America', country: 'USA', city: 'New York', amount: 6150, date: '2009/02/12', }, { id: 811, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 4625, date: '2009/02/07', }, { id: 812, region: 'North America', country: 'USA', city: 'Denver', amount: 4350, date: '2009/02/13', }, { id: 813, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1470, date: '2009/02/17', }, { id: 814, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 890, date: '2009/02/24', }, { id: 815, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4220, date: '2009/02/19', }, { id: 816, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2415, date: '2009/02/25', }, { id: 817, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1740, date: '2009/02/09', }, { id: 818, region: 'Europe', country: 'GBR', city: 'London', amount: 5775, date: '2009/02/23', }, { id: 819, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5400, date: '2009/02/07', }, { id: 820, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3580, date: '2009/02/03', }, { id: 821, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5420, date: '2009/02/06', }, { id: 822, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3390, date: '2009/02/26', }, { id: 823, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 810, date: '2009/02/21', }, { id: 824, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4200, date: '2009/02/24', }, { id: 825, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 6020, date: '2009/02/22', }, { id: 826, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2250, date: '2009/02/12', }, { id: 827, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2300, date: '2009/02/03', }, { id: 828, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2140, date: '2009/02/17', }, { id: 829, region: 'North America', country: 'USA', city: 'New York', amount: 2970, date: '2009/02/24', }, { id: 830, region: 'North America', country: 'USA', city: 'New York', amount: 6630, date: '2009/03/23', }, { id: 831, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3475, date: '2009/03/18', }, { id: 832, region: 'North America', country: 'USA', city: 'Denver', amount: 765, date: '2009/03/23', }, { id: 833, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4665, date: '2009/03/04', }, { id: 834, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2170, date: '2009/03/16', }, { id: 835, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3860, date: '2009/03/04', }, { id: 836, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1530, date: '2009/03/11', }, { id: 837, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2210, date: '2009/03/11', }, { id: 838, region: 'Europe', country: 'GBR', city: 'London', amount: 7075, date: '2009/03/12', }, { id: 839, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7025, date: '2009/03/04', }, { id: 840, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 6160, date: '2009/03/25', }, { id: 841, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3080, date: '2009/03/20', }, { id: 842, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 4950, date: '2009/03/16', }, { id: 843, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 1200, date: '2009/03/04', }, { id: 844, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4325, date: '2009/03/10', }, { id: 845, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 640, date: '2009/03/16', }, { id: 846, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 450, date: '2009/03/25', }, { id: 847, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1430, date: '2009/03/05', }, { id: 848, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2670, date: '2009/03/10', }, { id: 849, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1060, date: '2009/03/21', }, { id: 850, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1090, date: '2009/03/26', }, { id: 851, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3080, date: '2009/03/25', }, { id: 852, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2360, date: '2009/03/11', }, { id: 853, region: 'North America', country: 'USA', city: 'New York', amount: 8010, date: '2009/03/10', }, { id: 854, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 4050, date: '2009/03/09', }, { id: 855, region: 'North America', country: 'USA', city: 'New York', amount: 9030, date: '2009/04/13', }, { id: 856, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 575, date: '2009/04/11', }, { id: 857, region: 'North America', country: 'USA', city: 'Denver', amount: 345, date: '2009/04/17', }, { id: 858, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4395, date: '2009/04/13', }, { id: 859, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2160, date: '2009/04/11', }, { id: 860, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2300, date: '2009/04/24', }, { id: 861, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3465, date: '2009/04/12', }, { id: 862, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 990, date: '2009/04/11', }, { id: 863, region: 'Europe', country: 'GBR', city: 'London', amount: 6000, date: '2009/04/17', }, { id: 864, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5750, date: '2009/04/13', }, { id: 865, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2940, date: '2009/04/26', }, { id: 866, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4400, date: '2009/04/05', }, { id: 867, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2430, date: '2009/04/14', }, { id: 868, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6690, date: '2009/04/10', }, { id: 869, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7625, date: '2009/04/13', }, { id: 870, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2360, date: '2009/04/23', }, { id: 871, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1470, date: '2009/04/14', }, { id: 872, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1250, date: '2009/04/15', }, { id: 873, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1590, date: '2009/04/15', }, { id: 874, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 1410, date: '2009/04/16', }, { id: 875, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3450, date: '2009/04/16', }, { id: 876, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 510, date: '2009/04/05', }, { id: 877, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1190, date: '2009/04/04', }, { id: 878, region: 'Europe', country: 'GBR', city: 'London', amount: 700, date: '2009/04/20', }, { id: 879, region: 'North America', country: 'USA', city: 'New York', amount: 3330, date: '2009/05/12', }, { id: 880, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 4150, date: '2009/05/04', }, { id: 881, region: 'North America', country: 'USA', city: 'Denver', amount: 3375, date: '2009/05/20', }, { id: 882, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4455, date: '2009/05/19', }, { id: 883, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1380, date: '2009/05/25', }, { id: 884, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 920, date: '2009/05/23', }, { id: 885, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 795, date: '2009/05/06', }, { id: 886, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1030, date: '2009/05/13', }, { id: 887, region: 'Europe', country: 'GBR', city: 'London', amount: 5325, date: '2009/05/17', }, { id: 888, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1650, date: '2009/05/15', }, { id: 889, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2520, date: '2009/05/12', }, { id: 890, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3100, date: '2009/05/21', }, { id: 891, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6480, date: '2009/05/21', }, { id: 892, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 7890, date: '2009/05/25', }, { id: 893, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7175, date: '2009/05/03', }, { id: 894, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1260, date: '2009/05/26', }, { id: 895, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4155, date: '2009/05/20', }, { id: 896, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2370, date: '2009/05/07', }, { id: 897, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 210, date: '2009/05/26', }, { id: 898, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 760, date: '2009/05/03', }, { id: 899, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7875, date: '2009/05/17', }, { id: 900, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 460, date: '2009/05/21', }, { id: 901, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1960, date: '2009/05/21', }, { id: 902, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1725, date: '2009/05/20', }, { id: 903, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 420, date: '2009/05/24', }, { id: 904, region: 'North America', country: 'USA', city: 'New York', amount: 2640, date: '2009/06/13', }, { id: 905, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 4125, date: '2009/06/21', }, { id: 906, region: 'North America', country: 'USA', city: 'Denver', amount: 960, date: '2009/06/14', }, { id: 907, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3690, date: '2009/06/12', }, { id: 908, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2090, date: '2009/06/10', }, { id: 909, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3060, date: '2009/06/02', }, { id: 910, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4650, date: '2009/06/23', }, { id: 911, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1040, date: '2009/06/12', }, { id: 912, region: 'Europe', country: 'GBR', city: 'London', amount: 5775, date: '2009/06/11', }, { id: 913, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3200, date: '2009/06/09', }, { id: 914, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3580, date: '2009/06/04', }, { id: 915, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3400, date: '2009/06/05', }, { id: 916, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3960, date: '2009/06/23', }, { id: 917, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3810, date: '2009/06/18', }, { id: 918, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2750, date: '2009/06/22', }, { id: 919, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2660, date: '2009/06/07', }, { id: 920, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4170, date: '2009/06/23', }, { id: 921, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1330, date: '2009/06/25', }, { id: 922, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1030, date: '2009/06/26', }, { id: 923, region: 'North America', country: 'USA', city: 'New York', amount: 960, date: '2009/07/08', }, { id: 924, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2800, date: '2009/07/07', }, { id: 925, region: 'North America', country: 'USA', city: 'Denver', amount: 450, date: '2009/07/21', }, { id: 926, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2850, date: '2009/07/07', }, { id: 927, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2310, date: '2009/07/22', }, { id: 928, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5140, date: '2009/07/10', }, { id: 929, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3795, date: '2009/07/07', }, { id: 930, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2010, date: '2009/07/13', }, { id: 931, region: 'Europe', country: 'GBR', city: 'London', amount: 2200, date: '2009/07/24', }, { id: 932, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3175, date: '2009/07/15', }, { id: 933, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2020, date: '2009/07/11', }, { id: 934, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4620, date: '2009/07/14', }, { id: 935, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2340, date: '2009/07/26', }, { id: 936, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6930, date: '2009/07/10', }, { id: 937, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5075, date: '2009/07/11', }, { id: 938, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2600, date: '2009/07/17', }, { id: 939, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2265, date: '2009/07/11', }, { id: 940, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 3100, date: '2009/07/20', }, { id: 941, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2350, date: '2009/07/10', }, { id: 942, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4725, date: '2009/07/18', }, { id: 943, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2655, date: '2009/07/10', }, { id: 944, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1700, date: '2009/07/25', }, { id: 945, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3920, date: '2009/07/01', }, { id: 946, region: 'North America', country: 'USA', city: 'New York', amount: 8850, date: '2009/08/02', }, { id: 947, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7725, date: '2009/08/14', }, { id: 948, region: 'North America', country: 'USA', city: 'Denver', amount: 2280, date: '2009/08/11', }, { id: 949, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1920, date: '2009/08/23', }, { id: 950, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2280, date: '2009/08/17', }, { id: 951, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2020, date: '2009/08/13', }, { id: 952, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1725, date: '2009/08/10', }, { id: 953, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1220, date: '2009/08/21', }, { id: 954, region: 'Europe', country: 'GBR', city: 'London', amount: 6050, date: '2009/08/02', }, { id: 955, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 6575, date: '2009/08/16', }, { id: 956, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2800, date: '2009/08/09', }, { id: 957, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5860, date: '2009/08/07', }, { id: 958, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 7950, date: '2009/08/09', }, { id: 959, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3660, date: '2009/08/01', }, { id: 960, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4300, date: '2009/08/13', }, { id: 961, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2380, date: '2009/08/01', }, { id: 962, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2115, date: '2009/08/01', }, { id: 963, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1370, date: '2009/08/01', }, { id: 964, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 980, date: '2009/08/15', }, { id: 965, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5150, date: '2009/08/05', }, { id: 966, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3255, date: '2009/08/08', }, { id: 967, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 1770, date: '2009/08/22', }, { id: 968, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1680, date: '2009/08/19', }, { id: 969, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2100, date: '2009/08/14', }, { id: 970, region: 'North America', country: 'USA', city: 'New York', amount: 8100, date: '2009/09/10', }, { id: 971, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6275, date: '2009/09/16', }, { id: 972, region: 'North America', country: 'USA', city: 'Denver', amount: 1515, date: '2009/09/17', }, { id: 973, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2535, date: '2009/09/04', }, { id: 974, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1140, date: '2009/09/25', }, { id: 975, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2060, date: '2009/09/12', }, { id: 976, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3660, date: '2009/09/24', }, { id: 977, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2630, date: '2009/09/24', }, { id: 978, region: 'Europe', country: 'GBR', city: 'London', amount: 2300, date: '2009/09/23', }, { id: 979, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3100, date: '2009/09/03', }, { id: 980, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4520, date: '2009/09/08', }, { id: 981, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1060, date: '2009/09/05', }, { id: 982, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 8820, date: '2009/09/20', }, { id: 983, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8940, date: '2009/09/11', }, { id: 984, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2100, date: '2009/09/08', }, { id: 985, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1180, date: '2009/09/25', }, { id: 986, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2385, date: '2009/09/21', }, { id: 987, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2750, date: '2009/09/07', }, { id: 988, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 860, date: '2009/09/12', }, { id: 989, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 9480, date: '2009/09/26', }, { id: 990, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 3070, date: '2009/09/21', }, { id: 991, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5120, date: '2009/09/20', }, { id: 992, region: 'North America', country: 'USA', city: 'Denver', amount: 945, date: '2009/09/14', }, { id: 993, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2420, date: '2009/09/09', }, { id: 994, region: 'North America', country: 'USA', city: 'New York', amount: 1380, date: '2009/10/21', }, { id: 995, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2475, date: '2009/10/22', }, { id: 996, region: 'North America', country: 'USA', city: 'Denver', amount: 1275, date: '2009/10/09', }, { id: 997, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3705, date: '2009/10/25', }, { id: 998, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1850, date: '2009/10/14', }, { id: 999, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3380, date: '2009/10/15', }, { id: 1000, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 720, date: '2009/10/02', }, { id: 1001, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1400, date: '2009/10/23', }, { id: 1002, region: 'Europe', country: 'GBR', city: 'London', amount: 4075, date: '2009/10/10', }, { id: 1003, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2450, date: '2009/10/10', }, { id: 1004, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1040, date: '2009/10/24', }, { id: 1005, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2320, date: '2009/10/21', }, { id: 1006, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2490, date: '2009/10/13', }, { id: 1007, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8430, date: '2009/10/04', }, { id: 1008, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5625, date: '2009/10/26', }, { id: 1009, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 6260, date: '2009/10/03', }, { id: 1010, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 930, date: '2009/10/23', }, { id: 1011, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2820, date: '2009/10/08', }, { id: 1012, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2020, date: '2009/10/24', }, { id: 1013, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1540, date: '2009/10/26', }, { id: 1014, region: 'North America', country: 'USA', city: 'Denver', amount: 2535, date: '2009/10/15', }, { id: 1015, region: 'North America', country: 'USA', city: 'Denver', amount: 4455, date: '2009/10/18', }, { id: 1016, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2380, date: '2009/10/26', }, { id: 1017, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6800, date: '2009/10/25', }, { id: 1018, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2300, date: '2009/10/01', }, { id: 1019, region: 'North America', country: 'USA', city: 'New York', amount: 9330, date: '2009/11/07', }, { id: 1020, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3825, date: '2009/11/21', }, { id: 1021, region: 'North America', country: 'USA', city: 'Denver', amount: 2400, date: '2009/11/02', }, { id: 1022, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2055, date: '2009/11/16', }, { id: 1023, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 440, date: '2009/11/10', }, { id: 1024, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3020, date: '2009/11/09', }, { id: 1025, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3990, date: '2009/11/19', }, { id: 1026, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1110, date: '2009/11/06', }, { id: 1027, region: 'Europe', country: 'GBR', city: 'London', amount: 6475, date: '2009/11/05', }, { id: 1028, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 700, date: '2009/11/14', }, { id: 1029, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3840, date: '2009/11/18', }, { id: 1030, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 500, date: '2009/11/18', }, { id: 1031, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 8730, date: '2009/11/09', }, { id: 1032, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 5580, date: '2009/11/19', }, { id: 1033, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1100, date: '2009/11/18', }, { id: 1034, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4340, date: '2009/11/21', }, { id: 1035, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3315, date: '2009/11/13', }, { id: 1036, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1770, date: '2009/11/23', }, { id: 1037, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2260, date: '2009/11/12', }, { id: 1038, region: 'North America', country: 'USA', city: 'New York', amount: 1620, date: '2009/11/22', }, { id: 1039, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4680, date: '2009/11/10', }, { id: 1040, region: 'Europe', country: 'GBR', city: 'London', amount: 5450, date: '2009/11/06', }, { id: 1041, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1550, date: '2009/11/02', }, { id: 1042, region: 'North America', country: 'USA', city: 'New York', amount: 840, date: '2009/12/07', }, { id: 1043, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6350, date: '2009/12/05', }, { id: 1044, region: 'North America', country: 'USA', city: 'Denver', amount: 2055, date: '2009/12/19', }, { id: 1045, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1620, date: '2009/12/08', }, { id: 1046, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2750, date: '2009/12/19', }, { id: 1047, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4320, date: '2009/12/14', }, { id: 1048, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2655, date: '2009/12/15', }, { id: 1049, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1890, date: '2009/12/15', }, { id: 1050, region: 'Europe', country: 'GBR', city: 'London', amount: 4950, date: '2009/12/07', }, { id: 1051, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7275, date: '2009/12/23', }, { id: 1052, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 920, date: '2009/12/07', }, { id: 1053, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 520, date: '2009/12/25', }, { id: 1054, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 5100, date: '2009/12/09', }, { id: 1055, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8700, date: '2009/12/01', }, { id: 1056, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1675, date: '2009/12/17', }, { id: 1057, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2600, date: '2009/12/26', }, { id: 1058, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1935, date: '2009/12/06', }, { id: 1059, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 300, date: '2009/12/14', }, { id: 1060, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1560, date: '2009/12/16', }, { id: 1061, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1700, date: '2009/12/10', }, { id: 1062, region: 'North America', country: 'USA', city: 'New York', amount: 1170, date: '2010/01/19', }, { id: 1063, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3700, date: '2010/01/22', }, { id: 1064, region: 'North America', country: 'USA', city: 'Denver', amount: 3795, date: '2010/01/21', }, { id: 1065, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3630, date: '2010/01/15', }, { id: 1066, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 950, date: '2010/01/04', }, { id: 1067, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5680, date: '2010/01/22', }, { id: 1068, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 675, date: '2010/01/23', }, { id: 1069, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1490, date: '2010/01/13', }, { id: 1070, region: 'Europe', country: 'GBR', city: 'London', amount: 5100, date: '2010/01/13', }, { id: 1071, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3700, date: '2010/01/02', }, { id: 1072, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3960, date: '2010/01/04', }, { id: 1073, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5660, date: '2010/01/05', }, { id: 1074, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2850, date: '2010/01/05', }, { id: 1075, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8010, date: '2010/01/07', }, { id: 1076, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7175, date: '2010/01/24', }, { id: 1077, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3400, date: '2010/01/05', }, { id: 1078, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3540, date: '2010/01/07', }, { id: 1079, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2530, date: '2010/01/19', }, { id: 1080, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2370, date: '2010/01/14', }, { id: 1081, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4575, date: '2010/01/12', }, { id: 1082, region: 'North America', country: 'USA', city: 'New York', amount: 2640, date: '2010/02/07', }, { id: 1083, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6250, date: '2010/02/02', }, { id: 1084, region: 'North America', country: 'USA', city: 'Denver', amount: 2130, date: '2010/02/05', }, { id: 1085, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3885, date: '2010/02/04', }, { id: 1086, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1990, date: '2010/02/21', }, { id: 1087, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2760, date: '2010/02/01', }, { id: 1088, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2295, date: '2010/02/12', }, { id: 1089, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1730, date: '2010/02/12', }, { id: 1090, region: 'Europe', country: 'GBR', city: 'London', amount: 7700, date: '2010/02/23', }, { id: 1091, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2625, date: '2010/02/22', }, { id: 1092, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5760, date: '2010/02/20', }, { id: 1093, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3280, date: '2010/02/20', }, { id: 1094, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 9120, date: '2010/02/06', }, { id: 1095, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 2580, date: '2010/02/03', }, { id: 1096, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7150, date: '2010/02/06', }, { id: 1097, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2500, date: '2010/02/14', }, { id: 1098, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2730, date: '2010/02/06', }, { id: 1099, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 530, date: '2010/02/01', }, { id: 1100, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 550, date: '2010/02/13', }, { id: 1101, region: 'North America', country: 'USA', city: 'New York', amount: 2640, date: '2010/03/23', }, { id: 1102, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6050, date: '2010/03/16', }, { id: 1103, region: 'North America', country: 'USA', city: 'Denver', amount: 2040, date: '2010/03/16', }, { id: 1104, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2205, date: '2010/03/23', }, { id: 1105, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2590, date: '2010/03/18', }, { id: 1106, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3800, date: '2010/03/25', }, { id: 1107, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3375, date: '2010/03/10', }, { id: 1108, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1000, date: '2010/03/08', }, { id: 1109, region: 'Europe', country: 'GBR', city: 'London', amount: 2000, date: '2010/03/06', }, { id: 1110, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5900, date: '2010/03/03', }, { id: 1111, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 760, date: '2010/03/11', }, { id: 1112, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 420, date: '2010/03/17', }, { id: 1113, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6120, date: '2010/03/15', }, { id: 1114, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 7920, date: '2010/03/17', }, { id: 1115, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2425, date: '2010/03/12', }, { id: 1116, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2000, date: '2010/03/08', }, { id: 1117, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3015, date: '2010/03/07', }, { id: 1118, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 830, date: '2010/03/07', }, { id: 1119, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2090, date: '2010/03/26', }, { id: 1120, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3100, date: '2010/03/13', }, { id: 1121, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2805, date: '2010/03/26', }, { id: 1122, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 750, date: '2010/03/05', }, { id: 1123, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3850, date: '2010/03/09', }, { id: 1124, region: 'Europe', country: 'GBR', city: 'London', amount: 6150, date: '2010/03/05', }, { id: 1125, region: 'North America', country: 'USA', city: 'New York', amount: 2880, date: '2010/04/14', }, { id: 1126, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 725, date: '2010/04/11', }, { id: 1127, region: 'North America', country: 'USA', city: 'Denver', amount: 585, date: '2010/04/21', }, { id: 1128, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3075, date: '2010/04/04', }, { id: 1129, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1060, date: '2010/04/17', }, { id: 1130, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 620, date: '2010/04/19', }, { id: 1131, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3795, date: '2010/04/15', }, { id: 1132, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 3100, date: '2010/04/21', }, { id: 1133, region: 'Europe', country: 'GBR', city: 'London', amount: 4050, date: '2010/04/16', }, { id: 1134, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7475, date: '2010/04/03', }, { id: 1135, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2540, date: '2010/04/05', }, { id: 1136, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 6180, date: '2010/04/19', }, { id: 1137, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 8190, date: '2010/04/11', }, { id: 1138, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6510, date: '2010/04/22', }, { id: 1139, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3225, date: '2010/04/17', }, { id: 1140, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3380, date: '2010/04/20', }, { id: 1141, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2520, date: '2010/04/15', }, { id: 1142, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 3190, date: '2010/04/07', }, { id: 1143, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 3190, date: '2010/04/10', }, { id: 1144, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2140, date: '2010/04/10', }, { id: 1145, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4620, date: '2010/04/20', }, { id: 1146, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 3100, date: '2010/04/18', }, { id: 1147, region: 'North America', country: 'USA', city: 'New York', amount: 9060, date: '2010/05/19', }, { id: 1148, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6375, date: '2010/05/09', }, { id: 1149, region: 'North America', country: 'USA', city: 'Denver', amount: 375, date: '2010/05/11', }, { id: 1150, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1410, date: '2010/05/26', }, { id: 1151, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2070, date: '2010/05/14', }, { id: 1152, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1680, date: '2010/05/19', }, { id: 1153, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1965, date: '2010/05/06', }, { id: 1154, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2770, date: '2010/05/02', }, { id: 1155, region: 'Europe', country: 'GBR', city: 'London', amount: 7375, date: '2010/05/10', }, { id: 1156, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5200, date: '2010/05/25', }, { id: 1157, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4340, date: '2010/05/22', }, { id: 1158, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5800, date: '2010/05/11', }, { id: 1159, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6210, date: '2010/05/06', }, { id: 1160, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3570, date: '2010/05/12', }, { id: 1161, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4925, date: '2010/05/22', }, { id: 1162, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 5260, date: '2010/05/11', }, { id: 1163, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 465, date: '2010/05/21', }, { id: 1164, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1730, date: '2010/05/18', }, { id: 1165, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2040, date: '2010/05/26', }, { id: 1166, region: 'North America', country: 'USA', city: 'New York', amount: 6960, date: '2010/06/10', }, { id: 1167, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1250, date: '2010/06/05', }, { id: 1168, region: 'North America', country: 'USA', city: 'Denver', amount: 2985, date: '2010/06/03', }, { id: 1169, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4185, date: '2010/06/24', }, { id: 1170, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 450, date: '2010/06/04', }, { id: 1171, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 6340, date: '2010/06/09', }, { id: 1172, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2895, date: '2010/06/07', }, { id: 1173, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2130, date: '2010/06/11', }, { id: 1174, region: 'Europe', country: 'GBR', city: 'London', amount: 6925, date: '2010/06/25', }, { id: 1175, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1775, date: '2010/06/11', }, { id: 1176, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2700, date: '2010/06/16', }, { id: 1177, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1720, date: '2010/06/18', }, { id: 1178, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6090, date: '2010/06/07', }, { id: 1179, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8970, date: '2010/06/07', }, { id: 1180, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1025, date: '2010/06/13', }, { id: 1181, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 700, date: '2010/06/13', }, { id: 1182, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2805, date: '2010/06/18', }, { id: 1183, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 3120, date: '2010/06/02', }, { id: 1184, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1120, date: '2010/06/09', }, { id: 1185, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3420, date: '2010/06/06', }, { id: 1186, region: 'North America', country: 'USA', city: 'New York', amount: 1380, date: '2010/06/26', }, { id: 1187, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1860, date: '2010/06/13', }, { id: 1188, region: 'North America', country: 'USA', city: 'New York', amount: 3360, date: '2010/07/06', }, { id: 1189, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7025, date: '2010/07/26', }, { id: 1190, region: 'North America', country: 'USA', city: 'Denver', amount: 795, date: '2010/07/17', }, { id: 1191, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1245, date: '2010/07/20', }, { id: 1192, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 3140, date: '2010/07/08', }, { id: 1193, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 820, date: '2010/07/08', }, { id: 1194, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1740, date: '2010/07/04', }, { id: 1195, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1880, date: '2010/07/22', }, { id: 1196, region: 'Europe', country: 'GBR', city: 'London', amount: 4125, date: '2010/07/10', }, { id: 1197, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2025, date: '2010/07/12', }, { id: 1198, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5260, date: '2010/07/24', }, { id: 1199, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2200, date: '2010/07/03', }, { id: 1200, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 840, date: '2010/07/05', }, { id: 1201, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 630, date: '2010/07/15', }, { id: 1202, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3150, date: '2010/07/06', }, { id: 1203, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2000, date: '2010/07/01', }, { id: 1204, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3375, date: '2010/07/22', }, { id: 1205, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 230, date: '2010/07/09', }, { id: 1206, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 200, date: '2010/07/01', }, { id: 1207, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2625, date: '2010/07/26', }, { id: 1208, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2870, date: '2010/07/16', }, { id: 1209, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5120, date: '2010/07/17', }, { id: 1210, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 670, date: '2010/07/24', }, { id: 1211, region: 'North America', country: 'USA', city: 'New York', amount: 6240, date: '2010/08/26', }, { id: 1212, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7350, date: '2010/08/20', }, { id: 1213, region: 'North America', country: 'USA', city: 'Denver', amount: 4095, date: '2010/08/26', }, { id: 1214, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4155, date: '2010/08/12', }, { id: 1215, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 460, date: '2010/08/14', }, { id: 1216, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1140, date: '2010/08/14', }, { id: 1217, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 405, date: '2010/08/13', }, { id: 1218, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 690, date: '2010/08/18', }, { id: 1219, region: 'Europe', country: 'GBR', city: 'London', amount: 6100, date: '2010/08/12', }, { id: 1220, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1150, date: '2010/08/17', }, { id: 1221, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3820, date: '2010/08/23', }, { id: 1222, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2860, date: '2010/08/13', }, { id: 1223, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 960, date: '2010/08/02', }, { id: 1224, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3690, date: '2010/08/09', }, { id: 1225, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5300, date: '2010/08/14', }, { id: 1226, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3660, date: '2010/08/05', }, { id: 1227, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 870, date: '2010/08/03', }, { id: 1228, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1280, date: '2010/08/02', }, { id: 1229, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2150, date: '2010/08/08', }, { id: 1230, region: 'North America', country: 'USA', city: 'New York', amount: 7110, date: '2010/09/12', }, { id: 1231, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7325, date: '2010/09/21', }, { id: 1232, region: 'North America', country: 'USA', city: 'Denver', amount: 2310, date: '2010/09/14', }, { id: 1233, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4110, date: '2010/09/21', }, { id: 1234, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1400, date: '2010/09/09', }, { id: 1235, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3420, date: '2010/09/21', }, { id: 1236, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2235, date: '2010/09/13', }, { id: 1237, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2210, date: '2010/09/07', }, { id: 1238, region: 'Europe', country: 'GBR', city: 'London', amount: 1200, date: '2010/09/04', }, { id: 1239, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5950, date: '2010/09/04', }, { id: 1240, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 460, date: '2010/09/04', }, { id: 1241, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1740, date: '2010/09/25', }, { id: 1242, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1320, date: '2010/09/03', }, { id: 1243, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 1920, date: '2010/09/16', }, { id: 1244, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4275, date: '2010/09/09', }, { id: 1245, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 5600, date: '2010/09/17', }, { id: 1246, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1125, date: '2010/09/19', }, { id: 1247, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1460, date: '2010/09/05', }, { id: 1248, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2970, date: '2010/09/05', }, { id: 1249, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1425, date: '2010/09/21', }, { id: 1250, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2300, date: '2010/09/13', }, { id: 1251, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1400, date: '2010/09/10', }, { id: 1252, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1660, date: '2010/09/21', }, { id: 1253, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 4800, date: '2010/09/16', }, { id: 1254, region: 'North America', country: 'USA', city: 'New York', amount: 3750, date: '2010/10/20', }, { id: 1255, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2125, date: '2010/10/04', }, { id: 1256, region: 'North America', country: 'USA', city: 'Denver', amount: 3585, date: '2010/10/06', }, { id: 1257, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2520, date: '2010/10/05', }, { id: 1258, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2430, date: '2010/10/02', }, { id: 1259, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4660, date: '2010/10/10', }, { id: 1260, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2730, date: '2010/10/08', }, { id: 1261, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2800, date: '2010/10/26', }, { id: 1262, region: 'Europe', country: 'GBR', city: 'London', amount: 1600, date: '2010/10/11', }, { id: 1263, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 4850, date: '2010/10/19', }, { id: 1264, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 6060, date: '2010/10/26', }, { id: 1265, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 980, date: '2010/10/10', }, { id: 1266, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3120, date: '2010/10/07', }, { id: 1267, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6450, date: '2010/10/09', }, { id: 1268, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7075, date: '2010/10/08', }, { id: 1269, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3580, date: '2010/10/22', }, { id: 1270, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1170, date: '2010/10/05', }, { id: 1271, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1630, date: '2010/10/05', }, { id: 1272, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2100, date: '2010/10/01', }, { id: 1273, region: 'Europe', country: 'GBR', city: 'London', amount: 4450, date: '2010/10/23', }, { id: 1274, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8610, date: '2010/10/15', }, { id: 1275, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6600, date: '2010/10/08', }, { id: 1276, region: 'North America', country: 'USA', city: 'New York', amount: 4890, date: '2010/11/07', }, { id: 1277, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3700, date: '2010/11/05', }, { id: 1278, region: 'North America', country: 'USA', city: 'Denver', amount: 525, date: '2010/11/20', }, { id: 1279, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2745, date: '2010/11/14', }, { id: 1280, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 320, date: '2010/11/14', }, { id: 1281, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1540, date: '2010/11/06', }, { id: 1282, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4605, date: '2010/11/21', }, { id: 1283, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 750, date: '2010/11/20', }, { id: 1284, region: 'Europe', country: 'GBR', city: 'London', amount: 7125, date: '2010/11/26', }, { id: 1285, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 600, date: '2010/11/16', }, { id: 1286, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2720, date: '2010/11/06', }, { id: 1287, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1520, date: '2010/11/11', }, { id: 1288, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3450, date: '2010/11/04', }, { id: 1289, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 1470, date: '2010/11/14', }, { id: 1290, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2775, date: '2010/11/19', }, { id: 1291, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4280, date: '2010/11/13', }, { id: 1292, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 855, date: '2010/11/06', }, { id: 1293, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2540, date: '2010/11/20', }, { id: 1294, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 440, date: '2010/11/10', }, { id: 1295, region: 'Europe', country: 'GBR', city: 'London', amount: 4825, date: '2010/11/13', }, { id: 1296, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3015, date: '2010/11/26', }, { id: 1297, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7300, date: '2010/11/03', }, { id: 1298, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6725, date: '2010/11/24', }, { id: 1299, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4975, date: '2010/11/02', }, { id: 1300, region: 'North America', country: 'USA', city: 'New York', amount: 5250, date: '2010/12/21', }, { id: 1301, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7650, date: '2010/12/11', }, { id: 1302, region: 'North America', country: 'USA', city: 'Denver', amount: 3000, date: '2010/12/05', }, { id: 1303, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1080, date: '2010/12/12', }, { id: 1304, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1280, date: '2010/12/05', }, { id: 1305, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3840, date: '2010/12/02', }, { id: 1306, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1770, date: '2010/12/17', }, { id: 1307, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1580, date: '2010/12/21', }, { id: 1308, region: 'Europe', country: 'GBR', city: 'London', amount: 7900, date: '2010/12/22', }, { id: 1309, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 6500, date: '2010/12/08', }, { id: 1310, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1220, date: '2010/12/10', }, { id: 1311, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 600, date: '2010/12/22', }, { id: 1312, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 5700, date: '2010/12/23', }, { id: 1313, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 5640, date: '2010/12/11', }, { id: 1314, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1725, date: '2010/12/10', }, { id: 1315, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3040, date: '2010/12/16', }, { id: 1316, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3960, date: '2010/12/08', }, { id: 1317, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1650, date: '2010/12/05', }, { id: 1318, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1240, date: '2010/12/04', }, { id: 1319, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 350, date: '2010/12/25', }, { id: 1320, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8370, date: '2010/12/20', }, { id: 1321, region: 'Europe', country: 'GBR', city: 'London', amount: 2175, date: '2010/12/20', }, { id: 1322, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1995, date: '2010/12/04', }, { id: 1323, region: 'North America', country: 'USA', city: 'New York', amount: 4470, date: '2011/01/19', }, { id: 1324, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1075, date: '2011/01/24', }, { id: 1325, region: 'North America', country: 'USA', city: 'Denver', amount: 1875, date: '2011/01/05', }, { id: 1326, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4785, date: '2011/01/04', }, { id: 1327, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2230, date: '2011/01/21', }, { id: 1328, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3720, date: '2011/01/21', }, { id: 1329, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4005, date: '2011/01/03', }, { id: 1330, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 810, date: '2011/01/07', }, { id: 1331, region: 'Europe', country: 'GBR', city: 'London', amount: 2025, date: '2011/01/15', }, { id: 1332, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1550, date: '2011/01/10', }, { id: 1333, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3060, date: '2011/01/23', }, { id: 1334, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3840, date: '2011/01/20', }, { id: 1335, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 4680, date: '2011/01/10', }, { id: 1336, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 2400, date: '2011/01/05', }, { id: 1337, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7850, date: '2011/01/18', }, { id: 1338, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2960, date: '2011/01/14', }, { id: 1339, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4095, date: '2011/01/12', }, { id: 1340, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2730, date: '2011/01/16', }, { id: 1341, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1640, date: '2011/01/07', }, { id: 1342, region: 'North America', country: 'USA', city: 'New York', amount: 5310, date: '2011/02/08', }, { id: 1343, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3825, date: '2011/02/17', }, { id: 1344, region: 'North America', country: 'USA', city: 'Denver', amount: 2445, date: '2011/02/06', }, { id: 1345, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4590, date: '2011/02/07', }, { id: 1346, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1000, date: '2011/02/25', }, { id: 1347, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4460, date: '2011/02/06', }, { id: 1348, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 585, date: '2011/02/03', }, { id: 1349, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1230, date: '2011/02/12', }, { id: 1350, region: 'Europe', country: 'GBR', city: 'London', amount: 1725, date: '2011/02/09', }, { id: 1351, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 6975, date: '2011/02/06', }, { id: 1352, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5760, date: '2011/02/09', }, { id: 1353, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 6100, date: '2011/02/21', }, { id: 1354, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 9390, date: '2011/02/17', }, { id: 1355, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3120, date: '2011/02/03', }, { id: 1356, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2650, date: '2011/02/09', }, { id: 1357, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4120, date: '2011/02/09', }, { id: 1358, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3885, date: '2011/02/26', }, { id: 1359, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2660, date: '2011/02/26', }, { id: 1360, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1570, date: '2011/02/22', }, { id: 1361, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2330, date: '2011/02/06', }, { id: 1362, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4080, date: '2011/02/02', }, { id: 1363, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6650, date: '2011/02/07', }, { id: 1364, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 1860, date: '2011/02/09', }, { id: 1365, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4720, date: '2011/02/07', }, { id: 1366, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3275, date: '2011/02/16', }, { id: 1367, region: 'North America', country: 'USA', city: 'New York', amount: 5490, date: '2011/03/11', }, { id: 1368, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1100, date: '2011/03/19', }, { id: 1369, region: 'North America', country: 'USA', city: 'Denver', amount: 4395, date: '2011/03/19', }, { id: 1370, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4410, date: '2011/03/07', }, { id: 1371, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1420, date: '2011/03/09', }, { id: 1372, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2360, date: '2011/03/14', }, { id: 1373, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1365, date: '2011/03/04', }, { id: 1374, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1600, date: '2011/03/05', }, { id: 1375, region: 'Europe', country: 'GBR', city: 'London', amount: 5225, date: '2011/03/07', }, { id: 1376, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 4525, date: '2011/03/12', }, { id: 1377, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 580, date: '2011/03/15', }, { id: 1378, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1180, date: '2011/03/08', }, { id: 1379, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 7740, date: '2011/03/17', }, { id: 1380, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3630, date: '2011/03/22', }, { id: 1381, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6325, date: '2011/03/23', }, { id: 1382, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 6340, date: '2011/03/12', }, { id: 1383, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 990, date: '2011/03/11', }, { id: 1384, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1820, date: '2011/03/10', }, { id: 1385, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 3080, date: '2011/03/13', }, { id: 1386, region: 'Europe', country: 'GBR', city: 'London', amount: 1700, date: '2011/03/18', }, { id: 1387, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 540, date: '2011/03/12', }, { id: 1388, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7600, date: '2011/03/01', }, { id: 1389, region: 'North America', country: 'USA', city: 'New York', amount: 1260, date: '2011/04/06', }, { id: 1390, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2250, date: '2011/04/25', }, { id: 1391, region: 'North America', country: 'USA', city: 'Denver', amount: 2565, date: '2011/04/09', }, { id: 1392, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4515, date: '2011/04/18', }, { id: 1393, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2080, date: '2011/04/09', }, { id: 1394, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4340, date: '2011/04/26', }, { id: 1395, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2280, date: '2011/04/25', }, { id: 1396, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2010, date: '2011/04/05', }, { id: 1397, region: 'Europe', country: 'GBR', city: 'London', amount: 950, date: '2011/04/12', }, { id: 1398, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3225, date: '2011/04/16', }, { id: 1399, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5280, date: '2011/04/04', }, { id: 1400, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4540, date: '2011/04/12', }, { id: 1401, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 7470, date: '2011/04/25', }, { id: 1402, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6780, date: '2011/04/23', }, { id: 1403, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2400, date: '2011/04/04', }, { id: 1404, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4800, date: '2011/04/10', }, { id: 1405, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3210, date: '2011/04/03', }, { id: 1406, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1220, date: '2011/04/01', }, { id: 1407, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1130, date: '2011/04/11', }, { id: 1408, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2130, date: '2011/04/26', }, { id: 1409, region: 'North America', country: 'USA', city: 'New York', amount: 7620, date: '2011/05/03', }, { id: 1410, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2275, date: '2011/05/11', }, { id: 1411, region: 'North America', country: 'USA', city: 'Denver', amount: 3000, date: '2011/05/07', }, { id: 1412, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1830, date: '2011/05/14', }, { id: 1413, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1810, date: '2011/05/22', }, { id: 1414, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4520, date: '2011/05/05', }, { id: 1415, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3765, date: '2011/05/11', }, { id: 1416, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1700, date: '2011/05/21', }, { id: 1417, region: 'Europe', country: 'GBR', city: 'London', amount: 3325, date: '2011/05/26', }, { id: 1418, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 6975, date: '2011/05/04', }, { id: 1419, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2600, date: '2011/05/03', }, { id: 1420, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5180, date: '2011/05/19', }, { id: 1421, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6120, date: '2011/05/17', }, { id: 1422, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8460, date: '2011/05/22', }, { id: 1423, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5250, date: '2011/05/10', }, { id: 1424, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 5940, date: '2011/05/08', }, { id: 1425, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1350, date: '2011/05/18', }, { id: 1426, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 880, date: '2011/05/15', }, { id: 1427, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 3070, date: '2011/05/04', }, { id: 1428, region: 'North America', country: 'USA', city: 'New York', amount: 6390, date: '2011/06/08', }, { id: 1429, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 4425, date: '2011/06/04', }, { id: 1430, region: 'North America', country: 'USA', city: 'Denver', amount: 2400, date: '2011/06/23', }, { id: 1431, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2280, date: '2011/06/17', }, { id: 1432, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 990, date: '2011/06/24', }, { id: 1433, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4600, date: '2011/06/12', }, { id: 1434, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1740, date: '2011/06/14', }, { id: 1435, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1910, date: '2011/06/17', }, { id: 1436, region: 'Europe', country: 'GBR', city: 'London', amount: 3675, date: '2011/06/14', }, { id: 1437, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1000, date: '2011/06/18', }, { id: 1438, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2660, date: '2011/06/16', }, { id: 1439, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1120, date: '2011/06/23', }, { id: 1440, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1320, date: '2011/06/25', }, { id: 1441, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3120, date: '2011/06/04', }, { id: 1442, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6350, date: '2011/06/21', }, { id: 1443, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4780, date: '2011/06/09', }, { id: 1444, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2415, date: '2011/06/26', }, { id: 1445, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2750, date: '2011/06/08', }, { id: 1446, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2490, date: '2011/06/10', }, { id: 1447, region: 'North America', country: 'USA', city: 'New York', amount: 8640, date: '2011/07/26', }, { id: 1448, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6600, date: '2011/07/12', }, { id: 1449, region: 'North America', country: 'USA', city: 'Denver', amount: 360, date: '2011/07/19', }, { id: 1450, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2730, date: '2011/07/16', }, { id: 1451, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2420, date: '2011/07/09', }, { id: 1452, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1920, date: '2011/07/09', }, { id: 1453, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3090, date: '2011/07/25', }, { id: 1454, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1590, date: '2011/07/12', }, { id: 1455, region: 'Europe', country: 'GBR', city: 'London', amount: 5350, date: '2011/07/12', }, { id: 1456, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 6200, date: '2011/07/25', }, { id: 1457, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4120, date: '2011/07/05', }, { id: 1458, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3420, date: '2011/07/06', }, { id: 1459, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3030, date: '2011/07/07', }, { id: 1460, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 1890, date: '2011/07/15', }, { id: 1461, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 625, date: '2011/07/01', }, { id: 1462, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 6240, date: '2011/07/01', }, { id: 1463, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3720, date: '2011/07/13', }, { id: 1464, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 740, date: '2011/07/16', }, { id: 1465, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1680, date: '2011/07/04', }, { id: 1466, region: 'North America', country: 'USA', city: 'Denver', amount: 3720, date: '2011/07/07', }, { id: 1467, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2870, date: '2011/07/16', }, { id: 1468, region: 'North America', country: 'USA', city: 'Denver', amount: 2880, date: '2011/07/19', }, { id: 1469, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 470, date: '2011/07/17', }, { id: 1470, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 3040, date: '2011/07/11', }, { id: 1471, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1215, date: '2011/07/20', }, { id: 1472, region: 'North America', country: 'USA', city: 'New York', amount: 6000, date: '2011/08/23', }, { id: 1473, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2025, date: '2011/08/06', }, { id: 1474, region: 'North America', country: 'USA', city: 'Denver', amount: 3555, date: '2011/08/01', }, { id: 1475, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1215, date: '2011/08/25', }, { id: 1476, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1720, date: '2011/08/06', }, { id: 1477, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3340, date: '2011/08/15', }, { id: 1478, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 825, date: '2011/08/18', }, { id: 1479, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2740, date: '2011/08/16', }, { id: 1480, region: 'Europe', country: 'GBR', city: 'London', amount: 1300, date: '2011/08/25', }, { id: 1481, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5850, date: '2011/08/26', }, { id: 1482, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5620, date: '2011/08/11', }, { id: 1483, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2420, date: '2011/08/20', }, { id: 1484, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 8970, date: '2011/08/26', }, { id: 1485, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 2130, date: '2011/08/16', }, { id: 1486, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6975, date: '2011/08/26', }, { id: 1487, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 5040, date: '2011/08/17', }, { id: 1488, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1695, date: '2011/08/09', }, { id: 1489, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 700, date: '2011/08/06', }, { id: 1490, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2350, date: '2011/08/22', }, { id: 1491, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 780, date: '2011/08/10', }, { id: 1492, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 5250, date: '2011/08/14', }, { id: 1493, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6090, date: '2011/08/22', }, { id: 1494, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3705, date: '2011/08/02', }, { id: 1495, region: 'North America', country: 'USA', city: 'New York', amount: 5610, date: '2011/09/01', }, { id: 1496, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 950, date: '2011/09/25', }, { id: 1497, region: 'North America', country: 'USA', city: 'Denver', amount: 2475, date: '2011/09/19', }, { id: 1498, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4545, date: '2011/09/23', }, { id: 1499, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2720, date: '2011/09/06', }, { id: 1500, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5120, date: '2011/09/10', }, { id: 1501, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1965, date: '2011/09/21', }, { id: 1502, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2290, date: '2011/09/04', }, { id: 1503, region: 'Europe', country: 'GBR', city: 'London', amount: 3775, date: '2011/09/13', }, { id: 1504, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5275, date: '2011/09/05', }, { id: 1505, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1500, date: '2011/09/01', }, { id: 1506, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5000, date: '2011/09/26', }, { id: 1507, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 4890, date: '2011/09/19', }, { id: 1508, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8970, date: '2011/09/22', }, { id: 1509, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 525, date: '2011/09/07', }, { id: 1510, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2200, date: '2011/09/07', }, { id: 1511, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4470, date: '2011/09/08', }, { id: 1512, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2140, date: '2011/09/02', }, { id: 1513, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 640, date: '2011/09/25', }, { id: 1514, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 290, date: '2011/09/10', }, { id: 1515, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2220, date: '2011/09/15', }, { id: 1516, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3575, date: '2011/09/17', }, { id: 1517, region: 'North America', country: 'USA', city: 'New York', amount: 5430, date: '2011/10/06', }, { id: 1518, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2950, date: '2011/10/23', }, { id: 1519, region: 'North America', country: 'USA', city: 'Denver', amount: 1050, date: '2011/10/04', }, { id: 1520, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1365, date: '2011/10/11', }, { id: 1521, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1940, date: '2011/10/17', }, { id: 1522, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3220, date: '2011/10/19', }, { id: 1523, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1725, date: '2011/10/04', }, { id: 1524, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2790, date: '2011/10/19', }, { id: 1525, region: 'Europe', country: 'GBR', city: 'London', amount: 3600, date: '2011/10/26', }, { id: 1526, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7950, date: '2011/10/09', }, { id: 1527, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5260, date: '2011/10/08', }, { id: 1528, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3300, date: '2011/10/21', }, { id: 1529, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 7260, date: '2011/10/24', }, { id: 1530, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8940, date: '2011/10/07', }, { id: 1531, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4100, date: '2011/10/11', }, { id: 1532, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 6360, date: '2011/10/09', }, { id: 1533, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4410, date: '2011/10/01', }, { id: 1534, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 3010, date: '2011/10/06', }, { id: 1535, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1600, date: '2011/10/07', }, { id: 1536, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1230, date: '2011/10/24', }, { id: 1537, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2265, date: '2011/10/08', }, { id: 1538, region: 'North America', country: 'USA', city: 'New York', amount: 8730, date: '2011/11/03', }, { id: 1539, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1025, date: '2011/11/05', }, { id: 1540, region: 'North America', country: 'USA', city: 'Denver', amount: 4215, date: '2011/11/05', }, { id: 1541, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2655, date: '2011/11/24', }, { id: 1542, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1370, date: '2011/11/23', }, { id: 1543, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4660, date: '2011/11/23', }, { id: 1544, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3780, date: '2011/11/03', }, { id: 1545, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1200, date: '2011/11/21', }, { id: 1546, region: 'Europe', country: 'GBR', city: 'London', amount: 4475, date: '2011/11/25', }, { id: 1547, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3400, date: '2011/11/07', }, { id: 1548, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1480, date: '2011/11/07', }, { id: 1549, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2640, date: '2011/11/16', }, { id: 1550, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 5670, date: '2011/11/06', }, { id: 1551, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6870, date: '2011/11/17', }, { id: 1552, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7225, date: '2011/11/24', }, { id: 1553, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3240, date: '2011/11/05', }, { id: 1554, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 870, date: '2011/11/03', }, { id: 1555, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1760, date: '2011/11/05', }, { id: 1556, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 3010, date: '2011/11/07', }, { id: 1557, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2020, date: '2011/11/18', }, { id: 1558, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1690, date: '2011/11/09', }, { id: 1559, region: 'North America', country: 'USA', city: 'Denver', amount: 1485, date: '2011/11/13', }, { id: 1560, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3300, date: '2011/11/09', }, { id: 1561, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1200, date: '2011/11/06', }, { id: 1562, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2460, date: '2011/11/02', }, { id: 1563, region: 'North America', country: 'USA', city: 'New York', amount: 8280, date: '2011/12/09', }, { id: 1564, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 4875, date: '2011/12/12', }, { id: 1565, region: 'North America', country: 'USA', city: 'Denver', amount: 4005, date: '2011/12/05', }, { id: 1566, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 705, date: '2011/12/22', }, { id: 1567, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2310, date: '2011/12/21', }, { id: 1568, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2380, date: '2011/12/09', }, { id: 1569, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3375, date: '2011/12/26', }, { id: 1570, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1220, date: '2011/12/11', }, { id: 1571, region: 'Europe', country: 'GBR', city: 'London', amount: 2275, date: '2011/12/07', }, { id: 1572, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3800, date: '2011/12/23', }, { id: 1573, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 960, date: '2011/12/02', }, { id: 1574, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2180, date: '2011/12/23', }, { id: 1575, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3660, date: '2011/12/04', }, { id: 1576, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6270, date: '2011/12/10', }, { id: 1577, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1250, date: '2011/12/17', }, { id: 1578, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4700, date: '2011/12/15', }, { id: 1579, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2190, date: '2011/12/14', }, { id: 1580, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2300, date: '2011/12/19', }, { id: 1581, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2910, date: '2011/12/22', }, { id: 1582, region: 'Europe', country: 'GBR', city: 'London', amount: 2800, date: '2011/12/16', }, { id: 1583, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1260, date: '2011/12/09', }, { id: 1584, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4900, date: '2011/12/05', }, { id: 1585, region: 'North America', country: 'USA', city: 'New York', amount: 7380, date: '2011/12/02', }, { id: 1586, region: 'North America', country: 'USA', city: 'New York', amount: 2040, date: '2011/12/03', }, { id: 1587, region: 'North America', country: 'USA', city: 'New York', amount: 6840, date: '2012/01/21', }, { id: 1588, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3425, date: '2012/01/06', }, { id: 1589, region: 'North America', country: 'USA', city: 'Denver', amount: 2445, date: '2012/01/20', }, { id: 1590, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2445, date: '2012/01/20', }, { id: 1591, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 3110, date: '2012/01/26', }, { id: 1592, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2320, date: '2012/01/01', }, { id: 1593, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1815, date: '2012/01/06', }, { id: 1594, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1840, date: '2012/01/22', }, { id: 1595, region: 'Europe', country: 'GBR', city: 'London', amount: 6100, date: '2012/01/24', }, { id: 1596, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3750, date: '2012/01/01', }, { id: 1597, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3340, date: '2012/01/06', }, { id: 1598, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3980, date: '2012/01/20', }, { id: 1599, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2310, date: '2012/01/24', }, { id: 1600, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 660, date: '2012/01/09', }, { id: 1601, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7275, date: '2012/01/07', }, { id: 1602, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3460, date: '2012/01/05', }, { id: 1603, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2595, date: '2012/01/13', }, { id: 1604, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1760, date: '2012/01/02', }, { id: 1605, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1400, date: '2012/01/12', }, { id: 1606, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2540, date: '2012/01/09', }, { id: 1607, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1020, date: '2012/01/17', }, { id: 1608, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1710, date: '2012/01/19', }, { id: 1609, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2085, date: '2012/01/12', }, { id: 1610, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 3040, date: '2012/01/09', }, { id: 1611, region: 'North America', country: 'USA', city: 'New York', amount: 5670, date: '2012/02/24', }, { id: 1612, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3275, date: '2012/02/08', }, { id: 1613, region: 'North America', country: 'USA', city: 'Denver', amount: 2400, date: '2012/02/04', }, { id: 1614, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2820, date: '2012/02/04', }, { id: 1615, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1840, date: '2012/02/10', }, { id: 1616, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1880, date: '2012/02/07', }, { id: 1617, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4545, date: '2012/02/07', }, { id: 1618, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 860, date: '2012/02/20', }, { id: 1619, region: 'Europe', country: 'GBR', city: 'London', amount: 6100, date: '2012/02/08', }, { id: 1620, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1000, date: '2012/02/17', }, { id: 1621, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3720, date: '2012/02/21', }, { id: 1622, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1340, date: '2012/02/10', }, { id: 1623, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 9030, date: '2012/02/14', }, { id: 1624, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 7500, date: '2012/02/25', }, { id: 1625, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3675, date: '2012/02/07', }, { id: 1626, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3580, date: '2012/02/26', }, { id: 1627, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1545, date: '2012/02/18', }, { id: 1628, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1380, date: '2012/02/16', }, { id: 1629, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1450, date: '2012/02/24', }, { id: 1630, region: 'North America', country: 'USA', city: 'Denver', amount: 630, date: '2012/02/08', }, { id: 1631, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 930, date: '2012/02/09', }, { id: 1632, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1750, date: '2012/02/13', }, { id: 1633, region: 'North America', country: 'USA', city: 'New York', amount: 1800, date: '2012/03/13', }, { id: 1634, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1400, date: '2012/03/15', }, { id: 1635, region: 'North America', country: 'USA', city: 'Denver', amount: 3825, date: '2012/03/17', }, { id: 1636, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1605, date: '2012/03/19', }, { id: 1637, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1640, date: '2012/03/11', }, { id: 1638, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4520, date: '2012/03/20', }, { id: 1639, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3870, date: '2012/03/04', }, { id: 1640, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2590, date: '2012/03/08', }, { id: 1641, region: 'Europe', country: 'GBR', city: 'London', amount: 7750, date: '2012/03/13', }, { id: 1642, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5150, date: '2012/03/23', }, { id: 1643, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4260, date: '2012/03/10', }, { id: 1644, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4180, date: '2012/03/01', }, { id: 1645, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1020, date: '2012/03/08', }, { id: 1646, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6120, date: '2012/03/24', }, { id: 1647, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3075, date: '2012/03/18', }, { id: 1648, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3020, date: '2012/03/22', }, { id: 1649, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1335, date: '2012/03/10', }, { id: 1650, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2180, date: '2012/03/09', }, { id: 1651, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2300, date: '2012/03/12', }, { id: 1652, region: 'North America', country: 'USA', city: 'New York', amount: 1620, date: '2012/03/04', }, { id: 1653, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3675, date: '2012/03/16', }, { id: 1654, region: 'North America', country: 'USA', city: 'New York', amount: 4560, date: '2012/04/05', }, { id: 1655, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 925, date: '2012/04/07', }, { id: 1656, region: 'North America', country: 'USA', city: 'Denver', amount: 2025, date: '2012/04/13', }, { id: 1657, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3930, date: '2012/04/13', }, { id: 1658, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 3080, date: '2012/04/01', }, { id: 1659, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 860, date: '2012/04/22', }, { id: 1660, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3465, date: '2012/04/26', }, { id: 1661, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1550, date: '2012/04/09', }, { id: 1662, region: 'Europe', country: 'GBR', city: 'London', amount: 5375, date: '2012/04/12', }, { id: 1663, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5350, date: '2012/04/08', }, { id: 1664, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1520, date: '2012/04/24', }, { id: 1665, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 6040, date: '2012/04/19', }, { id: 1666, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 5250, date: '2012/04/26', }, { id: 1667, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8520, date: '2012/04/16', }, { id: 1668, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4050, date: '2012/04/25', }, { id: 1669, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 620, date: '2012/04/20', }, { id: 1670, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1185, date: '2012/04/25', }, { id: 1671, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2270, date: '2012/04/25', }, { id: 1672, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 3180, date: '2012/04/22', }, { id: 1673, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 915, date: '2012/04/23', }, { id: 1674, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 570, date: '2012/04/09', }, { id: 1675, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4320, date: '2012/04/25', }, { id: 1676, region: 'North America', country: 'USA', city: 'Denver', amount: 2250, date: '2012/04/24', }, { id: 1677, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 6240, date: '2012/04/15', }, { id: 1678, region: 'North America', country: 'USA', city: 'New York', amount: 6390, date: '2012/05/16', }, { id: 1679, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7600, date: '2012/05/25', }, { id: 1680, region: 'North America', country: 'USA', city: 'Denver', amount: 780, date: '2012/05/18', }, { id: 1681, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1230, date: '2012/05/23', }, { id: 1682, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1880, date: '2012/05/18', }, { id: 1683, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4340, date: '2012/05/14', }, { id: 1684, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1095, date: '2012/05/12', }, { id: 1685, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1670, date: '2012/05/06', }, { id: 1686, region: 'Europe', country: 'GBR', city: 'London', amount: 7500, date: '2012/05/13', }, { id: 1687, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1775, date: '2012/05/25', }, { id: 1688, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1020, date: '2012/05/14', }, { id: 1689, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2260, date: '2012/05/04', }, { id: 1690, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 4470, date: '2012/05/10', }, { id: 1691, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 1410, date: '2012/05/05', }, { id: 1692, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1550, date: '2012/05/17', }, { id: 1693, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 5280, date: '2012/05/17', }, { id: 1694, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3570, date: '2012/05/04', }, { id: 1695, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1950, date: '2012/05/20', }, { id: 1696, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1910, date: '2012/05/15', }, { id: 1697, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 960, date: '2012/05/10', }, { id: 1698, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5360, date: '2012/05/07', }, { id: 1699, region: 'North America', country: 'USA', city: 'New York', amount: 6060, date: '2012/06/07', }, { id: 1700, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 4075, date: '2012/06/03', }, { id: 1701, region: 'North America', country: 'USA', city: 'Denver', amount: 3105, date: '2012/06/14', }, { id: 1702, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 915, date: '2012/06/05', }, { id: 1703, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2180, date: '2012/06/04', }, { id: 1704, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2600, date: '2012/06/09', }, { id: 1705, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1605, date: '2012/06/06', }, { id: 1706, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2420, date: '2012/06/03', }, { id: 1707, region: 'Europe', country: 'GBR', city: 'London', amount: 7250, date: '2012/06/14', }, { id: 1708, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5875, date: '2012/06/10', }, { id: 1709, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1800, date: '2012/06/05', }, { id: 1710, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2800, date: '2012/06/06', }, { id: 1711, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1140, date: '2012/06/14', }, { id: 1712, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8790, date: '2012/06/24', }, { id: 1713, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4100, date: '2012/06/16', }, { id: 1714, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1480, date: '2012/06/11', }, { id: 1715, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 390, date: '2012/06/25', }, { id: 1716, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2410, date: '2012/06/21', }, { id: 1717, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1920, date: '2012/06/12', }, { id: 1718, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3780, date: '2012/06/25', }, { id: 1719, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3840, date: '2012/06/16', }, { id: 1720, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6700, date: '2012/06/13', }, { id: 1721, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1390, date: '2012/06/21', }, { id: 1722, region: 'North America', country: 'USA', city: 'New York', amount: 5940, date: '2012/07/03', }, { id: 1723, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 875, date: '2012/07/16', }, { id: 1724, region: 'North America', country: 'USA', city: 'Denver', amount: 600, date: '2012/07/15', }, { id: 1725, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1830, date: '2012/07/22', }, { id: 1726, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2020, date: '2012/07/02', }, { id: 1727, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1420, date: '2012/07/03', }, { id: 1728, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1185, date: '2012/07/05', }, { id: 1729, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 530, date: '2012/07/12', }, { id: 1730, region: 'Europe', country: 'GBR', city: 'London', amount: 4750, date: '2012/07/04', }, { id: 1731, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1350, date: '2012/07/22', }, { id: 1732, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4520, date: '2012/07/20', }, { id: 1733, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1060, date: '2012/07/13', }, { id: 1734, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2160, date: '2012/07/03', }, { id: 1735, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 7440, date: '2012/07/10', }, { id: 1736, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6250, date: '2012/07/19', }, { id: 1737, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3700, date: '2012/07/11', }, { id: 1738, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4275, date: '2012/07/02', }, { id: 1739, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1970, date: '2012/07/13', }, { id: 1740, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 520, date: '2012/07/20', }, { id: 1741, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1470, date: '2012/07/01', }, { id: 1742, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1070, date: '2012/07/05', }, { id: 1743, region: 'North America', country: 'USA', city: 'New York', amount: 5520, date: '2012/07/24', }, { id: 1744, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1965, date: '2012/07/05', }, { id: 1745, region: 'North America', country: 'USA', city: 'Denver', amount: 3585, date: '2012/07/22', }, { id: 1746, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2600, date: '2012/07/11', }, { id: 1747, region: 'North America', country: 'USA', city: 'New York', amount: 4920, date: '2012/08/08', }, { id: 1748, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 4625, date: '2012/08/05', }, { id: 1749, region: 'North America', country: 'USA', city: 'Denver', amount: 2565, date: '2012/08/26', }, { id: 1750, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2025, date: '2012/08/04', }, { id: 1751, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1370, date: '2012/08/03', }, { id: 1752, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4440, date: '2012/08/05', }, { id: 1753, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1305, date: '2012/08/25', }, { id: 1754, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 650, date: '2012/08/21', }, { id: 1755, region: 'Europe', country: 'GBR', city: 'London', amount: 7500, date: '2012/08/08', }, { id: 1756, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 6000, date: '2012/08/02', }, { id: 1757, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1220, date: '2012/08/01', }, { id: 1758, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 6340, date: '2012/08/01', }, { id: 1759, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1140, date: '2012/08/13', }, { id: 1760, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3270, date: '2012/08/02', }, { id: 1761, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3775, date: '2012/08/09', }, { id: 1762, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4520, date: '2012/08/23', }, { id: 1763, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4110, date: '2012/08/25', }, { id: 1764, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2840, date: '2012/08/06', }, { id: 1765, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2090, date: '2012/08/18', }, { id: 1766, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 5900, date: '2012/08/06', }, { id: 1767, region: 'North America', country: 'USA', city: 'New York', amount: 2640, date: '2012/09/04', }, { id: 1768, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2850, date: '2012/09/06', }, { id: 1769, region: 'North America', country: 'USA', city: 'Denver', amount: 4425, date: '2012/09/12', }, { id: 1770, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 495, date: '2012/09/09', }, { id: 1771, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2610, date: '2012/09/11', }, { id: 1772, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2400, date: '2012/09/06', }, { id: 1773, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2385, date: '2012/09/22', }, { id: 1774, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1200, date: '2012/09/23', }, { id: 1775, region: 'Europe', country: 'GBR', city: 'London', amount: 2475, date: '2012/09/10', }, { id: 1776, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2825, date: '2012/09/09', }, { id: 1777, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4700, date: '2012/09/02', }, { id: 1778, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2740, date: '2012/09/16', }, { id: 1779, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1560, date: '2012/09/01', }, { id: 1780, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 1440, date: '2012/09/19', }, { id: 1781, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3100, date: '2012/09/19', }, { id: 1782, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 5940, date: '2012/09/22', }, { id: 1783, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4545, date: '2012/09/16', }, { id: 1784, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 3060, date: '2012/09/23', }, { id: 1785, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1350, date: '2012/09/14', }, { id: 1786, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 345, date: '2012/09/02', }, { id: 1787, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 360, date: '2012/09/19', }, { id: 1788, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1860, date: '2012/09/19', }, { id: 1789, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1620, date: '2012/09/06', }, { id: 1790, region: 'Europe', country: 'GBR', city: 'London', amount: 1575, date: '2012/09/03', }, { id: 1791, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 4600, date: '2012/09/08', }, { id: 1792, region: 'North America', country: 'USA', city: 'New York', amount: 8100, date: '2012/10/05', }, { id: 1793, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 5925, date: '2012/10/26', }, { id: 1794, region: 'North America', country: 'USA', city: 'Denver', amount: 4680, date: '2012/10/17', }, { id: 1795, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4155, date: '2012/10/06', }, { id: 1796, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2100, date: '2012/10/16', }, { id: 1797, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1960, date: '2012/10/03', }, { id: 1798, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2055, date: '2012/10/09', }, { id: 1799, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 3160, date: '2012/10/13', }, { id: 1800, region: 'Europe', country: 'GBR', city: 'London', amount: 5125, date: '2012/10/08', }, { id: 1801, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5125, date: '2012/10/15', }, { id: 1802, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2700, date: '2012/10/23', }, { id: 1803, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5660, date: '2012/10/18', }, { id: 1804, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3600, date: '2012/10/08', }, { id: 1805, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 1380, date: '2012/10/04', }, { id: 1806, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4950, date: '2012/10/24', }, { id: 1807, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2980, date: '2012/10/06', }, { id: 1808, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4695, date: '2012/10/11', }, { id: 1809, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2540, date: '2012/10/01', }, { id: 1810, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1290, date: '2012/10/26', }, { id: 1811, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1460, date: '2012/10/18', }, { id: 1812, region: 'North America', country: 'USA', city: 'New York', amount: 1500, date: '2012/11/20', }, { id: 1813, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7300, date: '2012/11/06', }, { id: 1814, region: 'North America', country: 'USA', city: 'Denver', amount: 945, date: '2012/11/14', }, { id: 1815, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2280, date: '2012/11/14', }, { id: 1816, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2780, date: '2012/11/05', }, { id: 1817, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 6140, date: '2012/11/11', }, { id: 1818, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3975, date: '2012/11/01', }, { id: 1819, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 590, date: '2012/11/05', }, { id: 1820, region: 'Europe', country: 'GBR', city: 'London', amount: 1075, date: '2012/11/25', }, { id: 1821, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2800, date: '2012/11/06', }, { id: 1822, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2040, date: '2012/11/07', }, { id: 1823, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5520, date: '2012/11/03', }, { id: 1824, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 8790, date: '2012/11/03', }, { id: 1825, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3540, date: '2012/11/09', }, { id: 1826, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7625, date: '2012/11/10', }, { id: 1827, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2960, date: '2012/11/17', }, { id: 1828, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 780, date: '2012/11/19', }, { id: 1829, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2620, date: '2012/11/04', }, { id: 1830, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 420, date: '2012/11/01', }, { id: 1831, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2010, date: '2012/11/18', }, { id: 1832, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6450, date: '2012/11/21', }, { id: 1833, region: 'North America', country: 'USA', city: 'Denver', amount: 1380, date: '2012/11/03', }, { id: 1834, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 3070, date: '2012/11/18', }, { id: 1835, region: 'North America', country: 'USA', city: 'New York', amount: 9570, date: '2012/12/20', }, { id: 1836, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3525, date: '2012/12/15', }, { id: 1837, region: 'North America', country: 'USA', city: 'Denver', amount: 3375, date: '2012/12/16', }, { id: 1838, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 810, date: '2012/12/15', }, { id: 1839, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2300, date: '2012/12/15', }, { id: 1840, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1280, date: '2012/12/04', }, { id: 1841, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 315, date: '2012/12/08', }, { id: 1842, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1190, date: '2012/12/01', }, { id: 1843, region: 'Europe', country: 'GBR', city: 'London', amount: 1250, date: '2012/12/22', }, { id: 1844, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3000, date: '2012/12/04', }, { id: 1845, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5520, date: '2012/12/03', }, { id: 1846, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5520, date: '2012/12/21', }, { id: 1847, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 7380, date: '2012/12/13', }, { id: 1848, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 780, date: '2012/12/17', }, { id: 1849, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6525, date: '2012/12/06', }, { id: 1850, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2540, date: '2012/12/12', }, { id: 1851, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 810, date: '2012/12/15', }, { id: 1852, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 230, date: '2012/12/25', }, { id: 1853, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2830, date: '2012/12/19', }, { id: 1854, region: 'North America', country: 'USA', city: 'New York', amount: 6120, date: '2013/01/17', }, { id: 1855, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6925, date: '2013/01/25', }, { id: 1856, region: 'North America', country: 'USA', city: 'Denver', amount: 840, date: '2013/01/04', }, { id: 1857, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3795, date: '2013/01/07', }, { id: 1858, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 740, date: '2013/01/19', }, { id: 1859, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 920, date: '2013/01/12', }, { id: 1860, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 435, date: '2013/01/24', }, { id: 1861, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 320, date: '2013/01/17', }, { id: 1862, region: 'Europe', country: 'GBR', city: 'London', amount: 975, date: '2013/01/01', }, { id: 1863, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 6950, date: '2013/01/16', }, { id: 1864, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3900, date: '2013/01/05', }, { id: 1865, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5160, date: '2013/01/13', }, { id: 1866, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6030, date: '2013/01/17', }, { id: 1867, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6480, date: '2013/01/13', }, { id: 1868, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7075, date: '2013/01/01', }, { id: 1869, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3780, date: '2013/01/14', }, { id: 1870, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3525, date: '2013/01/20', }, { id: 1871, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1770, date: '2013/01/17', }, { id: 1872, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1890, date: '2013/01/08', }, { id: 1873, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1420, date: '2013/01/10', }, { id: 1874, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5975, date: '2013/01/18', }, { id: 1875, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1815, date: '2013/01/21', }, { id: 1876, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1660, date: '2013/01/12', }, { id: 1877, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4580, date: '2013/01/01', }, { id: 1878, region: 'North America', country: 'USA', city: 'New York', amount: 5190, date: '2013/02/04', }, { id: 1879, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6325, date: '2013/02/24', }, { id: 1880, region: 'North America', country: 'USA', city: 'Denver', amount: 2970, date: '2013/02/19', }, { id: 1881, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1020, date: '2013/02/24', }, { id: 1882, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2320, date: '2013/02/24', }, { id: 1883, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 900, date: '2013/02/13', }, { id: 1884, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2745, date: '2013/02/24', }, { id: 1885, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 690, date: '2013/02/17', }, { id: 1886, region: 'Europe', country: 'GBR', city: 'London', amount: 3375, date: '2013/02/01', }, { id: 1887, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 4425, date: '2013/02/01', }, { id: 1888, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4180, date: '2013/02/15', }, { id: 1889, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2960, date: '2013/02/05', }, { id: 1890, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 9330, date: '2013/02/22', }, { id: 1891, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3630, date: '2013/02/09', }, { id: 1892, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7375, date: '2013/02/06', }, { id: 1893, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1800, date: '2013/02/14', }, { id: 1894, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2160, date: '2013/02/09', }, { id: 1895, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1010, date: '2013/02/14', }, { id: 1896, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2310, date: '2013/02/20', }, { id: 1897, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1455, date: '2013/02/26', }, { id: 1898, region: 'Europe', country: 'GBR', city: 'London', amount: 5250, date: '2013/02/03', }, { id: 1899, region: 'North America', country: 'USA', city: 'New York', amount: 9330, date: '2013/03/23', }, { id: 1900, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2825, date: '2013/03/12', }, { id: 1901, region: 'North America', country: 'USA', city: 'Denver', amount: 4155, date: '2013/03/24', }, { id: 1902, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3270, date: '2013/03/16', }, { id: 1903, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 980, date: '2013/03/23', }, { id: 1904, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4020, date: '2013/03/11', }, { id: 1905, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 540, date: '2013/03/07', }, { id: 1906, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1970, date: '2013/03/05', }, { id: 1907, region: 'Europe', country: 'GBR', city: 'London', amount: 5000, date: '2013/03/12', }, { id: 1908, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7950, date: '2013/03/09', }, { id: 1909, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4960, date: '2013/03/14', }, { id: 1910, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 6320, date: '2013/03/20', }, { id: 1911, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 7680, date: '2013/03/01', }, { id: 1912, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3330, date: '2013/03/24', }, { id: 1913, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 525, date: '2013/03/13', }, { id: 1914, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4000, date: '2013/03/01', }, { id: 1915, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 915, date: '2013/03/22', }, { id: 1916, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 3020, date: '2013/03/05', }, { id: 1917, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1170, date: '2013/03/08', }, { id: 1918, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2100, date: '2013/03/26', }, { id: 1919, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 4740, date: '2013/03/22', }, { id: 1920, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2900, date: '2013/03/13', }, { id: 1921, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4620, date: '2013/03/09', }, { id: 1922, region: 'North America', country: 'USA', city: 'New York', amount: 5700, date: '2013/04/23', }, { id: 1923, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3375, date: '2013/04/17', }, { id: 1924, region: 'North America', country: 'USA', city: 'Denver', amount: 795, date: '2013/04/02', }, { id: 1925, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4350, date: '2013/04/25', }, { id: 1926, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1570, date: '2013/04/14', }, { id: 1927, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 720, date: '2013/04/14', }, { id: 1928, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 375, date: '2013/04/25', }, { id: 1929, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 370, date: '2013/04/23', }, { id: 1930, region: 'Europe', country: 'GBR', city: 'London', amount: 6825, date: '2013/04/25', }, { id: 1931, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1600, date: '2013/04/03', }, { id: 1932, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4700, date: '2013/04/02', }, { id: 1933, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5380, date: '2013/04/19', }, { id: 1934, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1560, date: '2013/04/16', }, { id: 1935, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 7020, date: '2013/04/24', }, { id: 1936, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4225, date: '2013/04/24', }, { id: 1937, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 920, date: '2013/04/07', }, { id: 1938, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3960, date: '2013/04/04', }, { id: 1939, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2410, date: '2013/04/10', }, { id: 1940, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 460, date: '2013/04/12', }, { id: 1941, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1510, date: '2013/04/15', }, { id: 1942, region: 'North America', country: 'USA', city: 'New York', amount: 4560, date: '2013/04/12', }, { id: 1943, region: 'North America', country: 'USA', city: 'New York', amount: 3750, date: '2013/04/17', }, { id: 1944, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4440, date: '2013/04/23', }, { id: 1945, region: 'North America', country: 'USA', city: 'New York', amount: 5100, date: '2013/05/25', }, { id: 1946, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 925, date: '2013/05/07', }, { id: 1947, region: 'North America', country: 'USA', city: 'Denver', amount: 2040, date: '2013/05/08', }, { id: 1948, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1215, date: '2013/05/12', }, { id: 1949, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1880, date: '2013/05/08', }, { id: 1950, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1340, date: '2013/05/08', }, { id: 1951, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4035, date: '2013/05/14', }, { id: 1952, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1170, date: '2013/05/17', }, { id: 1953, region: 'Europe', country: 'GBR', city: 'London', amount: 6600, date: '2013/05/01', }, { id: 1954, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2775, date: '2013/05/24', }, { id: 1955, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3720, date: '2013/05/07', }, { id: 1956, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2080, date: '2013/05/15', }, { id: 1957, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1770, date: '2013/05/06', }, { id: 1958, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3270, date: '2013/05/25', }, { id: 1959, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5425, date: '2013/05/19', }, { id: 1960, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 460, date: '2013/05/08', }, { id: 1961, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2820, date: '2013/05/26', }, { id: 1962, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2460, date: '2013/05/12', }, { id: 1963, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 3100, date: '2013/05/01', }, { id: 1964, region: 'Europe', country: 'GBR', city: 'London', amount: 3850, date: '2013/05/05', }, { id: 1965, region: 'North America', country: 'USA', city: 'New York', amount: 6360, date: '2013/06/04', }, { id: 1966, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7000, date: '2013/06/09', }, { id: 1967, region: 'North America', country: 'USA', city: 'Denver', amount: 2325, date: '2013/06/24', }, { id: 1968, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3480, date: '2013/06/15', }, { id: 1969, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 440, date: '2013/06/13', }, { id: 1970, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5420, date: '2013/06/10', }, { id: 1971, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3540, date: '2013/06/03', }, { id: 1972, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2000, date: '2013/06/25', }, { id: 1973, region: 'Europe', country: 'GBR', city: 'London', amount: 4275, date: '2013/06/20', }, { id: 1974, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1375, date: '2013/06/26', }, { id: 1975, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5160, date: '2013/06/11', }, { id: 1976, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4280, date: '2013/06/18', }, { id: 1977, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 990, date: '2013/06/16', }, { id: 1978, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6930, date: '2013/06/11', }, { id: 1979, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4350, date: '2013/06/25', }, { id: 1980, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 5220, date: '2013/06/11', }, { id: 1981, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1995, date: '2013/06/20', }, { id: 1982, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2910, date: '2013/06/06', }, { id: 1983, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2800, date: '2013/06/04', }, { id: 1984, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 880, date: '2013/06/01', }, { id: 1985, region: 'North America', country: 'USA', city: 'New York', amount: 3900, date: '2013/06/12', }, { id: 1986, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 720, date: '2013/06/19', }, { id: 1987, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 4350, date: '2013/06/25', }, { id: 1988, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 860, date: '2013/06/22', }, { id: 1989, region: 'North America', country: 'USA', city: 'New York', amount: 8820, date: '2013/07/14', }, { id: 1990, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2550, date: '2013/07/20', }, { id: 1991, region: 'North America', country: 'USA', city: 'Denver', amount: 945, date: '2013/07/26', }, { id: 1992, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1425, date: '2013/07/09', }, { id: 1993, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2820, date: '2013/07/04', }, { id: 1994, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4220, date: '2013/07/19', }, { id: 1995, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4650, date: '2013/07/09', }, { id: 1996, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1750, date: '2013/07/22', }, { id: 1997, region: 'Europe', country: 'GBR', city: 'London', amount: 6075, date: '2013/07/08', }, { id: 1998, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 4875, date: '2013/07/16', }, { id: 1999, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2480, date: '2013/07/09', }, { id: 2000, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1380, date: '2013/07/19', }, { id: 2001, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3840, date: '2013/07/25', }, { id: 2002, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 5970, date: '2013/07/09', }, { id: 2003, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5950, date: '2013/07/06', }, { id: 2004, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4460, date: '2013/07/15', }, { id: 2005, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3165, date: '2013/07/13', }, { id: 2006, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1880, date: '2013/07/08', }, { id: 2007, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 710, date: '2013/07/02', }, { id: 2008, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2655, date: '2013/07/03', }, { id: 2009, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2120, date: '2013/07/05', }, { id: 2010, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4175, date: '2013/07/22', }, { id: 2011, region: 'North America', country: 'USA', city: 'Denver', amount: 795, date: '2013/07/10', }, { id: 2012, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 600, date: '2013/07/11', }, { id: 2013, region: 'Europe', country: 'GBR', city: 'London', amount: 6675, date: '2013/07/12', }, { id: 2014, region: 'North America', country: 'USA', city: 'New York', amount: 780, date: '2013/08/25', }, { id: 2015, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7850, date: '2013/08/24', }, { id: 2016, region: 'North America', country: 'USA', city: 'Denver', amount: 4110, date: '2013/08/02', }, { id: 2017, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3705, date: '2013/08/17', }, { id: 2018, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2560, date: '2013/08/03', }, { id: 2019, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3020, date: '2013/08/11', }, { id: 2020, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3210, date: '2013/08/02', }, { id: 2021, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1420, date: '2013/08/10', }, { id: 2022, region: 'Europe', country: 'GBR', city: 'London', amount: 3550, date: '2013/08/03', }, { id: 2023, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 700, date: '2013/08/23', }, { id: 2024, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 740, date: '2013/08/07', }, { id: 2025, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4720, date: '2013/08/05', }, { id: 2026, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2250, date: '2013/08/22', }, { id: 2027, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 2700, date: '2013/08/19', }, { id: 2028, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6250, date: '2013/08/25', }, { id: 2029, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1600, date: '2013/08/18', }, { id: 2030, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 870, date: '2013/08/22', }, { id: 2031, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 840, date: '2013/08/12', }, { id: 2032, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 880, date: '2013/08/03', }, { id: 2033, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3645, date: '2013/08/16', }, { id: 2034, region: 'North America', country: 'USA', city: 'New York', amount: 6870, date: '2013/09/16', }, { id: 2035, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 3575, date: '2013/09/26', }, { id: 2036, region: 'North America', country: 'USA', city: 'Denver', amount: 3525, date: '2013/09/23', }, { id: 2037, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2400, date: '2013/09/17', }, { id: 2038, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2180, date: '2013/09/09', }, { id: 2039, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5960, date: '2013/09/25', }, { id: 2040, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2880, date: '2013/09/07', }, { id: 2041, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2940, date: '2013/09/03', }, { id: 2042, region: 'Europe', country: 'GBR', city: 'London', amount: 3575, date: '2013/09/02', }, { id: 2043, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1975, date: '2013/09/16', }, { id: 2044, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2900, date: '2013/09/23', }, { id: 2045, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5440, date: '2013/09/10', }, { id: 2046, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2100, date: '2013/09/08', }, { id: 2047, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 9390, date: '2013/09/19', }, { id: 2048, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7600, date: '2013/09/21', }, { id: 2049, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4460, date: '2013/09/09', }, { id: 2050, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1725, date: '2013/09/08', }, { id: 2051, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2590, date: '2013/09/01', }, { id: 2052, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2820, date: '2013/09/04', }, { id: 2053, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1910, date: '2013/09/04', }, { id: 2054, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1860, date: '2013/09/02', }, { id: 2055, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 675, date: '2013/09/17', }, { id: 2056, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2160, date: '2013/09/09', }, { id: 2057, region: 'North America', country: 'USA', city: 'New York', amount: 5790, date: '2013/10/18', }, { id: 2058, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7575, date: '2013/10/23', }, { id: 2059, region: 'North America', country: 'USA', city: 'Denver', amount: 1275, date: '2013/10/09', }, { id: 2060, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3210, date: '2013/10/08', }, { id: 2061, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2770, date: '2013/10/25', }, { id: 2062, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3140, date: '2013/10/01', }, { id: 2063, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2790, date: '2013/10/14', }, { id: 2064, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1680, date: '2013/10/10', }, { id: 2065, region: 'Europe', country: 'GBR', city: 'London', amount: 4775, date: '2013/10/23', }, { id: 2066, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3325, date: '2013/10/15', }, { id: 2067, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3040, date: '2013/10/24', }, { id: 2068, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3060, date: '2013/10/15', }, { id: 2069, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2940, date: '2013/10/10', }, { id: 2070, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3360, date: '2013/10/09', }, { id: 2071, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6375, date: '2013/10/09', }, { id: 2072, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 5300, date: '2013/10/21', }, { id: 2073, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4260, date: '2013/10/21', }, { id: 2074, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1920, date: '2013/10/21', }, { id: 2075, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1250, date: '2013/10/14', }, { id: 2076, region: 'North America', country: 'USA', city: 'Denver', amount: 720, date: '2013/10/22', }, { id: 2077, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3325, date: '2013/10/11', }, { id: 2078, region: 'North America', country: 'USA', city: 'New York', amount: 3750, date: '2013/11/01', }, { id: 2079, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2350, date: '2013/11/05', }, { id: 2080, region: 'North America', country: 'USA', city: 'Denver', amount: 4275, date: '2013/11/23', }, { id: 2081, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3915, date: '2013/11/07', }, { id: 2082, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2350, date: '2013/11/06', }, { id: 2083, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 6200, date: '2013/11/20', }, { id: 2084, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1605, date: '2013/11/12', }, { id: 2085, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2530, date: '2013/11/16', }, { id: 2086, region: 'Europe', country: 'GBR', city: 'London', amount: 6800, date: '2013/11/15', }, { id: 2087, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5025, date: '2013/11/25', }, { id: 2088, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1900, date: '2013/11/20', }, { id: 2089, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1820, date: '2013/11/02', }, { id: 2090, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 9330, date: '2013/11/07', }, { id: 2091, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6510, date: '2013/11/24', }, { id: 2092, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4975, date: '2013/11/09', }, { id: 2093, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 5320, date: '2013/11/18', }, { id: 2094, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4605, date: '2013/11/11', }, { id: 2095, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2360, date: '2013/11/24', }, { id: 2096, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1490, date: '2013/11/03', }, { id: 2097, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3660, date: '2013/11/16', }, { id: 2098, region: 'North America', country: 'USA', city: 'New York', amount: 9240, date: '2013/11/02', }, { id: 2099, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3870, date: '2013/11/03', }, { id: 2100, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 900, date: '2013/11/05', }, { id: 2101, region: 'North America', country: 'USA', city: 'New York', amount: 1140, date: '2013/12/02', }, { id: 2102, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6675, date: '2013/12/18', }, { id: 2103, region: 'North America', country: 'USA', city: 'Denver', amount: 2025, date: '2013/12/08', }, { id: 2104, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 990, date: '2013/12/17', }, { id: 2105, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2730, date: '2013/12/25', }, { id: 2106, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4240, date: '2013/12/18', }, { id: 2107, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3465, date: '2013/12/07', }, { id: 2108, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2370, date: '2013/12/08', }, { id: 2109, region: 'Europe', country: 'GBR', city: 'London', amount: 2375, date: '2013/12/08', }, { id: 2110, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3125, date: '2013/12/08', }, { id: 2111, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3040, date: '2013/12/25', }, { id: 2112, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3180, date: '2013/12/12', }, { id: 2113, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2460, date: '2013/12/01', }, { id: 2114, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 5610, date: '2013/12/05', }, { id: 2115, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2675, date: '2013/12/24', }, { id: 2116, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3920, date: '2013/12/22', }, { id: 2117, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3330, date: '2013/12/03', }, { id: 2118, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 470, date: '2013/12/06', }, { id: 2119, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 3130, date: '2013/12/25', }, { id: 2120, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1580, date: '2013/12/19', }, { id: 2121, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 675, date: '2013/12/24', }, { id: 2122, region: 'North America', country: 'USA', city: 'New York', amount: 9360, date: '2014/01/01', }, { id: 2123, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1425, date: '2014/01/18', }, { id: 2124, region: 'North America', country: 'USA', city: 'Denver', amount: 1755, date: '2014/01/19', }, { id: 2125, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4770, date: '2014/01/16', }, { id: 2126, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1090, date: '2014/01/05', }, { id: 2127, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4900, date: '2014/01/21', }, { id: 2128, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1470, date: '2014/01/04', }, { id: 2129, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2320, date: '2014/01/16', }, { id: 2130, region: 'Europe', country: 'GBR', city: 'London', amount: 5450, date: '2014/01/12', }, { id: 2131, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7775, date: '2014/01/02', }, { id: 2132, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3800, date: '2014/01/14', }, { id: 2133, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4280, date: '2014/01/26', }, { id: 2134, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 5070, date: '2014/01/26', }, { id: 2135, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 2820, date: '2014/01/06', }, { id: 2136, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 925, date: '2014/01/23', }, { id: 2137, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 6280, date: '2014/01/14', }, { id: 2138, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1455, date: '2014/01/02', }, { id: 2139, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 3030, date: '2014/01/10', }, { id: 2140, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1840, date: '2014/01/05', }, { id: 2141, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2210, date: '2014/01/21', }, { id: 2142, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2805, date: '2014/01/10', }, { id: 2143, region: 'North America', country: 'USA', city: 'New York', amount: 7140, date: '2014/01/09', }, { id: 2144, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2610, date: '2014/01/16', }, { id: 2145, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2280, date: '2014/01/26', }, { id: 2146, region: 'North America', country: 'USA', city: 'New York', amount: 5190, date: '2014/01/23', }, { id: 2147, region: 'North America', country: 'USA', city: 'New York', amount: 6360, date: '2014/02/20', }, { id: 2148, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2950, date: '2014/02/06', }, { id: 2149, region: 'North America', country: 'USA', city: 'Denver', amount: 2130, date: '2014/02/22', }, { id: 2150, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1650, date: '2014/02/18', }, { id: 2151, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1780, date: '2014/02/02', }, { id: 2152, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 5260, date: '2014/02/05', }, { id: 2153, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4485, date: '2014/02/20', }, { id: 2154, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2680, date: '2014/02/17', }, { id: 2155, region: 'Europe', country: 'GBR', city: 'London', amount: 5325, date: '2014/02/16', }, { id: 2156, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 4525, date: '2014/02/08', }, { id: 2157, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 500, date: '2014/02/08', }, { id: 2158, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 420, date: '2014/02/20', }, { id: 2159, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 5370, date: '2014/02/16', }, { id: 2160, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 5550, date: '2014/02/14', }, { id: 2161, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7200, date: '2014/02/05', }, { id: 2162, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 960, date: '2014/02/07', }, { id: 2163, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3915, date: '2014/02/08', }, { id: 2164, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2850, date: '2014/02/24', }, { id: 2165, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2970, date: '2014/02/06', }, { id: 2166, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4720, date: '2014/02/02', }, { id: 2167, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 940, date: '2014/02/23', }, { id: 2168, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 1290, date: '2014/02/02', }, { id: 2169, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2290, date: '2014/02/21', }, { id: 2170, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1850, date: '2014/02/18', }, { id: 2171, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1120, date: '2014/02/10', }, { id: 2172, region: 'North America', country: 'USA', city: 'New York', amount: 7170, date: '2014/03/08', }, { id: 2173, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1600, date: '2014/03/23', }, { id: 2174, region: 'North America', country: 'USA', city: 'Denver', amount: 2940, date: '2014/03/03', }, { id: 2175, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1665, date: '2014/03/15', }, { id: 2176, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1490, date: '2014/03/15', }, { id: 2177, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2160, date: '2014/03/03', }, { id: 2178, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2835, date: '2014/03/05', }, { id: 2179, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2180, date: '2014/03/05', }, { id: 2180, region: 'Europe', country: 'GBR', city: 'London', amount: 775, date: '2014/03/11', }, { id: 2181, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5300, date: '2014/03/18', }, { id: 2182, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4140, date: '2014/03/08', }, { id: 2183, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4700, date: '2014/03/09', }, { id: 2184, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 7830, date: '2014/03/01', }, { id: 2185, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 7530, date: '2014/03/25', }, { id: 2186, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1650, date: '2014/03/07', }, { id: 2187, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4320, date: '2014/03/26', }, { id: 2188, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2685, date: '2014/03/23', }, { id: 2189, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2760, date: '2014/03/01', }, { id: 2190, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 450, date: '2014/03/23', }, { id: 2191, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3870, date: '2014/03/20', }, { id: 2192, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2730, date: '2014/03/05', }, { id: 2193, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1150, date: '2014/03/24', }, { id: 2194, region: 'North America', country: 'USA', city: 'New York', amount: 3660, date: '2014/04/26', }, { id: 2195, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7125, date: '2014/04/19', }, { id: 2196, region: 'North America', country: 'USA', city: 'Denver', amount: 2460, date: '2014/04/10', }, { id: 2197, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2850, date: '2014/04/24', }, { id: 2198, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 730, date: '2014/04/12', }, { id: 2199, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4860, date: '2014/04/23', }, { id: 2200, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4080, date: '2014/04/05', }, { id: 2201, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1450, date: '2014/04/19', }, { id: 2202, region: 'Europe', country: 'GBR', city: 'London', amount: 3200, date: '2014/04/14', }, { id: 2203, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2050, date: '2014/04/18', }, { id: 2204, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 3360, date: '2014/04/21', }, { id: 2205, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3840, date: '2014/04/16', }, { id: 2206, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 5070, date: '2014/04/06', }, { id: 2207, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 4200, date: '2014/04/20', }, { id: 2208, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1850, date: '2014/04/23', }, { id: 2209, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 420, date: '2014/04/08', }, { id: 2210, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2310, date: '2014/04/02', }, { id: 2211, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1790, date: '2014/04/21', }, { id: 2212, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 800, date: '2014/04/24', }, { id: 2213, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 5310, date: '2014/04/23', }, { id: 2214, region: 'North America', country: 'USA', city: 'New York', amount: 8850, date: '2014/05/23', }, { id: 2215, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 5500, date: '2014/05/25', }, { id: 2216, region: 'North America', country: 'USA', city: 'Denver', amount: 4065, date: '2014/05/23', }, { id: 2217, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3855, date: '2014/05/14', }, { id: 2218, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 320, date: '2014/05/26', }, { id: 2219, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4500, date: '2014/05/26', }, { id: 2220, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3630, date: '2014/05/02', }, { id: 2221, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2650, date: '2014/05/12', }, { id: 2222, region: 'Europe', country: 'GBR', city: 'London', amount: 6950, date: '2014/05/07', }, { id: 2223, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7175, date: '2014/05/19', }, { id: 2224, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1020, date: '2014/05/22', }, { id: 2225, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1980, date: '2014/05/25', }, { id: 2226, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2550, date: '2014/05/03', }, { id: 2227, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 1950, date: '2014/05/08', }, { id: 2228, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5200, date: '2014/05/18', }, { id: 2229, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1800, date: '2014/05/20', }, { id: 2230, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 405, date: '2014/05/25', }, { id: 2231, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1520, date: '2014/05/09', }, { id: 2232, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2280, date: '2014/05/03', }, { id: 2233, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2820, date: '2014/05/06', }, { id: 2234, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4080, date: '2014/05/21', }, { id: 2235, region: 'North America', country: 'USA', city: 'New York', amount: 3780, date: '2014/06/23', }, { id: 2236, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 5300, date: '2014/06/17', }, { id: 2237, region: 'North America', country: 'USA', city: 'Denver', amount: 3570, date: '2014/06/09', }, { id: 2238, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2310, date: '2014/06/20', }, { id: 2239, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1610, date: '2014/06/18', }, { id: 2240, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 6320, date: '2014/06/25', }, { id: 2241, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4140, date: '2014/06/22', }, { id: 2242, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 630, date: '2014/06/08', }, { id: 2243, region: 'Europe', country: 'GBR', city: 'London', amount: 6475, date: '2014/06/10', }, { id: 2244, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 2375, date: '2014/06/08', }, { id: 2245, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 6140, date: '2014/06/19', }, { id: 2246, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2880, date: '2014/06/20', }, { id: 2247, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3240, date: '2014/06/25', }, { id: 2248, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 2820, date: '2014/06/10', }, { id: 2249, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4850, date: '2014/06/22', }, { id: 2250, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 5280, date: '2014/06/16', }, { id: 2251, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4170, date: '2014/06/05', }, { id: 2252, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2100, date: '2014/06/25', }, { id: 2253, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1470, date: '2014/06/23', }, { id: 2254, region: 'North America', country: 'USA', city: 'New York', amount: 1470, date: '2014/07/08', }, { id: 2255, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 7225, date: '2014/07/17', }, { id: 2256, region: 'North America', country: 'USA', city: 'Denver', amount: 1290, date: '2014/07/23', }, { id: 2257, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1035, date: '2014/07/25', }, { id: 2258, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 730, date: '2014/07/11', }, { id: 2259, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1340, date: '2014/07/17', }, { id: 2260, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3930, date: '2014/07/14', }, { id: 2261, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2160, date: '2014/07/18', }, { id: 2262, region: 'Europe', country: 'GBR', city: 'London', amount: 1675, date: '2014/07/15', }, { id: 2263, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5475, date: '2014/07/16', }, { id: 2264, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 600, date: '2014/07/05', }, { id: 2265, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4200, date: '2014/07/15', }, { id: 2266, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6600, date: '2014/07/06', }, { id: 2267, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 8940, date: '2014/07/20', }, { id: 2268, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7650, date: '2014/07/19', }, { id: 2269, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 6360, date: '2014/07/25', }, { id: 2270, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 1740, date: '2014/07/22', }, { id: 2271, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 210, date: '2014/07/16', }, { id: 2272, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1500, date: '2014/07/19', }, { id: 2273, region: 'North America', country: 'USA', city: 'New York', amount: 6990, date: '2014/08/04', }, { id: 2274, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6050, date: '2014/08/11', }, { id: 2275, region: 'North America', country: 'USA', city: 'Denver', amount: 3240, date: '2014/08/06', }, { id: 2276, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1890, date: '2014/08/23', }, { id: 2277, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1590, date: '2014/08/11', }, { id: 2278, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2040, date: '2014/08/19', }, { id: 2279, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3570, date: '2014/08/15', }, { id: 2280, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1360, date: '2014/08/18', }, { id: 2281, region: 'Europe', country: 'GBR', city: 'London', amount: 2100, date: '2014/08/16', }, { id: 2282, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5300, date: '2014/08/07', }, { id: 2283, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 6300, date: '2014/08/07', }, { id: 2284, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2780, date: '2014/08/24', }, { id: 2285, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2400, date: '2014/08/03', }, { id: 2286, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3780, date: '2014/08/13', }, { id: 2287, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4325, date: '2014/08/23', }, { id: 2288, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2020, date: '2014/08/22', }, { id: 2289, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3810, date: '2014/08/03', }, { id: 2290, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2470, date: '2014/08/25', }, { id: 2291, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2130, date: '2014/08/26', }, { id: 2292, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 4980, date: '2014/08/26', }, { id: 2293, region: 'Europe', country: 'GBR', city: 'London', amount: 2925, date: '2014/08/14', }, { id: 2294, region: 'North America', country: 'USA', city: 'Denver', amount: 1695, date: '2014/08/07', }, { id: 2295, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 435, date: '2014/08/21', }, { id: 2296, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2370, date: '2014/08/25', }, { id: 2297, region: 'North America', country: 'USA', city: 'New York', amount: 8370, date: '2014/09/19', }, { id: 2298, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 6625, date: '2014/09/24', }, { id: 2299, region: 'North America', country: 'USA', city: 'Denver', amount: 3555, date: '2014/09/05', }, { id: 2300, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2520, date: '2014/09/02', }, { id: 2301, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2760, date: '2014/09/25', }, { id: 2302, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3240, date: '2014/09/08', }, { id: 2303, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4755, date: '2014/09/24', }, { id: 2304, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2320, date: '2014/09/17', }, { id: 2305, region: 'Europe', country: 'GBR', city: 'London', amount: 3925, date: '2014/09/15', }, { id: 2306, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1875, date: '2014/09/11', }, { id: 2307, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 6040, date: '2014/09/13', }, { id: 2308, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2500, date: '2014/09/15', }, { id: 2309, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 7200, date: '2014/09/26', }, { id: 2310, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6450, date: '2014/09/23', }, { id: 2311, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1975, date: '2014/09/20', }, { id: 2312, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 980, date: '2014/09/11', }, { id: 2313, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3375, date: '2014/09/03', }, { id: 2314, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1880, date: '2014/09/17', }, { id: 2315, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 520, date: '2014/09/10', }, { id: 2316, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 230, date: '2014/09/01', }, { id: 2317, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1000, date: '2014/09/05', }, { id: 2318, region: 'North America', country: 'USA', city: 'New York', amount: 2430, date: '2014/09/11', }, { id: 2319, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 610, date: '2014/09/23', }, { id: 2320, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 300, date: '2014/09/16', }, { id: 2321, region: 'North America', country: 'USA', city: 'New York', amount: 8700, date: '2014/10/01', }, { id: 2322, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2875, date: '2014/10/19', }, { id: 2323, region: 'North America', country: 'USA', city: 'Denver', amount: 4230, date: '2014/10/21', }, { id: 2324, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4335, date: '2014/10/18', }, { id: 2325, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2140, date: '2014/10/26', }, { id: 2326, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1260, date: '2014/10/04', }, { id: 2327, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1290, date: '2014/10/04', }, { id: 2328, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2720, date: '2014/10/02', }, { id: 2329, region: 'Europe', country: 'GBR', city: 'London', amount: 3325, date: '2014/10/24', }, { id: 2330, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 6525, date: '2014/10/10', }, { id: 2331, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 2300, date: '2014/10/15', }, { id: 2332, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1620, date: '2014/10/12', }, { id: 2333, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 8130, date: '2014/10/20', }, { id: 2334, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 4260, date: '2014/10/12', }, { id: 2335, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5750, date: '2014/10/17', }, { id: 2336, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 6360, date: '2014/10/13', }, { id: 2337, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3390, date: '2014/10/02', }, { id: 2338, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1400, date: '2014/10/18', }, { id: 2339, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2150, date: '2014/10/22', }, { id: 2340, region: 'North America', country: 'USA', city: 'New York', amount: 5580, date: '2014/11/04', }, { id: 2341, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1025, date: '2014/11/07', }, { id: 2342, region: 'North America', country: 'USA', city: 'Denver', amount: 4710, date: '2014/11/18', }, { id: 2343, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1605, date: '2014/11/09', }, { id: 2344, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 240, date: '2014/11/24', }, { id: 2345, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3340, date: '2014/11/04', }, { id: 2346, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3465, date: '2014/11/02', }, { id: 2347, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 2230, date: '2014/11/09', }, { id: 2348, region: 'Europe', country: 'GBR', city: 'London', amount: 900, date: '2014/11/22', }, { id: 2349, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7275, date: '2014/11/08', }, { id: 2350, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1280, date: '2014/11/22', }, { id: 2351, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1680, date: '2014/11/26', }, { id: 2352, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 5970, date: '2014/11/19', }, { id: 2353, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 7710, date: '2014/11/03', }, { id: 2354, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 6175, date: '2014/11/12', }, { id: 2355, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3920, date: '2014/11/18', }, { id: 2356, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4590, date: '2014/11/23', }, { id: 2357, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1490, date: '2014/11/10', }, { id: 2358, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 410, date: '2014/11/18', }, { id: 2359, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2090, date: '2014/11/24', }, { id: 2360, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2520, date: '2014/11/12', }, { id: 2361, region: 'North America', country: 'USA', city: 'New York', amount: 2370, date: '2014/12/20', }, { id: 2362, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1250, date: '2014/12/23', }, { id: 2363, region: 'North America', country: 'USA', city: 'Denver', amount: 1530, date: '2014/12/25', }, { id: 2364, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2250, date: '2014/12/17', }, { id: 2365, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2080, date: '2014/12/24', }, { id: 2366, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3960, date: '2014/12/19', }, { id: 2367, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 435, date: '2014/12/08', }, { id: 2368, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1730, date: '2014/12/25', }, { id: 2369, region: 'Europe', country: 'GBR', city: 'London', amount: 6100, date: '2014/12/26', }, { id: 2370, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 5225, date: '2014/12/21', }, { id: 2371, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5400, date: '2014/12/12', }, { id: 2372, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3800, date: '2014/12/25', }, { id: 2373, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6000, date: '2014/12/07', }, { id: 2374, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3630, date: '2014/12/13', }, { id: 2375, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 7575, date: '2014/12/20', }, { id: 2376, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3540, date: '2014/12/01', }, { id: 2377, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3240, date: '2014/12/26', }, { id: 2378, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 650, date: '2014/12/03', }, { id: 2379, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2410, date: '2014/12/11', }, { id: 2380, region: 'North America', country: 'USA', city: 'New York', amount: 8850, date: '2015/01/10', }, { id: 2381, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2850, date: '2015/01/22', }, { id: 2382, region: 'North America', country: 'USA', city: 'Denver', amount: 2325, date: '2015/01/11', }, { id: 2383, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 2715, date: '2015/01/19', }, { id: 2384, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 800, date: '2015/01/01', }, { id: 2385, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3220, date: '2015/01/08', }, { id: 2386, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3570, date: '2015/01/16', }, { id: 2387, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1340, date: '2015/01/20', }, { id: 2388, region: 'Europe', country: 'GBR', city: 'London', amount: 7425, date: '2015/01/15', }, { id: 2389, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1200, date: '2015/01/02', }, { id: 2390, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1980, date: '2015/01/01', }, { id: 2391, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 2340, date: '2015/01/10', }, { id: 2392, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3450, date: '2015/01/22', }, { id: 2393, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 5790, date: '2015/01/21', }, { id: 2394, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3550, date: '2015/01/04', }, { id: 2395, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3560, date: '2015/01/23', }, { id: 2396, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 855, date: '2015/01/24', }, { id: 2397, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1470, date: '2015/01/25', }, { id: 2398, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 760, date: '2015/01/12', }, { id: 2399, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2090, date: '2015/01/15', }, { id: 2400, region: 'North America', country: 'USA', city: 'New York', amount: 6360, date: '2015/02/03', }, { id: 2401, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2625, date: '2015/02/18', }, { id: 2402, region: 'North America', country: 'USA', city: 'Denver', amount: 1080, date: '2015/02/05', }, { id: 2403, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3960, date: '2015/02/10', }, { id: 2404, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 1230, date: '2015/02/15', }, { id: 2405, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2000, date: '2015/02/02', }, { id: 2406, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4155, date: '2015/02/07', }, { id: 2407, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1620, date: '2015/02/11', }, { id: 2408, region: 'Europe', country: 'GBR', city: 'London', amount: 3800, date: '2015/02/17', }, { id: 2409, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1400, date: '2015/02/24', }, { id: 2410, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4880, date: '2015/02/12', }, { id: 2411, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4940, date: '2015/02/22', }, { id: 2412, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 3930, date: '2015/02/25', }, { id: 2413, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 3090, date: '2015/02/13', }, { id: 2414, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1150, date: '2015/02/01', }, { id: 2415, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2660, date: '2015/02/16', }, { id: 2416, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4440, date: '2015/02/25', }, { id: 2417, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 880, date: '2015/02/17', }, { id: 2418, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 2430, date: '2015/02/01', }, { id: 2419, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1710, date: '2015/02/01', }, { id: 2420, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 3480, date: '2015/02/09', }, { id: 2421, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 850, date: '2015/02/03', }, { id: 2422, region: 'North America', country: 'USA', city: 'New York', amount: 6930, date: '2015/03/23', }, { id: 2423, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 500, date: '2015/03/16', }, { id: 2424, region: 'North America', country: 'USA', city: 'Denver', amount: 2730, date: '2015/03/01', }, { id: 2425, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 885, date: '2015/03/25', }, { id: 2426, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2790, date: '2015/03/06', }, { id: 2427, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3100, date: '2015/03/14', }, { id: 2428, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 2925, date: '2015/03/25', }, { id: 2429, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1120, date: '2015/03/07', }, { id: 2430, region: 'Europe', country: 'GBR', city: 'London', amount: 6300, date: '2015/03/08', }, { id: 2431, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 7500, date: '2015/03/22', }, { id: 2432, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1660, date: '2015/03/19', }, { id: 2433, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 6100, date: '2015/03/15', }, { id: 2434, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 9480, date: '2015/03/04', }, { id: 2435, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 2970, date: '2015/03/06', }, { id: 2436, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 575, date: '2015/03/03', }, { id: 2437, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3160, date: '2015/03/16', }, { id: 2438, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3015, date: '2015/03/04', }, { id: 2439, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 1890, date: '2015/03/17', }, { id: 2440, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 280, date: '2015/03/07', }, { id: 2441, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 3550, date: '2015/03/17', }, { id: 2442, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3765, date: '2015/03/12', }, { id: 2443, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 315, date: '2015/03/11', }, { id: 2444, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4125, date: '2015/03/22', }, { id: 2445, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 2340, date: '2015/03/24', }, { id: 2446, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 2520, date: '2015/03/08', }, { id: 2447, region: 'North America', country: 'USA', city: 'New York', amount: 2820, date: '2015/04/03', }, { id: 2448, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2250, date: '2015/04/22', }, { id: 2449, region: 'North America', country: 'USA', city: 'Denver', amount: 870, date: '2015/04/25', }, { id: 2450, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 1815, date: '2015/04/13', }, { id: 2451, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2950, date: '2015/04/15', }, { id: 2452, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 3740, date: '2015/04/22', }, { id: 2453, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 1845, date: '2015/04/12', }, { id: 2454, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 500, date: '2015/04/06', }, { id: 2455, region: 'Europe', country: 'GBR', city: 'London', amount: 2100, date: '2015/04/23', }, { id: 2456, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 4475, date: '2015/04/20', }, { id: 2457, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 4960, date: '2015/04/17', }, { id: 2458, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1040, date: '2015/04/08', }, { id: 2459, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 6210, date: '2015/04/10', }, { id: 2460, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 5040, date: '2015/04/11', }, { id: 2461, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 4600, date: '2015/04/22', }, { id: 2462, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3260, date: '2015/04/02', }, { id: 2463, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3030, date: '2015/04/20', }, { id: 2464, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 280, date: '2015/04/14', }, { id: 2465, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1380, date: '2015/04/10', }, { id: 2466, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 900, date: '2015/04/12', }, { id: 2467, region: 'North America', country: 'USA', city: 'New York', amount: 1260, date: '2015/05/09', }, { id: 2468, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 1125, date: '2015/05/01', }, { id: 2469, region: 'North America', country: 'USA', city: 'Denver', amount: 2715, date: '2015/05/04', }, { id: 2470, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4020, date: '2015/05/07', }, { id: 2471, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2210, date: '2015/05/12', }, { id: 2472, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 2780, date: '2015/05/11', }, { id: 2473, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 3885, date: '2015/05/25', }, { id: 2474, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 3100, date: '2015/05/06', }, { id: 2475, region: 'Europe', country: 'GBR', city: 'London', amount: 4625, date: '2015/05/11', }, { id: 2476, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 1350, date: '2015/05/08', }, { id: 2477, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 1400, date: '2015/05/23', }, { id: 2478, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 4220, date: '2015/05/07', }, { id: 2479, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 4560, date: '2015/05/06', }, { id: 2480, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 7650, date: '2015/05/11', }, { id: 2481, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 2675, date: '2015/05/12', }, { id: 2482, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 3300, date: '2015/05/16', }, { id: 2483, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 3870, date: '2015/05/08', }, { id: 2484, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 690, date: '2015/05/20', }, { id: 2485, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1190, date: '2015/05/22', }, { id: 2486, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5220, date: '2015/05/05', }, { id: 2487, region: 'Europe', country: 'GBR', city: 'London', amount: 6275, date: '2015/05/05', }, { id: 2488, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5380, date: '2015/05/11', }, { id: 2489, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 4000, date: '2015/05/08', }, { id: 2490, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 3700, date: '2015/05/04', }, { id: 2491, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 860, date: '2015/05/09', }, { id: 2492, region: 'North America', country: 'USA', city: 'New York', amount: 2040, date: '2015/06/13', }, { id: 2493, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 5475, date: '2015/06/08', }, { id: 2494, region: 'North America', country: 'USA', city: 'Denver', amount: 1890, date: '2015/06/04', }, { id: 2495, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 4695, date: '2015/06/23', }, { id: 2496, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2850, date: '2015/06/10', }, { id: 2497, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 4740, date: '2015/06/17', }, { id: 2498, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 4395, date: '2015/06/25', }, { id: 2499, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 610, date: '2015/06/24', }, { id: 2500, region: 'Europe', country: 'GBR', city: 'London', amount: 1950, date: '2015/06/19', }, { id: 2501, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 3100, date: '2015/06/22', }, { id: 2502, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 820, date: '2015/06/21', }, { id: 2503, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 1760, date: '2015/06/25', }, { id: 2504, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 8430, date: '2015/06/07', }, { id: 2505, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 6480, date: '2015/06/02', }, { id: 2506, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 5525, date: '2015/06/07', }, { id: 2507, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 1780, date: '2015/06/24', }, { id: 2508, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2070, date: '2015/06/07', }, { id: 2509, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2760, date: '2015/06/22', }, { id: 2510, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 1010, date: '2015/06/14', }, { id: 2511, region: 'North America', country: 'USA', city: 'New York', amount: 1860, date: '2015/07/15', }, { id: 2512, region: 'North America', country: 'USA', city: 'Los Angeles', amount: 2325, date: '2015/07/06', }, { id: 2513, region: 'North America', country: 'USA', city: 'Denver', amount: 2385, date: '2015/07/03', }, { id: 2514, region: 'North America', country: 'CAN', city: 'Vancouver', amount: 600, date: '2015/07/12', }, { id: 2515, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 2080, date: '2015/07/02', }, { id: 2516, region: 'South America', country: 'BRA', city: 'Rio de Janeiro', amount: 1660, date: '2015/07/16', }, { id: 2517, region: 'South America', country: 'ARG', city: 'Buenos Aires', amount: 780, date: '2015/07/05', }, { id: 2518, region: 'South America', country: 'PRY', city: 'Asuncion', amount: 1040, date: '2015/07/04', }, { id: 2519, region: 'Europe', country: 'GBR', city: 'London', amount: 4850, date: '2015/07/26', }, { id: 2520, region: 'Europe', country: 'DEU', city: 'Berlin', amount: 6150, date: '2015/07/14', }, { id: 2521, region: 'Europe', country: 'ESP', city: 'Madrid', amount: 5000, date: '2015/07/21', }, { id: 2522, region: 'Europe', country: 'RUS', city: 'Moscow', amount: 5180, date: '2015/07/06', }, { id: 2523, region: 'Asia', country: 'CHN', city: 'Beijing', amount: 1560, date: '2015/07/12', }, { id: 2524, region: 'Asia', country: 'JPN', city: 'Tokyo', amount: 2940, date: '2015/07/20', }, { id: 2525, region: 'Asia', country: 'KOR', city: 'Seoul', amount: 1175, date: '2015/07/16', }, { id: 2526, region: 'Australia', country: 'AUS', city: 'Sydney', amount: 4100, date: '2015/07/08', }, { id: 2527, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 2715, date: '2015/07/07', }, { id: 2528, region: 'Africa', country: 'ZAF', city: 'Pretoria', amount: 2740, date: '2015/07/09', }, { id: 2529, region: 'Africa', country: 'EGY', city: 'Cairo', amount: 480, date: '2015/07/07', }, { id: 2530, region: 'Australia', country: 'AUS', city: 'Melbourne', amount: 4770, date: '2015/07/15', }, { id: 2531, region: 'North America', country: 'CAN', city: 'Edmonton', amount: 380, date: '2015/07/17', }];