@vx/mock-data
Advanced tools
Comparing version 0.0.179 to 0.0.182
@@ -7,2 +7,3 @@ "use strict"; | ||
exports.default = genBin; | ||
var defaultCount = function defaultCount(i, n) { | ||
@@ -19,3 +20,2 @@ return Math.random() * (25 * (n - i)); | ||
var count = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : defaultCount; | ||
return Array(n).fill(1).reduce(function (data, d, i) { | ||
@@ -22,0 +22,0 @@ return data.concat([{ |
@@ -1,2 +0,2 @@ | ||
'use strict'; | ||
"use strict"; | ||
@@ -8,6 +8,4 @@ Object.defineProperty(exports, "__esModule", { | ||
var _genBin = require('./genBin'); | ||
var _genBin = _interopRequireDefault(require("./genBin")); | ||
var _genBin2 = _interopRequireDefault(_genBin); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
@@ -19,5 +17,5 @@ | ||
bin: i, | ||
bins: (0, _genBin2.default)(y, bin, count) | ||
bins: (0, _genBin.default)(y, bin, count) | ||
}]); | ||
}, []); | ||
} |
@@ -7,2 +7,3 @@ "use strict"; | ||
exports.default = genDateValue; | ||
function genDateValue(n) { | ||
@@ -9,0 +10,0 @@ return Array(n).fill(1).map(function (d, i) { |
@@ -1,2 +0,2 @@ | ||
'use strict'; | ||
"use strict"; | ||
@@ -6,12 +6,23 @@ Object.defineProperty(exports, "__esModule", { | ||
}); | ||
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); | ||
exports.genPointsRange = genPointsRange; | ||
exports.default = genPoints; | ||
var _d3Random = require('d3-random'); | ||
var _d3Random = require("d3-random"); | ||
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } } | ||
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread(); } | ||
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } | ||
function _iterableToArray(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } | ||
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } | ||
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); } | ||
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } | ||
function _iterableToArrayLimit(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } | ||
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } | ||
var random = (0, _d3Random.randomNormal)(0, 0.2); | ||
@@ -37,4 +48,3 @@ var sqrt3 = Math.sqrt(3); | ||
var count = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 300; | ||
return [].concat(_toConsumableArray(genPointsRange(count, [sqrt3, 1, 0])), _toConsumableArray(genPointsRange(count, [-sqrt3, 1, 1])), _toConsumableArray(genPointsRange(count, [0, -1, 2]))); | ||
return _toConsumableArray(genPointsRange(count, [sqrt3, 1, 0])).concat(_toConsumableArray(genPointsRange(count, [-sqrt3, 1, 1])), _toConsumableArray(genPointsRange(count, [0, -1, 2]))); | ||
} |
@@ -1,88 +0,84 @@ | ||
'use strict'; | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
value: true | ||
}); | ||
exports.default = genStats; | ||
var _d3Random = require('d3-random'); | ||
var _d3Random = require("d3-random"); | ||
var random = (0, _d3Random.randomNormal)(4, 3); | ||
var randomOffset = function randomOffset() { | ||
return Math.random() * 10; | ||
return Math.random() * 10; | ||
}; | ||
var sampleSize = 1000; | ||
function genStats(number) { | ||
var data = []; | ||
var i = void 0; | ||
var data = []; | ||
var i; | ||
var _loop = function _loop() { | ||
var points = []; | ||
var j = void 0; | ||
var offset = randomOffset(); | ||
for (j = 0; j < sampleSize; j += 1) { | ||
points.push(offset + random()); | ||
} | ||
var _loop = function _loop() { | ||
var points = []; | ||
var j = void 0; | ||
var offset = randomOffset(); | ||
points.sort(function (a, b) { | ||
return a - b; | ||
}); | ||
for (j = 0; j < sampleSize; j += 1) { | ||
points.push(offset + random()); | ||
} | ||
var firstQuartile = points[Math.round(sampleSize / 4)]; | ||
var thirdQuartile = points[Math.round(3 * sampleSize / 4)]; | ||
var IQR = thirdQuartile - firstQuartile; | ||
points.sort(function (a, b) { | ||
return a - b; | ||
}); | ||
var firstQuartile = points[Math.round(sampleSize / 4)]; | ||
var thirdQuartile = points[Math.round(3 * sampleSize / 4)]; | ||
var IQR = thirdQuartile - firstQuartile; | ||
var min = firstQuartile - 1.5 * IQR; | ||
var max = thirdQuartile + 1.5 * IQR; | ||
var outliers = points.filter(function (p) { | ||
return p < min || p > max; | ||
}); | ||
var binWidth = 2 * IQR * Math.pow(sampleSize - outliers.length, -1 / 3); | ||
var binNum = Math.round((max - min) / binWidth); | ||
var actualBinWidth = (max - min) / binNum; | ||
var bins = Array(binNum + 2).fill(0); | ||
var values = Array(binNum + 2).fill(min); | ||
var min = firstQuartile - 1.5 * IQR; | ||
var max = thirdQuartile + 1.5 * IQR; | ||
for (var ii = 1; ii <= binNum; ii += 1) { | ||
values[ii] += actualBinWidth * (ii - 0.5); | ||
} | ||
var outliers = points.filter(function (p) { | ||
return p < min || p > max; | ||
}); | ||
var binWidth = 2 * IQR * Math.pow(sampleSize - outliers.length, -1 / 3); | ||
var binNum = Math.round((max - min) / binWidth); | ||
var actualBinWidth = (max - min) / binNum; | ||
values[values.length - 1] = max; | ||
points.filter(function (p) { | ||
return p >= min && p <= max; | ||
}).forEach(function (p) { | ||
bins[Math.floor((p - min) / actualBinWidth) + 1] += 1; | ||
}); | ||
var binData = values.map(function (v, index) { | ||
return { | ||
value: v, | ||
count: bins[index] | ||
}; | ||
}); | ||
var boxPlot = { | ||
x: "Statistics ".concat(i), | ||
min: min, | ||
firstQuartile: firstQuartile, | ||
median: points[Math.round(sampleSize / 2)], | ||
thirdQuartile: thirdQuartile, | ||
max: max, | ||
outliers: outliers | ||
}; | ||
data.push({ | ||
boxPlot: boxPlot, | ||
binData: binData | ||
}); | ||
}; | ||
var bins = Array(binNum + 2).fill(0); | ||
var values = Array(binNum + 2).fill(min); | ||
for (i = 0; i < number; i += 1) { | ||
_loop(); | ||
} | ||
for (var ii = 1; ii <= binNum; ii += 1) { | ||
values[ii] += actualBinWidth * (ii - 0.5); | ||
} | ||
values[values.length - 1] = max; | ||
points.filter(function (p) { | ||
return p >= min && p <= max; | ||
}).forEach(function (p) { | ||
bins[Math.floor((p - min) / actualBinWidth) + 1] += 1; | ||
}); | ||
var binData = values.map(function (v, index) { | ||
return { | ||
value: v, | ||
count: bins[index] | ||
}; | ||
}); | ||
var boxPlot = { | ||
x: 'Statistics ' + i, | ||
min: min, | ||
firstQuartile: firstQuartile, | ||
median: points[Math.round(sampleSize / 2)], | ||
thirdQuartile: thirdQuartile, | ||
max: max, | ||
outliers: outliers | ||
}; | ||
data.push({ | ||
boxPlot: boxPlot, | ||
binData: binData | ||
}); | ||
}; | ||
for (i = 0; i < number; i += 1) { | ||
_loop(); | ||
} | ||
return data; | ||
return data; | ||
} |
@@ -1,2 +0,2 @@ | ||
'use strict'; | ||
"use strict"; | ||
@@ -6,129 +6,115 @@ Object.defineProperty(exports, "__esModule", { | ||
}); | ||
var _genDateValue = require('./generators/genDateValue'); | ||
Object.defineProperty(exports, 'genDateValue', { | ||
Object.defineProperty(exports, "genDateValue", { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_genDateValue).default; | ||
return _genDateValue.default; | ||
} | ||
}); | ||
var _genRandomNormalPoints = require('./generators/genRandomNormalPoints'); | ||
Object.defineProperty(exports, 'genRandomNormalPoints', { | ||
Object.defineProperty(exports, "genRandomNormalPoints", { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_genRandomNormalPoints).default; | ||
return _genRandomNormalPoints.default; | ||
} | ||
}); | ||
var _genBin = require('./generators/genBin'); | ||
Object.defineProperty(exports, 'genBin', { | ||
Object.defineProperty(exports, "genBin", { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_genBin).default; | ||
return _genBin.default; | ||
} | ||
}); | ||
var _genBins = require('./generators/genBins'); | ||
Object.defineProperty(exports, 'genBins', { | ||
Object.defineProperty(exports, "genBins", { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_genBins).default; | ||
return _genBins.default; | ||
} | ||
}); | ||
var _genStats = require('./generators/genStats'); | ||
Object.defineProperty(exports, 'genStats', { | ||
Object.defineProperty(exports, "genStats", { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_genStats).default; | ||
return _genStats.default; | ||
} | ||
}); | ||
var _appleStock = require('./mocks/appleStock'); | ||
Object.defineProperty(exports, 'appleStock', { | ||
Object.defineProperty(exports, "appleStock", { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_appleStock).default; | ||
return _appleStock.default; | ||
} | ||
}); | ||
var _letterFrequency = require('./mocks/letterFrequency'); | ||
Object.defineProperty(exports, 'letterFrequency', { | ||
Object.defineProperty(exports, "letterFrequency", { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_letterFrequency).default; | ||
return _letterFrequency.default; | ||
} | ||
}); | ||
var _browserUsage = require('./mocks/browserUsage'); | ||
Object.defineProperty(exports, 'browserUsage', { | ||
Object.defineProperty(exports, "browserUsage", { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_browserUsage).default; | ||
return _browserUsage.default; | ||
} | ||
}); | ||
var _groupDateValue = require('./mocks/groupDateValue'); | ||
Object.defineProperty(exports, 'groupDateValue', { | ||
Object.defineProperty(exports, "groupDateValue", { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_groupDateValue).default; | ||
return _groupDateValue.default; | ||
} | ||
}); | ||
var _cityTemperature = require('./mocks/cityTemperature'); | ||
Object.defineProperty(exports, 'cityTemperature', { | ||
Object.defineProperty(exports, "cityTemperature", { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_cityTemperature).default; | ||
return _cityTemperature.default; | ||
} | ||
}); | ||
var _lesMiserables = require('./mocks/lesMiserables'); | ||
Object.defineProperty(exports, 'lesMiserables', { | ||
Object.defineProperty(exports, "lesMiserables", { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_lesMiserables).default; | ||
return _lesMiserables.default; | ||
} | ||
}); | ||
var _exoplanets = require('./mocks/exoplanets'); | ||
Object.defineProperty(exports, 'exoplanets', { | ||
Object.defineProperty(exports, "exoplanets", { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_exoplanets).default; | ||
return _exoplanets.default; | ||
} | ||
}); | ||
var _planets = require('./mocks/planets'); | ||
Object.defineProperty(exports, 'planets', { | ||
Object.defineProperty(exports, "planets", { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_planets).default; | ||
return _planets.default; | ||
} | ||
}); | ||
var _shakespeare = require('./mocks/shakespeare'); | ||
Object.defineProperty(exports, 'shakespeare', { | ||
Object.defineProperty(exports, "shakespeare", { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_shakespeare).default; | ||
return _shakespeare.default; | ||
} | ||
}); | ||
var _genDateValue = _interopRequireDefault(require("./generators/genDateValue")); | ||
var _genRandomNormalPoints = _interopRequireDefault(require("./generators/genRandomNormalPoints")); | ||
var _genBin = _interopRequireDefault(require("./generators/genBin")); | ||
var _genBins = _interopRequireDefault(require("./generators/genBins")); | ||
var _genStats = _interopRequireDefault(require("./generators/genStats")); | ||
var _appleStock = _interopRequireDefault(require("./mocks/appleStock")); | ||
var _letterFrequency = _interopRequireDefault(require("./mocks/letterFrequency")); | ||
var _browserUsage = _interopRequireDefault(require("./mocks/browserUsage")); | ||
var _groupDateValue = _interopRequireDefault(require("./mocks/groupDateValue")); | ||
var _cityTemperature = _interopRequireDefault(require("./mocks/cityTemperature")); | ||
var _lesMiserables = _interopRequireDefault(require("./mocks/lesMiserables")); | ||
var _exoplanets = _interopRequireDefault(require("./mocks/exoplanets")); | ||
var _planets = _interopRequireDefault(require("./mocks/planets")); | ||
var _shakespeare = _interopRequireDefault(require("./mocks/shakespeare")); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } |
@@ -1,2 +0,2 @@ | ||
'use strict'; | ||
"use strict"; | ||
@@ -6,5 +6,1102 @@ Object.defineProperty(exports, "__esModule", { | ||
}); | ||
exports.default = { | ||
exports.default = void 0; | ||
var _default = { | ||
currency: 'USD', | ||
prices: [{ price: '2486.69', time: '2017-07-03T00:00:00Z' }, { price: '2457.05', time: '2017-07-02T00:00:00Z' }, { price: '2486.09', time: '2017-07-01T00:00:00Z' }, { price: '2535.85', time: '2017-06-30T00:00:00Z' }, { price: '2546.06', time: '2017-06-29T00:00:00Z' }, { price: '2465.83', time: '2017-06-28T00:00:00Z' }, { price: '2424.59', time: '2017-06-27T00:00:00Z' }, { price: '2503.52', time: '2017-06-26T00:00:00Z' }, { price: '2605.97', time: '2017-06-25T00:00:00Z' }, { price: '2681.55', time: '2017-06-24T00:00:00Z' }, { price: '2685.69', time: '2017-06-23T00:00:00Z' }, { price: '2677.86', time: '2017-06-22T00:00:00Z' }, { price: '2672.44', time: '2017-06-21T00:00:00Z' }, { price: '2604.15', time: '2017-06-20T00:00:00Z' }, { price: '2560.02', time: '2017-06-19T00:00:00Z' }, { price: '2560.02', time: '2017-06-18T00:00:00Z' }, { price: '2496.85', time: '2017-06-17T00:00:00Z' }, { price: '2396.05', time: '2017-06-16T00:00:00Z' }, { price: '2510.72', time: '2017-06-15T00:00:00Z' }, { price: '2691.87', time: '2017-06-14T00:00:00Z' }, { price: '2767.11', time: '2017-06-13T00:00:00Z' }, { price: '2875.40', time: '2017-06-12T00:00:00Z' }, { price: '2893.70', time: '2017-06-11T00:00:00Z' }, { price: '2840.12', time: '2017-06-10T00:00:00Z' }, { price: '2787.07', time: '2017-06-09T00:00:00Z' }, { price: '2784.10', time: '2017-06-08T00:00:00Z' }, { price: '2824.72', time: '2017-06-07T00:00:00Z' }, { price: '2717.66', time: '2017-06-06T00:00:00Z' }, { price: '2561.24', time: '2017-06-05T00:00:00Z' }, { price: '2521.49', time: '2017-06-04T00:00:00Z' }, { price: '2474.40', time: '2017-06-03T00:00:00Z' }, { price: '2415.43', time: '2017-06-02T00:00:00Z' }, { price: '2326.10', time: '2017-06-01T00:00:00Z' }, { price: '2257.12', time: '2017-05-31T00:00:00Z' }, { price: '2259.77', time: '2017-05-30T00:00:00Z' }, { price: '2241.54', time: '2017-05-29T00:00:00Z' }, { price: '2177.53', time: '2017-05-28T00:00:00Z' }, { price: '2286.81', time: '2017-05-27T00:00:00Z' }, { price: '2529.24', time: '2017-05-26T00:00:00Z' }, { price: '2495.06', time: '2017-05-25T00:00:00Z' }, { price: '2291.99', time: '2017-05-24T00:00:00Z' }, { price: '2193.03', time: '2017-05-23T00:00:00Z' }, { price: '2111.77', time: '2017-05-22T00:00:00Z' }, { price: '2028.07', time: '2017-05-21T00:00:00Z' }, { price: '1969.02', time: '2017-05-20T00:00:00Z' }, { price: '1887.03', time: '2017-05-19T00:00:00Z' }, { price: '1826.10', time: '2017-05-18T00:00:00Z' }, { price: '1780.64', time: '2017-05-17T00:00:00Z' }, { price: '1749.55', time: '2017-05-16T00:00:00Z' }, { price: '1776.40', time: '2017-05-15T00:00:00Z' }, { price: '1757.89', time: '2017-05-14T00:00:00Z' }, { price: '1744.99', time: '2017-05-13T00:00:00Z' }, { price: '1805.78', time: '2017-05-12T00:00:00Z' }, { price: '1797.73', time: '2017-05-11T00:00:00Z' }, { price: '1744.12', time: '2017-05-10T00:00:00Z' }, { price: '1686.35', time: '2017-05-09T00:00:00Z' }, { price: '1615.85', time: '2017-05-08T00:00:00Z' }, { price: '1587.20', time: '2017-05-07T00:00:00Z' }, { price: '1586.94', time: '2017-05-06T00:00:00Z' }, { price: '1581.34', time: '2017-05-05T00:00:00Z' }, { price: '1527.60', time: '2017-05-04T00:00:00Z' }, { price: '1471.55', time: '2017-05-03T00:00:00Z' }, { price: '1443.54', time: '2017-05-02T00:00:00Z' }, { price: '1390.24', time: '2017-05-01T00:00:00Z' }, { price: '1355.06', time: '2017-04-30T00:00:00Z' }, { price: '1348.26', time: '2017-04-29T00:00:00Z' }, { price: '1332.27', time: '2017-04-28T00:00:00Z' }, { price: '1309.72', time: '2017-04-27T00:00:00Z' }, { price: '1284.85', time: '2017-04-26T00:00:00Z' }, { price: '1263.26', time: '2017-04-25T00:00:00Z' }, { price: '1250.04', time: '2017-04-24T00:00:00Z' }, { price: '1246.39', time: '2017-04-23T00:00:00Z' }, { price: '1246.58', time: '2017-04-22T00:00:00Z' }, { price: '1236.49', time: '2017-04-21T00:00:00Z' }, { price: '1213.50', time: '2017-04-20T00:00:00Z' }, { price: '1200.11', time: '2017-04-19T00:00:00Z' }, { price: '1189.61', time: '2017-04-18T00:00:00Z' }, { price: '1181.45', time: '2017-04-17T00:00:00Z' }, { price: '1181.88', time: '2017-04-16T00:00:00Z' }, { price: '1181.83', time: '2017-04-15T00:00:00Z' }, { price: '1186.16', time: '2017-04-14T00:00:00Z' }, { price: '1204.46', time: '2017-04-13T00:00:00Z' }, { price: '1217.29', time: '2017-04-12T00:00:00Z' }, { price: '1213.63', time: '2017-04-11T00:00:00Z' }, { price: '1202.89', time: '2017-04-10T00:00:00Z' }, { price: '1191.20', time: '2017-04-09T00:00:00Z' }, { price: '1190.41', time: '2017-04-08T00:00:00Z' }, { price: '1180.29', time: '2017-04-07T00:00:00Z' }, { price: '1150.33', time: '2017-04-06T00:00:00Z' }, { price: '1140.12', time: '2017-04-05T00:00:00Z' }, { price: '1145.39', time: '2017-04-04T00:00:00Z' }, { price: '1119.65', time: '2017-04-03T00:00:00Z' }, { price: '1093.52', time: '2017-04-02T00:00:00Z' }, { price: '1076.90', time: '2017-04-01T00:00:00Z' }, { price: '1051.25', time: '2017-03-31T00:00:00Z' }, { price: '1037.28', time: '2017-03-30T00:00:00Z' }, { price: '1039.87', time: '2017-03-29T00:00:00Z' }, { price: '1023.50', time: '2017-03-28T00:00:00Z' }, { price: '988.37', time: '2017-03-27T00:00:00Z' }, { price: '952.11', time: '2017-03-26T00:00:00Z' }, { price: '961.10', time: '2017-03-25T00:00:00Z' }, { price: '1014.03', time: '2017-03-24T00:00:00Z' }, { price: '1043.38', time: '2017-03-23T00:00:00Z' }, { price: '1068.36', time: '2017-03-22T00:00:00Z' }, { price: '1060.90', time: '2017-03-21T00:00:00Z' }, { price: '1024.30', time: '2017-03-20T00:00:00Z' }, { price: '1022.64', time: '2017-03-19T00:00:00Z' }, { price: '1082.00', time: '2017-03-18T00:00:00Z' }, { price: '1177.35', time: '2017-03-17T00:00:00Z' }, { price: '1238.63', time: '2017-03-16T00:00:00Z' }, { price: '1250.37', time: '2017-03-15T00:00:00Z' }, { price: '1242.67', time: '2017-03-14T00:00:00Z' }, { price: '1222.09', time: '2017-03-13T00:00:00Z' }, { price: '1193.70', time: '2017-03-12T00:00:00Z' }, { price: '1194.52', time: '2017-03-11T00:00:00Z' }, { price: '1193.55', time: '2017-03-10T00:00:00Z' }, { price: '1188.06', time: '2017-03-09T00:00:00Z' }, { price: '1227.60', time: '2017-03-08T00:00:00Z' }, { price: '1270.32', time: '2017-03-07T00:00:00Z' }, { price: '1274.57', time: '2017-03-06T00:00:00Z' }, { price: '1274.54', time: '2017-03-05T00:00:00Z' }, { price: '1280.36', time: '2017-03-04T00:00:00Z' }, { price: '1262.32', time: '2017-03-03T00:00:00Z' }, { price: '1228.19', time: '2017-03-02T00:00:00Z' }, { price: '1203.02', time: '2017-03-01T00:00:00Z' }, { price: '1192.69', time: '2017-02-28T00:00:00Z' }, { price: '1177.64', time: '2017-02-27T00:00:00Z' }, { price: '1168.97', time: '2017-02-26T00:00:00Z' }, { price: '1180.19', time: '2017-02-25T00:00:00Z' }, { price: '1168.59', time: '2017-02-24T00:00:00Z' }, { price: '1137.16', time: '2017-02-23T00:00:00Z' }, { price: '1114.89', time: '2017-02-22T00:00:00Z' }, { price: '1083.83', time: '2017-02-21T00:00:00Z' }, { price: '1061.14', time: '2017-02-20T00:00:00Z' }, { price: '1062.95', time: '2017-02-19T00:00:00Z' }, { price: '1058.15', time: '2017-02-18T00:00:00Z' }, { price: '1039.30', time: '2017-02-17T00:00:00Z' }, { price: '1020.38', time: '2017-02-16T00:00:00Z' }, { price: '1010.49', time: '2017-02-15T00:00:00Z' }, { price: '1006.83', time: '2017-02-14T00:00:00Z' }, { price: '1008.77', time: '2017-02-13T00:00:00Z' }, { price: '1013.09', time: '2017-02-12T00:00:00Z' }, { price: '998.84', time: '2017-02-11T00:00:00Z' }, { price: '1005.98', time: '2017-02-10T00:00:00Z' }, { price: '1040.79', time: '2017-02-09T00:00:00Z' }, { price: '1049.02', time: '2017-02-08T00:00:00Z' }, { price: '1033.10', time: '2017-02-07T00:00:00Z' }, { price: '1022.49', time: '2017-02-06T00:00:00Z' }, { price: '1021.09', time: '2017-02-05T00:00:00Z' }, { price: '1016.81', time: '2017-02-04T00:00:00Z' }, { price: '1004.46', time: '2017-02-03T00:00:00Z' }, { price: '985.20', time: '2017-02-02T00:00:00Z' }, { price: '960.05', time: '2017-02-01T00:00:00Z' }, { price: '932.34', time: '2017-01-31T00:00:00Z' }, { price: '921.61', time: '2017-01-30T00:00:00Z' }, { price: '923.45', time: '2017-01-29T00:00:00Z' }, { price: '922.11', time: '2017-01-28T00:00:00Z' }, { price: '914.58', time: '2017-01-27T00:00:00Z' }, { price: '903.38', time: '2017-01-26T00:00:00Z' }, { price: '902.84', time: '2017-01-25T00:00:00Z' }, { price: '915.84', time: '2017-01-24T00:00:00Z' }, { price: '926.01', time: '2017-01-23T00:00:00Z' }, { price: '923.76', time: '2017-01-22T00:00:00Z' }, { price: '908.72', time: '2017-01-21T00:00:00Z' }, { price: '897.88', time: '2017-01-20T00:00:00Z' }, { price: '893.30', time: '2017-01-19T00:00:00Z' }, { price: '884.78', time: '2017-01-18T00:00:00Z' }, { price: '857.51', time: '2017-01-17T00:00:00Z' }, { price: '830.58', time: '2017-01-16T00:00:00Z' }, { price: '830.58', time: '2017-01-15T00:00:00Z' }, { price: '823.48', time: '2017-01-14T00:00:00Z' }, { price: '801.98', time: '2017-01-13T00:00:00Z' }, { price: '822.05', time: '2017-01-12T00:00:00Z' }, { price: '879.50', time: '2017-01-11T00:00:00Z' }, { price: '903.21', time: '2017-01-10T00:00:00Z' }, { price: '911.94', time: '2017-01-09T00:00:00Z' }, { price: '901.05', time: '2017-01-08T00:00:00Z' }, { price: '908.09', time: '2017-01-07T00:00:00Z' }, { price: '996.25', time: '2017-01-06T00:00:00Z' }, { price: '1069.40', time: '2017-01-05T00:00:00Z' }, { price: '1051.69', time: '2017-01-04T00:00:00Z' }, { price: '1016.35', time: '2017-01-03T00:00:00Z' }, { price: '996.34', time: '2017-01-02T00:00:00Z' }, { price: '970.17', time: '2017-01-01T00:00:00Z' }, { price: '958.35', time: '2016-12-31T00:00:00Z' }, { price: '964.73', time: '2016-12-30T00:00:00Z' }, { price: '962.92', time: '2016-12-29T00:00:00Z' }, { price: '934.67', time: '2016-12-28T00:00:00Z' }, { price: '908.25', time: '2016-12-27T00:00:00Z' }, { price: '886.48', time: '2016-12-26T00:00:00Z' }, { price: '887.28', time: '2016-12-25T00:00:00Z' }, { price: '899.73', time: '2016-12-24T00:00:00Z' }, { price: '877.04', time: '2016-12-23T00:00:00Z' }, { price: '835.45', time: '2016-12-22T00:00:00Z' }, { price: '803.14', time: '2016-12-21T00:00:00Z' }, { price: '792.10', time: '2016-12-20T00:00:00Z' }, { price: '791.55', time: '2016-12-19T00:00:00Z' }, { price: '789.75', time: '2016-12-18T00:00:00Z' }, { price: '784.61', time: '2016-12-17T00:00:00Z' }, { price: '779.31', time: '2016-12-16T00:00:00Z' }, { price: '778.71', time: '2016-12-15T00:00:00Z' }, { price: '779.81', time: '2016-12-14T00:00:00Z' }, { price: '778.68', time: '2016-12-13T00:00:00Z' }, { price: '773.11', time: '2016-12-12T00:00:00Z' }, { price: '772.10', time: '2016-12-11T00:00:00Z' }, { price: '772.37', time: '2016-12-10T00:00:00Z' }, { price: '769.21', time: '2016-12-09T00:00:00Z' }, { price: '764.95', time: '2016-12-08T00:00:00Z' }, { price: '759.64', time: '2016-12-07T00:00:00Z' }, { price: '756.74', time: '2016-12-06T00:00:00Z' }, { price: '761.05', time: '2016-12-05T00:00:00Z' }, { price: '766.03', time: '2016-12-04T00:00:00Z' }, { price: '767.07', time: '2016-12-03T00:00:00Z' }, { price: '758.38', time: '2016-12-02T00:00:00Z' }, { price: '743.33', time: '2016-12-01T00:00:00Z' }, { price: '734.93', time: '2016-11-30T00:00:00Z' }, { price: '731.72', time: '2016-11-29T00:00:00Z' }, { price: '732.50', time: '2016-11-28T00:00:00Z' }, { price: '734.23', time: '2016-11-27T00:00:00Z' }, { price: '734.74', time: '2016-11-26T00:00:00Z' }, { price: '736.43', time: '2016-11-25T00:00:00Z' }, { price: '740.24', time: '2016-11-24T00:00:00Z' }, { price: '740.85', time: '2016-11-23T00:00:00Z' }, { price: '737.26', time: '2016-11-22T00:00:00Z' }, { price: '738.17', time: '2016-11-21T00:00:00Z' }, { price: '745.10', time: '2016-11-20T00:00:00Z' }, { price: '745.69', time: '2016-11-19T00:00:00Z' }, { price: '742.72', time: '2016-11-18T00:00:00Z' }, { price: '732.75', time: '2016-11-17T00:00:00Z' }, { price: '716.87', time: '2016-11-16T00:00:00Z' }, { price: '707.17', time: '2016-11-15T00:00:00Z' }, { price: '700.30', time: '2016-11-14T00:00:00Z' }, { price: '703.71', time: '2016-11-13T00:00:00Z' }, { price: '712.65', time: '2016-11-12T00:00:00Z' }, { price: '715.15', time: '2016-11-11T00:00:00Z' }, { price: '721.56', time: '2016-11-10T00:00:00Z' }, { price: '718.51', time: '2016-11-09T00:00:00Z' }, { price: '708.54', time: '2016-11-08T00:00:00Z' }, { price: '710.74', time: '2016-11-07T00:00:00Z' }, { price: '709.48', time: '2016-11-06T00:00:00Z' }, { price: '703.17', time: '2016-11-05T00:00:00Z' }, { price: '712.76', time: '2016-11-04T00:00:00Z' }, { price: '725.39', time: '2016-11-03T00:00:00Z' }, { price: '723.98', time: '2016-11-02T00:00:00Z' }, { price: '710.86', time: '2016-11-01T00:00:00Z' }, { price: '703.78', time: '2016-10-31T00:00:00Z' }, { price: '708.07', time: '2016-10-30T00:00:00Z' }, { price: '697.97', time: '2016-10-29T00:00:00Z' }, { price: '685.53', time: '2016-10-28T00:00:00Z' }, { price: '673.66', time: '2016-10-27T00:00:00Z' }, { price: '658.85', time: '2016-10-26T00:00:00Z' }, { price: '651.53', time: '2016-10-25T00:00:00Z' }, { price: '650.70', time: '2016-10-24T00:00:00Z' }, { price: '645.89', time: '2016-10-23T00:00:00Z' }, { price: '634.72', time: '2016-10-22T00:00:00Z' }, { price: '629.16', time: '2016-10-21T00:00:00Z' }, { price: '630.62', time: '2016-10-20T00:00:00Z' }, { price: '635.10', time: '2016-10-19T00:00:00Z' }, { price: '638.61', time: '2016-10-18T00:00:00Z' }, { price: '640.72', time: '2016-10-17T00:00:00Z' }, { price: '640.40', time: '2016-10-16T00:00:00Z' }, { price: '638.01', time: '2016-10-15T00:00:00Z' }, { price: '636.78', time: '2016-10-14T00:00:00Z' }, { price: '638.92', time: '2016-10-13T00:00:00Z' }, { price: '637.50', time: '2016-10-12T00:00:00Z' }, { price: '626.13', time: '2016-10-11T00:00:00Z' }, { price: '617.95', time: '2016-10-10T00:00:00Z' }, { price: '618.60', time: '2016-10-09T00:00:00Z' }, { price: '617.01', time: '2016-10-08T00:00:00Z' }, { price: '613.82', time: '2016-10-07T00:00:00Z' }, { price: '612.13', time: '2016-10-06T00:00:00Z' }, { price: '611.18', time: '2016-10-05T00:00:00Z' }, { price: '612.03', time: '2016-10-04T00:00:00Z' }, { price: '613.11', time: '2016-10-03T00:00:00Z' }, { price: '613.41', time: '2016-10-02T00:00:00Z' }, { price: '610.09', time: '2016-10-01T00:00:00Z' }, { price: '605.86', time: '2016-09-30T00:00:00Z' }, { price: '605.11', time: '2016-09-29T00:00:00Z' }, { price: '604.93', time: '2016-09-28T00:00:00Z' }, { price: '605.19', time: '2016-09-27T00:00:00Z' }, { price: '603.80', time: '2016-09-26T00:00:00Z' }, { price: '603.11', time: '2016-09-25T00:00:00Z' }, { price: '601.59', time: '2016-09-24T00:00:00Z' }, { price: '598.07', time: '2016-09-23T00:00:00Z' }, { price: '597.36', time: '2016-09-22T00:00:00Z' }, { price: '603.37', time: '2016-09-21T00:00:00Z' }, { price: '609.43', time: '2016-09-20T00:00:00Z' }, { price: '609.55', time: '2016-09-19T00:00:00Z' }, { price: '608.32', time: '2016-09-18T00:00:00Z' }, { price: '607.22', time: '2016-09-17T00:00:00Z' }, { price: '607.46', time: '2016-09-16T00:00:00Z' }, { price: '608.80', time: '2016-09-15T00:00:00Z' }, { price: '608.80', time: '2016-09-14T00:00:00Z' }, { price: '607.62', time: '2016-09-13T00:00:00Z' }, { price: '614.06', time: '2016-09-12T00:00:00Z' }, { price: '622.21', time: '2016-09-11T00:00:00Z' }, { price: '623.19', time: '2016-09-10T00:00:00Z' }, { price: '623.02', time: '2016-09-09T00:00:00Z' }, { price: '618.19', time: '2016-09-08T00:00:00Z' }, { price: '611.09', time: '2016-09-07T00:00:00Z' }, { price: '608.25', time: '2016-09-06T00:00:00Z' }, { price: '607.02', time: '2016-09-05T00:00:00Z' }, { price: '593.49', time: '2016-09-04T00:00:00Z' }, { price: '576.89', time: '2016-09-03T00:00:00Z' }, { price: '572.49', time: '2016-09-02T00:00:00Z' }, { price: '572.06', time: '2016-09-01T00:00:00Z' }, { price: '573.79', time: '2016-08-31T00:00:00Z' }, { price: '574.60', time: '2016-08-30T00:00:00Z' }, { price: '573.26', time: '2016-08-29T00:00:00Z' }, { price: '573.30', time: '2016-08-28T00:00:00Z' }, { price: '576.00', time: '2016-08-27T00:00:00Z' }, { price: '576.57', time: '2016-08-26T00:00:00Z' }, { price: '577.57', time: '2016-08-25T00:00:00Z' }, { price: '581.51', time: '2016-08-24T00:00:00Z' }, { price: '582.90', time: '2016-08-23T00:00:00Z' }, { price: '582.28', time: '2016-08-22T00:00:00Z' }, { price: '580.17', time: '2016-08-21T00:00:00Z' }, { price: '576.59', time: '2016-08-20T00:00:00Z' }, { price: '575.01', time: '2016-08-19T00:00:00Z' }, { price: '575.87', time: '2016-08-18T00:00:00Z' }, { price: '574.76', time: '2016-08-17T00:00:00Z' }, { price: '571.46', time: '2016-08-16T00:00:00Z' }, { price: '574.12', time: '2016-08-15T00:00:00Z' }, { price: '583.05', time: '2016-08-14T00:00:00Z' }, { price: '587.77', time: '2016-08-13T00:00:00Z' }, { price: '590.57', time: '2016-08-12T00:00:00Z' }, { price: '592.91', time: '2016-08-11T00:00:00Z' }, { price: '590.88', time: '2016-08-10T00:00:00Z' }, { price: '591.39', time: '2016-08-09T00:00:00Z' }, { price: '593.78', time: '2016-08-08T00:00:00Z' }, { price: '588.18', time: '2016-08-07T00:00:00Z' }, { price: '580.65', time: '2016-08-06T00:00:00Z' }, { price: '580.37', time: '2016-08-05T00:00:00Z' }, { price: '568.21', time: '2016-08-04T00:00:00Z' }, { price: '573.49', time: '2016-08-03T00:00:00Z' }, { price: '606.17', time: '2016-08-02T00:00:00Z' }, { price: '629.55', time: '2016-08-01T00:00:00Z' }, { price: '648.08', time: '2016-07-31T00:00:00Z' }, { price: '657.23', time: '2016-07-30T00:00:00Z' }, { price: '657.20', time: '2016-07-29T00:00:00Z' }, { price: '655.84', time: '2016-07-28T00:00:00Z' }, { price: '654.63', time: '2016-07-27T00:00:00Z' }, { price: '656.40', time: '2016-07-26T00:00:00Z' }, { price: '658.69', time: '2016-07-25T00:00:00Z' }, { price: '659.01', time: '2016-07-24T00:00:00Z' }, { price: '660.73', time: '2016-07-23T00:00:00Z' }, { price: '664.14', time: '2016-07-22T00:00:00Z' }, { price: '668.16', time: '2016-07-21T00:00:00Z' }, { price: '672.13', time: '2016-07-20T00:00:00Z' }, { price: '676.06', time: '2016-07-19T00:00:00Z' }, { price: '675.67', time: '2016-07-18T00:00:00Z' }, { price: '669.77', time: '2016-07-17T00:00:00Z' }, { price: '666.29', time: '2016-07-16T00:00:00Z' }, { price: '662.46', time: '2016-07-15T00:00:00Z' }, { price: '661.86', time: '2016-07-14T00:00:00Z' }, { price: '661.74', time: '2016-07-13T00:00:00Z' }, { price: '656.05', time: '2016-07-12T00:00:00Z' }, { price: '651.80', time: '2016-07-11T00:00:00Z' }, { price: '652.32', time: '2016-07-10T00:00:00Z' }, { price: '651.86', time: '2016-07-09T00:00:00Z' }, { price: '647.65', time: '2016-07-08T00:00:00Z' }, { price: '659.86', time: '2016-07-07T00:00:00Z' }, { price: '674.19', time: '2016-07-06T00:00:00Z' }, { price: '674.08', time: '2016-07-05T00:00:00Z' }, { price: '676.18', time: '2016-07-04T00:00:00Z' }] | ||
}; | ||
prices: [{ | ||
price: '2486.69', | ||
time: '2017-07-03T00:00:00Z' | ||
}, { | ||
price: '2457.05', | ||
time: '2017-07-02T00:00:00Z' | ||
}, { | ||
price: '2486.09', | ||
time: '2017-07-01T00:00:00Z' | ||
}, { | ||
price: '2535.85', | ||
time: '2017-06-30T00:00:00Z' | ||
}, { | ||
price: '2546.06', | ||
time: '2017-06-29T00:00:00Z' | ||
}, { | ||
price: '2465.83', | ||
time: '2017-06-28T00:00:00Z' | ||
}, { | ||
price: '2424.59', | ||
time: '2017-06-27T00:00:00Z' | ||
}, { | ||
price: '2503.52', | ||
time: '2017-06-26T00:00:00Z' | ||
}, { | ||
price: '2605.97', | ||
time: '2017-06-25T00:00:00Z' | ||
}, { | ||
price: '2681.55', | ||
time: '2017-06-24T00:00:00Z' | ||
}, { | ||
price: '2685.69', | ||
time: '2017-06-23T00:00:00Z' | ||
}, { | ||
price: '2677.86', | ||
time: '2017-06-22T00:00:00Z' | ||
}, { | ||
price: '2672.44', | ||
time: '2017-06-21T00:00:00Z' | ||
}, { | ||
price: '2604.15', | ||
time: '2017-06-20T00:00:00Z' | ||
}, { | ||
price: '2560.02', | ||
time: '2017-06-19T00:00:00Z' | ||
}, { | ||
price: '2560.02', | ||
time: '2017-06-18T00:00:00Z' | ||
}, { | ||
price: '2496.85', | ||
time: '2017-06-17T00:00:00Z' | ||
}, { | ||
price: '2396.05', | ||
time: '2017-06-16T00:00:00Z' | ||
}, { | ||
price: '2510.72', | ||
time: '2017-06-15T00:00:00Z' | ||
}, { | ||
price: '2691.87', | ||
time: '2017-06-14T00:00:00Z' | ||
}, { | ||
price: '2767.11', | ||
time: '2017-06-13T00:00:00Z' | ||
}, { | ||
price: '2875.40', | ||
time: '2017-06-12T00:00:00Z' | ||
}, { | ||
price: '2893.70', | ||
time: '2017-06-11T00:00:00Z' | ||
}, { | ||
price: '2840.12', | ||
time: '2017-06-10T00:00:00Z' | ||
}, { | ||
price: '2787.07', | ||
time: '2017-06-09T00:00:00Z' | ||
}, { | ||
price: '2784.10', | ||
time: '2017-06-08T00:00:00Z' | ||
}, { | ||
price: '2824.72', | ||
time: '2017-06-07T00:00:00Z' | ||
}, { | ||
price: '2717.66', | ||
time: '2017-06-06T00:00:00Z' | ||
}, { | ||
price: '2561.24', | ||
time: '2017-06-05T00:00:00Z' | ||
}, { | ||
price: '2521.49', | ||
time: '2017-06-04T00:00:00Z' | ||
}, { | ||
price: '2474.40', | ||
time: '2017-06-03T00:00:00Z' | ||
}, { | ||
price: '2415.43', | ||
time: '2017-06-02T00:00:00Z' | ||
}, { | ||
price: '2326.10', | ||
time: '2017-06-01T00:00:00Z' | ||
}, { | ||
price: '2257.12', | ||
time: '2017-05-31T00:00:00Z' | ||
}, { | ||
price: '2259.77', | ||
time: '2017-05-30T00:00:00Z' | ||
}, { | ||
price: '2241.54', | ||
time: '2017-05-29T00:00:00Z' | ||
}, { | ||
price: '2177.53', | ||
time: '2017-05-28T00:00:00Z' | ||
}, { | ||
price: '2286.81', | ||
time: '2017-05-27T00:00:00Z' | ||
}, { | ||
price: '2529.24', | ||
time: '2017-05-26T00:00:00Z' | ||
}, { | ||
price: '2495.06', | ||
time: '2017-05-25T00:00:00Z' | ||
}, { | ||
price: '2291.99', | ||
time: '2017-05-24T00:00:00Z' | ||
}, { | ||
price: '2193.03', | ||
time: '2017-05-23T00:00:00Z' | ||
}, { | ||
price: '2111.77', | ||
time: '2017-05-22T00:00:00Z' | ||
}, { | ||
price: '2028.07', | ||
time: '2017-05-21T00:00:00Z' | ||
}, { | ||
price: '1969.02', | ||
time: '2017-05-20T00:00:00Z' | ||
}, { | ||
price: '1887.03', | ||
time: '2017-05-19T00:00:00Z' | ||
}, { | ||
price: '1826.10', | ||
time: '2017-05-18T00:00:00Z' | ||
}, { | ||
price: '1780.64', | ||
time: '2017-05-17T00:00:00Z' | ||
}, { | ||
price: '1749.55', | ||
time: '2017-05-16T00:00:00Z' | ||
}, { | ||
price: '1776.40', | ||
time: '2017-05-15T00:00:00Z' | ||
}, { | ||
price: '1757.89', | ||
time: '2017-05-14T00:00:00Z' | ||
}, { | ||
price: '1744.99', | ||
time: '2017-05-13T00:00:00Z' | ||
}, { | ||
price: '1805.78', | ||
time: '2017-05-12T00:00:00Z' | ||
}, { | ||
price: '1797.73', | ||
time: '2017-05-11T00:00:00Z' | ||
}, { | ||
price: '1744.12', | ||
time: '2017-05-10T00:00:00Z' | ||
}, { | ||
price: '1686.35', | ||
time: '2017-05-09T00:00:00Z' | ||
}, { | ||
price: '1615.85', | ||
time: '2017-05-08T00:00:00Z' | ||
}, { | ||
price: '1587.20', | ||
time: '2017-05-07T00:00:00Z' | ||
}, { | ||
price: '1586.94', | ||
time: '2017-05-06T00:00:00Z' | ||
}, { | ||
price: '1581.34', | ||
time: '2017-05-05T00:00:00Z' | ||
}, { | ||
price: '1527.60', | ||
time: '2017-05-04T00:00:00Z' | ||
}, { | ||
price: '1471.55', | ||
time: '2017-05-03T00:00:00Z' | ||
}, { | ||
price: '1443.54', | ||
time: '2017-05-02T00:00:00Z' | ||
}, { | ||
price: '1390.24', | ||
time: '2017-05-01T00:00:00Z' | ||
}, { | ||
price: '1355.06', | ||
time: '2017-04-30T00:00:00Z' | ||
}, { | ||
price: '1348.26', | ||
time: '2017-04-29T00:00:00Z' | ||
}, { | ||
price: '1332.27', | ||
time: '2017-04-28T00:00:00Z' | ||
}, { | ||
price: '1309.72', | ||
time: '2017-04-27T00:00:00Z' | ||
}, { | ||
price: '1284.85', | ||
time: '2017-04-26T00:00:00Z' | ||
}, { | ||
price: '1263.26', | ||
time: '2017-04-25T00:00:00Z' | ||
}, { | ||
price: '1250.04', | ||
time: '2017-04-24T00:00:00Z' | ||
}, { | ||
price: '1246.39', | ||
time: '2017-04-23T00:00:00Z' | ||
}, { | ||
price: '1246.58', | ||
time: '2017-04-22T00:00:00Z' | ||
}, { | ||
price: '1236.49', | ||
time: '2017-04-21T00:00:00Z' | ||
}, { | ||
price: '1213.50', | ||
time: '2017-04-20T00:00:00Z' | ||
}, { | ||
price: '1200.11', | ||
time: '2017-04-19T00:00:00Z' | ||
}, { | ||
price: '1189.61', | ||
time: '2017-04-18T00:00:00Z' | ||
}, { | ||
price: '1181.45', | ||
time: '2017-04-17T00:00:00Z' | ||
}, { | ||
price: '1181.88', | ||
time: '2017-04-16T00:00:00Z' | ||
}, { | ||
price: '1181.83', | ||
time: '2017-04-15T00:00:00Z' | ||
}, { | ||
price: '1186.16', | ||
time: '2017-04-14T00:00:00Z' | ||
}, { | ||
price: '1204.46', | ||
time: '2017-04-13T00:00:00Z' | ||
}, { | ||
price: '1217.29', | ||
time: '2017-04-12T00:00:00Z' | ||
}, { | ||
price: '1213.63', | ||
time: '2017-04-11T00:00:00Z' | ||
}, { | ||
price: '1202.89', | ||
time: '2017-04-10T00:00:00Z' | ||
}, { | ||
price: '1191.20', | ||
time: '2017-04-09T00:00:00Z' | ||
}, { | ||
price: '1190.41', | ||
time: '2017-04-08T00:00:00Z' | ||
}, { | ||
price: '1180.29', | ||
time: '2017-04-07T00:00:00Z' | ||
}, { | ||
price: '1150.33', | ||
time: '2017-04-06T00:00:00Z' | ||
}, { | ||
price: '1140.12', | ||
time: '2017-04-05T00:00:00Z' | ||
}, { | ||
price: '1145.39', | ||
time: '2017-04-04T00:00:00Z' | ||
}, { | ||
price: '1119.65', | ||
time: '2017-04-03T00:00:00Z' | ||
}, { | ||
price: '1093.52', | ||
time: '2017-04-02T00:00:00Z' | ||
}, { | ||
price: '1076.90', | ||
time: '2017-04-01T00:00:00Z' | ||
}, { | ||
price: '1051.25', | ||
time: '2017-03-31T00:00:00Z' | ||
}, { | ||
price: '1037.28', | ||
time: '2017-03-30T00:00:00Z' | ||
}, { | ||
price: '1039.87', | ||
time: '2017-03-29T00:00:00Z' | ||
}, { | ||
price: '1023.50', | ||
time: '2017-03-28T00:00:00Z' | ||
}, { | ||
price: '988.37', | ||
time: '2017-03-27T00:00:00Z' | ||
}, { | ||
price: '952.11', | ||
time: '2017-03-26T00:00:00Z' | ||
}, { | ||
price: '961.10', | ||
time: '2017-03-25T00:00:00Z' | ||
}, { | ||
price: '1014.03', | ||
time: '2017-03-24T00:00:00Z' | ||
}, { | ||
price: '1043.38', | ||
time: '2017-03-23T00:00:00Z' | ||
}, { | ||
price: '1068.36', | ||
time: '2017-03-22T00:00:00Z' | ||
}, { | ||
price: '1060.90', | ||
time: '2017-03-21T00:00:00Z' | ||
}, { | ||
price: '1024.30', | ||
time: '2017-03-20T00:00:00Z' | ||
}, { | ||
price: '1022.64', | ||
time: '2017-03-19T00:00:00Z' | ||
}, { | ||
price: '1082.00', | ||
time: '2017-03-18T00:00:00Z' | ||
}, { | ||
price: '1177.35', | ||
time: '2017-03-17T00:00:00Z' | ||
}, { | ||
price: '1238.63', | ||
time: '2017-03-16T00:00:00Z' | ||
}, { | ||
price: '1250.37', | ||
time: '2017-03-15T00:00:00Z' | ||
}, { | ||
price: '1242.67', | ||
time: '2017-03-14T00:00:00Z' | ||
}, { | ||
price: '1222.09', | ||
time: '2017-03-13T00:00:00Z' | ||
}, { | ||
price: '1193.70', | ||
time: '2017-03-12T00:00:00Z' | ||
}, { | ||
price: '1194.52', | ||
time: '2017-03-11T00:00:00Z' | ||
}, { | ||
price: '1193.55', | ||
time: '2017-03-10T00:00:00Z' | ||
}, { | ||
price: '1188.06', | ||
time: '2017-03-09T00:00:00Z' | ||
}, { | ||
price: '1227.60', | ||
time: '2017-03-08T00:00:00Z' | ||
}, { | ||
price: '1270.32', | ||
time: '2017-03-07T00:00:00Z' | ||
}, { | ||
price: '1274.57', | ||
time: '2017-03-06T00:00:00Z' | ||
}, { | ||
price: '1274.54', | ||
time: '2017-03-05T00:00:00Z' | ||
}, { | ||
price: '1280.36', | ||
time: '2017-03-04T00:00:00Z' | ||
}, { | ||
price: '1262.32', | ||
time: '2017-03-03T00:00:00Z' | ||
}, { | ||
price: '1228.19', | ||
time: '2017-03-02T00:00:00Z' | ||
}, { | ||
price: '1203.02', | ||
time: '2017-03-01T00:00:00Z' | ||
}, { | ||
price: '1192.69', | ||
time: '2017-02-28T00:00:00Z' | ||
}, { | ||
price: '1177.64', | ||
time: '2017-02-27T00:00:00Z' | ||
}, { | ||
price: '1168.97', | ||
time: '2017-02-26T00:00:00Z' | ||
}, { | ||
price: '1180.19', | ||
time: '2017-02-25T00:00:00Z' | ||
}, { | ||
price: '1168.59', | ||
time: '2017-02-24T00:00:00Z' | ||
}, { | ||
price: '1137.16', | ||
time: '2017-02-23T00:00:00Z' | ||
}, { | ||
price: '1114.89', | ||
time: '2017-02-22T00:00:00Z' | ||
}, { | ||
price: '1083.83', | ||
time: '2017-02-21T00:00:00Z' | ||
}, { | ||
price: '1061.14', | ||
time: '2017-02-20T00:00:00Z' | ||
}, { | ||
price: '1062.95', | ||
time: '2017-02-19T00:00:00Z' | ||
}, { | ||
price: '1058.15', | ||
time: '2017-02-18T00:00:00Z' | ||
}, { | ||
price: '1039.30', | ||
time: '2017-02-17T00:00:00Z' | ||
}, { | ||
price: '1020.38', | ||
time: '2017-02-16T00:00:00Z' | ||
}, { | ||
price: '1010.49', | ||
time: '2017-02-15T00:00:00Z' | ||
}, { | ||
price: '1006.83', | ||
time: '2017-02-14T00:00:00Z' | ||
}, { | ||
price: '1008.77', | ||
time: '2017-02-13T00:00:00Z' | ||
}, { | ||
price: '1013.09', | ||
time: '2017-02-12T00:00:00Z' | ||
}, { | ||
price: '998.84', | ||
time: '2017-02-11T00:00:00Z' | ||
}, { | ||
price: '1005.98', | ||
time: '2017-02-10T00:00:00Z' | ||
}, { | ||
price: '1040.79', | ||
time: '2017-02-09T00:00:00Z' | ||
}, { | ||
price: '1049.02', | ||
time: '2017-02-08T00:00:00Z' | ||
}, { | ||
price: '1033.10', | ||
time: '2017-02-07T00:00:00Z' | ||
}, { | ||
price: '1022.49', | ||
time: '2017-02-06T00:00:00Z' | ||
}, { | ||
price: '1021.09', | ||
time: '2017-02-05T00:00:00Z' | ||
}, { | ||
price: '1016.81', | ||
time: '2017-02-04T00:00:00Z' | ||
}, { | ||
price: '1004.46', | ||
time: '2017-02-03T00:00:00Z' | ||
}, { | ||
price: '985.20', | ||
time: '2017-02-02T00:00:00Z' | ||
}, { | ||
price: '960.05', | ||
time: '2017-02-01T00:00:00Z' | ||
}, { | ||
price: '932.34', | ||
time: '2017-01-31T00:00:00Z' | ||
}, { | ||
price: '921.61', | ||
time: '2017-01-30T00:00:00Z' | ||
}, { | ||
price: '923.45', | ||
time: '2017-01-29T00:00:00Z' | ||
}, { | ||
price: '922.11', | ||
time: '2017-01-28T00:00:00Z' | ||
}, { | ||
price: '914.58', | ||
time: '2017-01-27T00:00:00Z' | ||
}, { | ||
price: '903.38', | ||
time: '2017-01-26T00:00:00Z' | ||
}, { | ||
price: '902.84', | ||
time: '2017-01-25T00:00:00Z' | ||
}, { | ||
price: '915.84', | ||
time: '2017-01-24T00:00:00Z' | ||
}, { | ||
price: '926.01', | ||
time: '2017-01-23T00:00:00Z' | ||
}, { | ||
price: '923.76', | ||
time: '2017-01-22T00:00:00Z' | ||
}, { | ||
price: '908.72', | ||
time: '2017-01-21T00:00:00Z' | ||
}, { | ||
price: '897.88', | ||
time: '2017-01-20T00:00:00Z' | ||
}, { | ||
price: '893.30', | ||
time: '2017-01-19T00:00:00Z' | ||
}, { | ||
price: '884.78', | ||
time: '2017-01-18T00:00:00Z' | ||
}, { | ||
price: '857.51', | ||
time: '2017-01-17T00:00:00Z' | ||
}, { | ||
price: '830.58', | ||
time: '2017-01-16T00:00:00Z' | ||
}, { | ||
price: '830.58', | ||
time: '2017-01-15T00:00:00Z' | ||
}, { | ||
price: '823.48', | ||
time: '2017-01-14T00:00:00Z' | ||
}, { | ||
price: '801.98', | ||
time: '2017-01-13T00:00:00Z' | ||
}, { | ||
price: '822.05', | ||
time: '2017-01-12T00:00:00Z' | ||
}, { | ||
price: '879.50', | ||
time: '2017-01-11T00:00:00Z' | ||
}, { | ||
price: '903.21', | ||
time: '2017-01-10T00:00:00Z' | ||
}, { | ||
price: '911.94', | ||
time: '2017-01-09T00:00:00Z' | ||
}, { | ||
price: '901.05', | ||
time: '2017-01-08T00:00:00Z' | ||
}, { | ||
price: '908.09', | ||
time: '2017-01-07T00:00:00Z' | ||
}, { | ||
price: '996.25', | ||
time: '2017-01-06T00:00:00Z' | ||
}, { | ||
price: '1069.40', | ||
time: '2017-01-05T00:00:00Z' | ||
}, { | ||
price: '1051.69', | ||
time: '2017-01-04T00:00:00Z' | ||
}, { | ||
price: '1016.35', | ||
time: '2017-01-03T00:00:00Z' | ||
}, { | ||
price: '996.34', | ||
time: '2017-01-02T00:00:00Z' | ||
}, { | ||
price: '970.17', | ||
time: '2017-01-01T00:00:00Z' | ||
}, { | ||
price: '958.35', | ||
time: '2016-12-31T00:00:00Z' | ||
}, { | ||
price: '964.73', | ||
time: '2016-12-30T00:00:00Z' | ||
}, { | ||
price: '962.92', | ||
time: '2016-12-29T00:00:00Z' | ||
}, { | ||
price: '934.67', | ||
time: '2016-12-28T00:00:00Z' | ||
}, { | ||
price: '908.25', | ||
time: '2016-12-27T00:00:00Z' | ||
}, { | ||
price: '886.48', | ||
time: '2016-12-26T00:00:00Z' | ||
}, { | ||
price: '887.28', | ||
time: '2016-12-25T00:00:00Z' | ||
}, { | ||
price: '899.73', | ||
time: '2016-12-24T00:00:00Z' | ||
}, { | ||
price: '877.04', | ||
time: '2016-12-23T00:00:00Z' | ||
}, { | ||
price: '835.45', | ||
time: '2016-12-22T00:00:00Z' | ||
}, { | ||
price: '803.14', | ||
time: '2016-12-21T00:00:00Z' | ||
}, { | ||
price: '792.10', | ||
time: '2016-12-20T00:00:00Z' | ||
}, { | ||
price: '791.55', | ||
time: '2016-12-19T00:00:00Z' | ||
}, { | ||
price: '789.75', | ||
time: '2016-12-18T00:00:00Z' | ||
}, { | ||
price: '784.61', | ||
time: '2016-12-17T00:00:00Z' | ||
}, { | ||
price: '779.31', | ||
time: '2016-12-16T00:00:00Z' | ||
}, { | ||
price: '778.71', | ||
time: '2016-12-15T00:00:00Z' | ||
}, { | ||
price: '779.81', | ||
time: '2016-12-14T00:00:00Z' | ||
}, { | ||
price: '778.68', | ||
time: '2016-12-13T00:00:00Z' | ||
}, { | ||
price: '773.11', | ||
time: '2016-12-12T00:00:00Z' | ||
}, { | ||
price: '772.10', | ||
time: '2016-12-11T00:00:00Z' | ||
}, { | ||
price: '772.37', | ||
time: '2016-12-10T00:00:00Z' | ||
}, { | ||
price: '769.21', | ||
time: '2016-12-09T00:00:00Z' | ||
}, { | ||
price: '764.95', | ||
time: '2016-12-08T00:00:00Z' | ||
}, { | ||
price: '759.64', | ||
time: '2016-12-07T00:00:00Z' | ||
}, { | ||
price: '756.74', | ||
time: '2016-12-06T00:00:00Z' | ||
}, { | ||
price: '761.05', | ||
time: '2016-12-05T00:00:00Z' | ||
}, { | ||
price: '766.03', | ||
time: '2016-12-04T00:00:00Z' | ||
}, { | ||
price: '767.07', | ||
time: '2016-12-03T00:00:00Z' | ||
}, { | ||
price: '758.38', | ||
time: '2016-12-02T00:00:00Z' | ||
}, { | ||
price: '743.33', | ||
time: '2016-12-01T00:00:00Z' | ||
}, { | ||
price: '734.93', | ||
time: '2016-11-30T00:00:00Z' | ||
}, { | ||
price: '731.72', | ||
time: '2016-11-29T00:00:00Z' | ||
}, { | ||
price: '732.50', | ||
time: '2016-11-28T00:00:00Z' | ||
}, { | ||
price: '734.23', | ||
time: '2016-11-27T00:00:00Z' | ||
}, { | ||
price: '734.74', | ||
time: '2016-11-26T00:00:00Z' | ||
}, { | ||
price: '736.43', | ||
time: '2016-11-25T00:00:00Z' | ||
}, { | ||
price: '740.24', | ||
time: '2016-11-24T00:00:00Z' | ||
}, { | ||
price: '740.85', | ||
time: '2016-11-23T00:00:00Z' | ||
}, { | ||
price: '737.26', | ||
time: '2016-11-22T00:00:00Z' | ||
}, { | ||
price: '738.17', | ||
time: '2016-11-21T00:00:00Z' | ||
}, { | ||
price: '745.10', | ||
time: '2016-11-20T00:00:00Z' | ||
}, { | ||
price: '745.69', | ||
time: '2016-11-19T00:00:00Z' | ||
}, { | ||
price: '742.72', | ||
time: '2016-11-18T00:00:00Z' | ||
}, { | ||
price: '732.75', | ||
time: '2016-11-17T00:00:00Z' | ||
}, { | ||
price: '716.87', | ||
time: '2016-11-16T00:00:00Z' | ||
}, { | ||
price: '707.17', | ||
time: '2016-11-15T00:00:00Z' | ||
}, { | ||
price: '700.30', | ||
time: '2016-11-14T00:00:00Z' | ||
}, { | ||
price: '703.71', | ||
time: '2016-11-13T00:00:00Z' | ||
}, { | ||
price: '712.65', | ||
time: '2016-11-12T00:00:00Z' | ||
}, { | ||
price: '715.15', | ||
time: '2016-11-11T00:00:00Z' | ||
}, { | ||
price: '721.56', | ||
time: '2016-11-10T00:00:00Z' | ||
}, { | ||
price: '718.51', | ||
time: '2016-11-09T00:00:00Z' | ||
}, { | ||
price: '708.54', | ||
time: '2016-11-08T00:00:00Z' | ||
}, { | ||
price: '710.74', | ||
time: '2016-11-07T00:00:00Z' | ||
}, { | ||
price: '709.48', | ||
time: '2016-11-06T00:00:00Z' | ||
}, { | ||
price: '703.17', | ||
time: '2016-11-05T00:00:00Z' | ||
}, { | ||
price: '712.76', | ||
time: '2016-11-04T00:00:00Z' | ||
}, { | ||
price: '725.39', | ||
time: '2016-11-03T00:00:00Z' | ||
}, { | ||
price: '723.98', | ||
time: '2016-11-02T00:00:00Z' | ||
}, { | ||
price: '710.86', | ||
time: '2016-11-01T00:00:00Z' | ||
}, { | ||
price: '703.78', | ||
time: '2016-10-31T00:00:00Z' | ||
}, { | ||
price: '708.07', | ||
time: '2016-10-30T00:00:00Z' | ||
}, { | ||
price: '697.97', | ||
time: '2016-10-29T00:00:00Z' | ||
}, { | ||
price: '685.53', | ||
time: '2016-10-28T00:00:00Z' | ||
}, { | ||
price: '673.66', | ||
time: '2016-10-27T00:00:00Z' | ||
}, { | ||
price: '658.85', | ||
time: '2016-10-26T00:00:00Z' | ||
}, { | ||
price: '651.53', | ||
time: '2016-10-25T00:00:00Z' | ||
}, { | ||
price: '650.70', | ||
time: '2016-10-24T00:00:00Z' | ||
}, { | ||
price: '645.89', | ||
time: '2016-10-23T00:00:00Z' | ||
}, { | ||
price: '634.72', | ||
time: '2016-10-22T00:00:00Z' | ||
}, { | ||
price: '629.16', | ||
time: '2016-10-21T00:00:00Z' | ||
}, { | ||
price: '630.62', | ||
time: '2016-10-20T00:00:00Z' | ||
}, { | ||
price: '635.10', | ||
time: '2016-10-19T00:00:00Z' | ||
}, { | ||
price: '638.61', | ||
time: '2016-10-18T00:00:00Z' | ||
}, { | ||
price: '640.72', | ||
time: '2016-10-17T00:00:00Z' | ||
}, { | ||
price: '640.40', | ||
time: '2016-10-16T00:00:00Z' | ||
}, { | ||
price: '638.01', | ||
time: '2016-10-15T00:00:00Z' | ||
}, { | ||
price: '636.78', | ||
time: '2016-10-14T00:00:00Z' | ||
}, { | ||
price: '638.92', | ||
time: '2016-10-13T00:00:00Z' | ||
}, { | ||
price: '637.50', | ||
time: '2016-10-12T00:00:00Z' | ||
}, { | ||
price: '626.13', | ||
time: '2016-10-11T00:00:00Z' | ||
}, { | ||
price: '617.95', | ||
time: '2016-10-10T00:00:00Z' | ||
}, { | ||
price: '618.60', | ||
time: '2016-10-09T00:00:00Z' | ||
}, { | ||
price: '617.01', | ||
time: '2016-10-08T00:00:00Z' | ||
}, { | ||
price: '613.82', | ||
time: '2016-10-07T00:00:00Z' | ||
}, { | ||
price: '612.13', | ||
time: '2016-10-06T00:00:00Z' | ||
}, { | ||
price: '611.18', | ||
time: '2016-10-05T00:00:00Z' | ||
}, { | ||
price: '612.03', | ||
time: '2016-10-04T00:00:00Z' | ||
}, { | ||
price: '613.11', | ||
time: '2016-10-03T00:00:00Z' | ||
}, { | ||
price: '613.41', | ||
time: '2016-10-02T00:00:00Z' | ||
}, { | ||
price: '610.09', | ||
time: '2016-10-01T00:00:00Z' | ||
}, { | ||
price: '605.86', | ||
time: '2016-09-30T00:00:00Z' | ||
}, { | ||
price: '605.11', | ||
time: '2016-09-29T00:00:00Z' | ||
}, { | ||
price: '604.93', | ||
time: '2016-09-28T00:00:00Z' | ||
}, { | ||
price: '605.19', | ||
time: '2016-09-27T00:00:00Z' | ||
}, { | ||
price: '603.80', | ||
time: '2016-09-26T00:00:00Z' | ||
}, { | ||
price: '603.11', | ||
time: '2016-09-25T00:00:00Z' | ||
}, { | ||
price: '601.59', | ||
time: '2016-09-24T00:00:00Z' | ||
}, { | ||
price: '598.07', | ||
time: '2016-09-23T00:00:00Z' | ||
}, { | ||
price: '597.36', | ||
time: '2016-09-22T00:00:00Z' | ||
}, { | ||
price: '603.37', | ||
time: '2016-09-21T00:00:00Z' | ||
}, { | ||
price: '609.43', | ||
time: '2016-09-20T00:00:00Z' | ||
}, { | ||
price: '609.55', | ||
time: '2016-09-19T00:00:00Z' | ||
}, { | ||
price: '608.32', | ||
time: '2016-09-18T00:00:00Z' | ||
}, { | ||
price: '607.22', | ||
time: '2016-09-17T00:00:00Z' | ||
}, { | ||
price: '607.46', | ||
time: '2016-09-16T00:00:00Z' | ||
}, { | ||
price: '608.80', | ||
time: '2016-09-15T00:00:00Z' | ||
}, { | ||
price: '608.80', | ||
time: '2016-09-14T00:00:00Z' | ||
}, { | ||
price: '607.62', | ||
time: '2016-09-13T00:00:00Z' | ||
}, { | ||
price: '614.06', | ||
time: '2016-09-12T00:00:00Z' | ||
}, { | ||
price: '622.21', | ||
time: '2016-09-11T00:00:00Z' | ||
}, { | ||
price: '623.19', | ||
time: '2016-09-10T00:00:00Z' | ||
}, { | ||
price: '623.02', | ||
time: '2016-09-09T00:00:00Z' | ||
}, { | ||
price: '618.19', | ||
time: '2016-09-08T00:00:00Z' | ||
}, { | ||
price: '611.09', | ||
time: '2016-09-07T00:00:00Z' | ||
}, { | ||
price: '608.25', | ||
time: '2016-09-06T00:00:00Z' | ||
}, { | ||
price: '607.02', | ||
time: '2016-09-05T00:00:00Z' | ||
}, { | ||
price: '593.49', | ||
time: '2016-09-04T00:00:00Z' | ||
}, { | ||
price: '576.89', | ||
time: '2016-09-03T00:00:00Z' | ||
}, { | ||
price: '572.49', | ||
time: '2016-09-02T00:00:00Z' | ||
}, { | ||
price: '572.06', | ||
time: '2016-09-01T00:00:00Z' | ||
}, { | ||
price: '573.79', | ||
time: '2016-08-31T00:00:00Z' | ||
}, { | ||
price: '574.60', | ||
time: '2016-08-30T00:00:00Z' | ||
}, { | ||
price: '573.26', | ||
time: '2016-08-29T00:00:00Z' | ||
}, { | ||
price: '573.30', | ||
time: '2016-08-28T00:00:00Z' | ||
}, { | ||
price: '576.00', | ||
time: '2016-08-27T00:00:00Z' | ||
}, { | ||
price: '576.57', | ||
time: '2016-08-26T00:00:00Z' | ||
}, { | ||
price: '577.57', | ||
time: '2016-08-25T00:00:00Z' | ||
}, { | ||
price: '581.51', | ||
time: '2016-08-24T00:00:00Z' | ||
}, { | ||
price: '582.90', | ||
time: '2016-08-23T00:00:00Z' | ||
}, { | ||
price: '582.28', | ||
time: '2016-08-22T00:00:00Z' | ||
}, { | ||
price: '580.17', | ||
time: '2016-08-21T00:00:00Z' | ||
}, { | ||
price: '576.59', | ||
time: '2016-08-20T00:00:00Z' | ||
}, { | ||
price: '575.01', | ||
time: '2016-08-19T00:00:00Z' | ||
}, { | ||
price: '575.87', | ||
time: '2016-08-18T00:00:00Z' | ||
}, { | ||
price: '574.76', | ||
time: '2016-08-17T00:00:00Z' | ||
}, { | ||
price: '571.46', | ||
time: '2016-08-16T00:00:00Z' | ||
}, { | ||
price: '574.12', | ||
time: '2016-08-15T00:00:00Z' | ||
}, { | ||
price: '583.05', | ||
time: '2016-08-14T00:00:00Z' | ||
}, { | ||
price: '587.77', | ||
time: '2016-08-13T00:00:00Z' | ||
}, { | ||
price: '590.57', | ||
time: '2016-08-12T00:00:00Z' | ||
}, { | ||
price: '592.91', | ||
time: '2016-08-11T00:00:00Z' | ||
}, { | ||
price: '590.88', | ||
time: '2016-08-10T00:00:00Z' | ||
}, { | ||
price: '591.39', | ||
time: '2016-08-09T00:00:00Z' | ||
}, { | ||
price: '593.78', | ||
time: '2016-08-08T00:00:00Z' | ||
}, { | ||
price: '588.18', | ||
time: '2016-08-07T00:00:00Z' | ||
}, { | ||
price: '580.65', | ||
time: '2016-08-06T00:00:00Z' | ||
}, { | ||
price: '580.37', | ||
time: '2016-08-05T00:00:00Z' | ||
}, { | ||
price: '568.21', | ||
time: '2016-08-04T00:00:00Z' | ||
}, { | ||
price: '573.49', | ||
time: '2016-08-03T00:00:00Z' | ||
}, { | ||
price: '606.17', | ||
time: '2016-08-02T00:00:00Z' | ||
}, { | ||
price: '629.55', | ||
time: '2016-08-01T00:00:00Z' | ||
}, { | ||
price: '648.08', | ||
time: '2016-07-31T00:00:00Z' | ||
}, { | ||
price: '657.23', | ||
time: '2016-07-30T00:00:00Z' | ||
}, { | ||
price: '657.20', | ||
time: '2016-07-29T00:00:00Z' | ||
}, { | ||
price: '655.84', | ||
time: '2016-07-28T00:00:00Z' | ||
}, { | ||
price: '654.63', | ||
time: '2016-07-27T00:00:00Z' | ||
}, { | ||
price: '656.40', | ||
time: '2016-07-26T00:00:00Z' | ||
}, { | ||
price: '658.69', | ||
time: '2016-07-25T00:00:00Z' | ||
}, { | ||
price: '659.01', | ||
time: '2016-07-24T00:00:00Z' | ||
}, { | ||
price: '660.73', | ||
time: '2016-07-23T00:00:00Z' | ||
}, { | ||
price: '664.14', | ||
time: '2016-07-22T00:00:00Z' | ||
}, { | ||
price: '668.16', | ||
time: '2016-07-21T00:00:00Z' | ||
}, { | ||
price: '672.13', | ||
time: '2016-07-20T00:00:00Z' | ||
}, { | ||
price: '676.06', | ||
time: '2016-07-19T00:00:00Z' | ||
}, { | ||
price: '675.67', | ||
time: '2016-07-18T00:00:00Z' | ||
}, { | ||
price: '669.77', | ||
time: '2016-07-17T00:00:00Z' | ||
}, { | ||
price: '666.29', | ||
time: '2016-07-16T00:00:00Z' | ||
}, { | ||
price: '662.46', | ||
time: '2016-07-15T00:00:00Z' | ||
}, { | ||
price: '661.86', | ||
time: '2016-07-14T00:00:00Z' | ||
}, { | ||
price: '661.74', | ||
time: '2016-07-13T00:00:00Z' | ||
}, { | ||
price: '656.05', | ||
time: '2016-07-12T00:00:00Z' | ||
}, { | ||
price: '651.80', | ||
time: '2016-07-11T00:00:00Z' | ||
}, { | ||
price: '652.32', | ||
time: '2016-07-10T00:00:00Z' | ||
}, { | ||
price: '651.86', | ||
time: '2016-07-09T00:00:00Z' | ||
}, { | ||
price: '647.65', | ||
time: '2016-07-08T00:00:00Z' | ||
}, { | ||
price: '659.86', | ||
time: '2016-07-07T00:00:00Z' | ||
}, { | ||
price: '674.19', | ||
time: '2016-07-06T00:00:00Z' | ||
}, { | ||
price: '674.08', | ||
time: '2016-07-05T00:00:00Z' | ||
}, { | ||
price: '676.18', | ||
time: '2016-07-04T00:00:00Z' | ||
}] | ||
}; | ||
exports.default = _default; |
@@ -1,2 +0,2 @@ | ||
'use strict'; | ||
"use strict"; | ||
@@ -6,3 +6,4 @@ Object.defineProperty(exports, "__esModule", { | ||
}); | ||
exports.default = [{ | ||
exports.default = void 0; | ||
var _default = [{ | ||
date: '20111001', | ||
@@ -1837,2 +1838,3 @@ 'New York': '63.4', | ||
Austin: '71.9' | ||
}]; | ||
}]; | ||
exports.default = _default; |
@@ -1,2 +0,2 @@ | ||
'use strict'; | ||
"use strict"; | ||
@@ -6,2 +6,52 @@ Object.defineProperty(exports, "__esModule", { | ||
}); | ||
exports.default = [{ key: 'Group1', value: '37', date: '04/23/12' }, { key: 'Group2', value: '12', date: '04/23/12' }, { key: 'Group3', value: '46', date: '04/23/12' }, { key: 'Group1', value: '32', date: '04/24/12' }, { key: 'Group2', value: '19', date: '04/24/12' }, { key: 'Group3', value: '42', date: '04/24/12' }, { key: 'Group1', value: '45', date: '04/25/12' }, { key: 'Group2', value: '16', date: '04/25/12' }, { key: 'Group3', value: '44', date: '04/25/12' }, { key: 'Group1', value: '24', date: '04/26/12' }, { key: 'Group2', value: '52', date: '04/26/12' }, { key: 'Group3', value: '64', date: '04/26/12' }]; | ||
exports.default = void 0; | ||
var _default = [{ | ||
key: 'Group1', | ||
value: '37', | ||
date: '04/23/12' | ||
}, { | ||
key: 'Group2', | ||
value: '12', | ||
date: '04/23/12' | ||
}, { | ||
key: 'Group3', | ||
value: '46', | ||
date: '04/23/12' | ||
}, { | ||
key: 'Group1', | ||
value: '32', | ||
date: '04/24/12' | ||
}, { | ||
key: 'Group2', | ||
value: '19', | ||
date: '04/24/12' | ||
}, { | ||
key: 'Group3', | ||
value: '42', | ||
date: '04/24/12' | ||
}, { | ||
key: 'Group1', | ||
value: '45', | ||
date: '04/25/12' | ||
}, { | ||
key: 'Group2', | ||
value: '16', | ||
date: '04/25/12' | ||
}, { | ||
key: 'Group3', | ||
value: '44', | ||
date: '04/25/12' | ||
}, { | ||
key: 'Group1', | ||
value: '24', | ||
date: '04/26/12' | ||
}, { | ||
key: 'Group2', | ||
value: '52', | ||
date: '04/26/12' | ||
}, { | ||
key: 'Group3', | ||
value: '64', | ||
date: '04/26/12' | ||
}]; | ||
exports.default = _default; |
@@ -1,2 +0,2 @@ | ||
'use strict'; | ||
"use strict"; | ||
@@ -6,5 +6,1254 @@ Object.defineProperty(exports, "__esModule", { | ||
}); | ||
exports.default = { | ||
nodes: [{ id: 'Myriel', group: 1 }, { id: 'Napoleon', group: 1 }, { id: 'Mlle.Baptistine', group: 1 }, { id: 'Mme.Magloire', group: 1 }, { id: 'CountessdeLo', group: 1 }, { id: 'Geborand', group: 1 }, { id: 'Champtercier', group: 1 }, { id: 'Cravatte', group: 1 }, { id: 'Count', group: 1 }, { id: 'OldMan', group: 1 }, { id: 'Labarre', group: 2 }, { id: 'Valjean', group: 2 }, { id: 'Marguerite', group: 3 }, { id: 'Mme.deR', group: 2 }, { id: 'Isabeau', group: 2 }, { id: 'Gervais', group: 2 }, { id: 'Tholomyes', group: 3 }, { id: 'Listolier', group: 3 }, { id: 'Fameuil', group: 3 }, { id: 'Blacheville', group: 3 }, { id: 'Favourite', group: 3 }, { id: 'Dahlia', group: 3 }, { id: 'Zephine', group: 3 }, { id: 'Fantine', group: 3 }, { id: 'Mme.Thenardier', group: 4 }, { id: 'Thenardier', group: 4 }, { id: 'Cosette', group: 5 }, { id: 'Javert', group: 4 }, { id: 'Fauchelevent', group: 0 }, { id: 'Bamatabois', group: 2 }, { id: 'Perpetue', group: 3 }, { id: 'Simplice', group: 2 }, { id: 'Scaufflaire', group: 2 }, { id: 'Woman1', group: 2 }, { id: 'Judge', group: 2 }, { id: 'Champmathieu', group: 2 }, { id: 'Brevet', group: 2 }, { id: 'Chenildieu', group: 2 }, { id: 'Cochepaille', group: 2 }, { id: 'Pontmercy', group: 4 }, { id: 'Boulatruelle', group: 6 }, { id: 'Eponine', group: 4 }, { id: 'Anzelma', group: 4 }, { id: 'Woman2', group: 5 }, { id: 'MotherInnocent', group: 0 }, { id: 'Gribier', group: 0 }, { id: 'Jondrette', group: 7 }, { id: 'Mme.Burgon', group: 7 }, { id: 'Gavroche', group: 8 }, { id: 'Gillenormand', group: 5 }, { id: 'Magnon', group: 5 }, { id: 'Mlle.Gillenormand', group: 5 }, { id: 'Mme.Pontmercy', group: 5 }, { id: 'Mlle.Vaubois', group: 5 }, { id: 'Lt.Gillenormand', group: 5 }, { id: 'Marius', group: 8 }, { id: 'BaronessT', group: 5 }, { id: 'Mabeuf', group: 8 }, { id: 'Enjolras', group: 8 }, { id: 'Combeferre', group: 8 }, { id: 'Prouvaire', group: 8 }, { id: 'Feuilly', group: 8 }, { id: 'Courfeyrac', group: 8 }, { id: 'Bahorel', group: 8 }, { id: 'Bossuet', group: 8 }, { id: 'Joly', group: 8 }, { id: 'Grantaire', group: 8 }, { id: 'MotherPlutarch', group: 9 }, { id: 'Gueulemer', group: 4 }, { id: 'Babet', group: 4 }, { id: 'Claquesous', group: 4 }, { id: 'Montparnasse', group: 4 }, { id: 'Toussaint', group: 5 }, { id: 'Child1', group: 10 }, { id: 'Child2', group: 10 }, { id: 'Brujon', group: 4 }, { id: 'Mme.Hucheloup', group: 8 }], | ||
links: [{ source: 'Napoleon', target: 'Myriel', value: 1 }, { source: 'Mlle.Baptistine', target: 'Myriel', value: 8 }, { source: 'Mme.Magloire', target: 'Myriel', value: 10 }, { source: 'Mme.Magloire', target: 'Mlle.Baptistine', value: 6 }, { source: 'CountessdeLo', target: 'Myriel', value: 1 }, { source: 'Geborand', target: 'Myriel', value: 1 }, { source: 'Champtercier', target: 'Myriel', value: 1 }, { source: 'Cravatte', target: 'Myriel', value: 1 }, { source: 'Count', target: 'Myriel', value: 2 }, { source: 'OldMan', target: 'Myriel', value: 1 }, { source: 'Valjean', target: 'Labarre', value: 1 }, { source: 'Valjean', target: 'Mme.Magloire', value: 3 }, { source: 'Valjean', target: 'Mlle.Baptistine', value: 3 }, { source: 'Valjean', target: 'Myriel', value: 5 }, { source: 'Marguerite', target: 'Valjean', value: 1 }, { source: 'Mme.deR', target: 'Valjean', value: 1 }, { source: 'Isabeau', target: 'Valjean', value: 1 }, { source: 'Gervais', target: 'Valjean', value: 1 }, { source: 'Listolier', target: 'Tholomyes', value: 4 }, { source: 'Fameuil', target: 'Tholomyes', value: 4 }, { source: 'Fameuil', target: 'Listolier', value: 4 }, { source: 'Blacheville', target: 'Tholomyes', value: 4 }, { source: 'Blacheville', target: 'Listolier', value: 4 }, { source: 'Blacheville', target: 'Fameuil', value: 4 }, { source: 'Favourite', target: 'Tholomyes', value: 3 }, { source: 'Favourite', target: 'Listolier', value: 3 }, { source: 'Favourite', target: 'Fameuil', value: 3 }, { source: 'Favourite', target: 'Blacheville', value: 4 }, { source: 'Dahlia', target: 'Tholomyes', value: 3 }, { source: 'Dahlia', target: 'Listolier', value: 3 }, { source: 'Dahlia', target: 'Fameuil', value: 3 }, { source: 'Dahlia', target: 'Blacheville', value: 3 }, { source: 'Dahlia', target: 'Favourite', value: 5 }, { source: 'Zephine', target: 'Tholomyes', value: 3 }, { source: 'Zephine', target: 'Listolier', value: 3 }, { source: 'Zephine', target: 'Fameuil', value: 3 }, { source: 'Zephine', target: 'Blacheville', value: 3 }, { source: 'Zephine', target: 'Favourite', value: 4 }, { source: 'Zephine', target: 'Dahlia', value: 4 }, { source: 'Fantine', target: 'Tholomyes', value: 3 }, { source: 'Fantine', target: 'Listolier', value: 3 }, { source: 'Fantine', target: 'Fameuil', value: 3 }, { source: 'Fantine', target: 'Blacheville', value: 3 }, { source: 'Fantine', target: 'Favourite', value: 4 }, { source: 'Fantine', target: 'Dahlia', value: 4 }, { source: 'Fantine', target: 'Zephine', value: 4 }, { source: 'Fantine', target: 'Marguerite', value: 2 }, { source: 'Fantine', target: 'Valjean', value: 9 }, { source: 'Mme.Thenardier', target: 'Fantine', value: 2 }, { source: 'Mme.Thenardier', target: 'Valjean', value: 7 }, { source: 'Thenardier', target: 'Mme.Thenardier', value: 13 }, { source: 'Thenardier', target: 'Fantine', value: 1 }, { source: 'Thenardier', target: 'Valjean', value: 12 }, { source: 'Cosette', target: 'Mme.Thenardier', value: 4 }, { source: 'Cosette', target: 'Valjean', value: 31 }, { source: 'Cosette', target: 'Tholomyes', value: 1 }, { source: 'Cosette', target: 'Thenardier', value: 1 }, { source: 'Javert', target: 'Valjean', value: 17 }, { source: 'Javert', target: 'Fantine', value: 5 }, { source: 'Javert', target: 'Thenardier', value: 5 }, { source: 'Javert', target: 'Mme.Thenardier', value: 1 }, { source: 'Javert', target: 'Cosette', value: 1 }, { source: 'Fauchelevent', target: 'Valjean', value: 8 }, { source: 'Fauchelevent', target: 'Javert', value: 1 }, { source: 'Bamatabois', target: 'Fantine', value: 1 }, { source: 'Bamatabois', target: 'Javert', value: 1 }, { source: 'Bamatabois', target: 'Valjean', value: 2 }, { source: 'Perpetue', target: 'Fantine', value: 1 }, { source: 'Simplice', target: 'Perpetue', value: 2 }, { source: 'Simplice', target: 'Valjean', value: 3 }, { source: 'Simplice', target: 'Fantine', value: 2 }, { source: 'Simplice', target: 'Javert', value: 1 }, { source: 'Scaufflaire', target: 'Valjean', value: 1 }, { source: 'Woman1', target: 'Valjean', value: 2 }, { source: 'Woman1', target: 'Javert', value: 1 }, { source: 'Judge', target: 'Valjean', value: 3 }, { source: 'Judge', target: 'Bamatabois', value: 2 }, { source: 'Champmathieu', target: 'Valjean', value: 3 }, { source: 'Champmathieu', target: 'Judge', value: 3 }, { source: 'Champmathieu', target: 'Bamatabois', value: 2 }, { source: 'Brevet', target: 'Judge', value: 2 }, { source: 'Brevet', target: 'Champmathieu', value: 2 }, { source: 'Brevet', target: 'Valjean', value: 2 }, { source: 'Brevet', target: 'Bamatabois', value: 1 }, { source: 'Chenildieu', target: 'Judge', value: 2 }, { source: 'Chenildieu', target: 'Champmathieu', value: 2 }, { source: 'Chenildieu', target: 'Brevet', value: 2 }, { source: 'Chenildieu', target: 'Valjean', value: 2 }, { source: 'Chenildieu', target: 'Bamatabois', value: 1 }, { source: 'Cochepaille', target: 'Judge', value: 2 }, { source: 'Cochepaille', target: 'Champmathieu', value: 2 }, { source: 'Cochepaille', target: 'Brevet', value: 2 }, { source: 'Cochepaille', target: 'Chenildieu', value: 2 }, { source: 'Cochepaille', target: 'Valjean', value: 2 }, { source: 'Cochepaille', target: 'Bamatabois', value: 1 }, { source: 'Pontmercy', target: 'Thenardier', value: 1 }, { source: 'Boulatruelle', target: 'Thenardier', value: 1 }, { source: 'Eponine', target: 'Mme.Thenardier', value: 2 }, { source: 'Eponine', target: 'Thenardier', value: 3 }, { source: 'Anzelma', target: 'Eponine', value: 2 }, { source: 'Anzelma', target: 'Thenardier', value: 2 }, { source: 'Anzelma', target: 'Mme.Thenardier', value: 1 }, { source: 'Woman2', target: 'Valjean', value: 3 }, { source: 'Woman2', target: 'Cosette', value: 1 }, { source: 'Woman2', target: 'Javert', value: 1 }, { source: 'MotherInnocent', target: 'Fauchelevent', value: 3 }, { source: 'MotherInnocent', target: 'Valjean', value: 1 }, { source: 'Gribier', target: 'Fauchelevent', value: 2 }, { source: 'Mme.Burgon', target: 'Jondrette', value: 1 }, { source: 'Gavroche', target: 'Mme.Burgon', value: 2 }, { source: 'Gavroche', target: 'Thenardier', value: 1 }, { source: 'Gavroche', target: 'Javert', value: 1 }, { source: 'Gavroche', target: 'Valjean', value: 1 }, { source: 'Gillenormand', target: 'Cosette', value: 3 }, { source: 'Gillenormand', target: 'Valjean', value: 2 }, { source: 'Magnon', target: 'Gillenormand', value: 1 }, { source: 'Magnon', target: 'Mme.Thenardier', value: 1 }, { source: 'Mlle.Gillenormand', target: 'Gillenormand', value: 9 }, { source: 'Mlle.Gillenormand', target: 'Cosette', value: 2 }, { source: 'Mlle.Gillenormand', target: 'Valjean', value: 2 }, { source: 'Mme.Pontmercy', target: 'Mlle.Gillenormand', value: 1 }, { source: 'Mme.Pontmercy', target: 'Pontmercy', value: 1 }, { source: 'Mlle.Vaubois', target: 'Mlle.Gillenormand', value: 1 }, { source: 'Lt.Gillenormand', target: 'Mlle.Gillenormand', value: 2 }, { source: 'Lt.Gillenormand', target: 'Gillenormand', value: 1 }, { source: 'Lt.Gillenormand', target: 'Cosette', value: 1 }, { source: 'Marius', target: 'Mlle.Gillenormand', value: 6 }, { source: 'Marius', target: 'Gillenormand', value: 12 }, { source: 'Marius', target: 'Pontmercy', value: 1 }, { source: 'Marius', target: 'Lt.Gillenormand', value: 1 }, { source: 'Marius', target: 'Cosette', value: 21 }, { source: 'Marius', target: 'Valjean', value: 19 }, { source: 'Marius', target: 'Tholomyes', value: 1 }, { source: 'Marius', target: 'Thenardier', value: 2 }, { source: 'Marius', target: 'Eponine', value: 5 }, { source: 'Marius', target: 'Gavroche', value: 4 }, { source: 'BaronessT', target: 'Gillenormand', value: 1 }, { source: 'BaronessT', target: 'Marius', value: 1 }, { source: 'Mabeuf', target: 'Marius', value: 1 }, { source: 'Mabeuf', target: 'Eponine', value: 1 }, { source: 'Mabeuf', target: 'Gavroche', value: 1 }, { source: 'Enjolras', target: 'Marius', value: 7 }, { source: 'Enjolras', target: 'Gavroche', value: 7 }, { source: 'Enjolras', target: 'Javert', value: 6 }, { source: 'Enjolras', target: 'Mabeuf', value: 1 }, { source: 'Enjolras', target: 'Valjean', value: 4 }, { source: 'Combeferre', target: 'Enjolras', value: 15 }, { source: 'Combeferre', target: 'Marius', value: 5 }, { source: 'Combeferre', target: 'Gavroche', value: 6 }, { source: 'Combeferre', target: 'Mabeuf', value: 2 }, { source: 'Prouvaire', target: 'Gavroche', value: 1 }, { source: 'Prouvaire', target: 'Enjolras', value: 4 }, { source: 'Prouvaire', target: 'Combeferre', value: 2 }, { source: 'Feuilly', target: 'Gavroche', value: 2 }, { source: 'Feuilly', target: 'Enjolras', value: 6 }, { source: 'Feuilly', target: 'Prouvaire', value: 2 }, { source: 'Feuilly', target: 'Combeferre', value: 5 }, { source: 'Feuilly', target: 'Mabeuf', value: 1 }, { source: 'Feuilly', target: 'Marius', value: 1 }, { source: 'Courfeyrac', target: 'Marius', value: 9 }, { source: 'Courfeyrac', target: 'Enjolras', value: 17 }, { source: 'Courfeyrac', target: 'Combeferre', value: 13 }, { source: 'Courfeyrac', target: 'Gavroche', value: 7 }, { source: 'Courfeyrac', target: 'Mabeuf', value: 2 }, { source: 'Courfeyrac', target: 'Eponine', value: 1 }, { source: 'Courfeyrac', target: 'Feuilly', value: 6 }, { source: 'Courfeyrac', target: 'Prouvaire', value: 3 }, { source: 'Bahorel', target: 'Combeferre', value: 5 }, { source: 'Bahorel', target: 'Gavroche', value: 5 }, { source: 'Bahorel', target: 'Courfeyrac', value: 6 }, { source: 'Bahorel', target: 'Mabeuf', value: 2 }, { source: 'Bahorel', target: 'Enjolras', value: 4 }, { source: 'Bahorel', target: 'Feuilly', value: 3 }, { source: 'Bahorel', target: 'Prouvaire', value: 2 }, { source: 'Bahorel', target: 'Marius', value: 1 }, { source: 'Bossuet', target: 'Marius', value: 5 }, { source: 'Bossuet', target: 'Courfeyrac', value: 12 }, { source: 'Bossuet', target: 'Gavroche', value: 5 }, { source: 'Bossuet', target: 'Bahorel', value: 4 }, { source: 'Bossuet', target: 'Enjolras', value: 10 }, { source: 'Bossuet', target: 'Feuilly', value: 6 }, { source: 'Bossuet', target: 'Prouvaire', value: 2 }, { source: 'Bossuet', target: 'Combeferre', value: 9 }, { source: 'Bossuet', target: 'Mabeuf', value: 1 }, { source: 'Bossuet', target: 'Valjean', value: 1 }, { source: 'Joly', target: 'Bahorel', value: 5 }, { source: 'Joly', target: 'Bossuet', value: 7 }, { source: 'Joly', target: 'Gavroche', value: 3 }, { source: 'Joly', target: 'Courfeyrac', value: 5 }, { source: 'Joly', target: 'Enjolras', value: 5 }, { source: 'Joly', target: 'Feuilly', value: 5 }, { source: 'Joly', target: 'Prouvaire', value: 2 }, { source: 'Joly', target: 'Combeferre', value: 5 }, { source: 'Joly', target: 'Mabeuf', value: 1 }, { source: 'Joly', target: 'Marius', value: 2 }, { source: 'Grantaire', target: 'Bossuet', value: 3 }, { source: 'Grantaire', target: 'Enjolras', value: 3 }, { source: 'Grantaire', target: 'Combeferre', value: 1 }, { source: 'Grantaire', target: 'Courfeyrac', value: 2 }, { source: 'Grantaire', target: 'Joly', value: 2 }, { source: 'Grantaire', target: 'Gavroche', value: 1 }, { source: 'Grantaire', target: 'Bahorel', value: 1 }, { source: 'Grantaire', target: 'Feuilly', value: 1 }, { source: 'Grantaire', target: 'Prouvaire', value: 1 }, { source: 'MotherPlutarch', target: 'Mabeuf', value: 3 }, { source: 'Gueulemer', target: 'Thenardier', value: 5 }, { source: 'Gueulemer', target: 'Valjean', value: 1 }, { source: 'Gueulemer', target: 'Mme.Thenardier', value: 1 }, { source: 'Gueulemer', target: 'Javert', value: 1 }, { source: 'Gueulemer', target: 'Gavroche', value: 1 }, { source: 'Gueulemer', target: 'Eponine', value: 1 }, { source: 'Babet', target: 'Thenardier', value: 6 }, { source: 'Babet', target: 'Gueulemer', value: 6 }, { source: 'Babet', target: 'Valjean', value: 1 }, { source: 'Babet', target: 'Mme.Thenardier', value: 1 }, { source: 'Babet', target: 'Javert', value: 2 }, { source: 'Babet', target: 'Gavroche', value: 1 }, { source: 'Babet', target: 'Eponine', value: 1 }, { source: 'Claquesous', target: 'Thenardier', value: 4 }, { source: 'Claquesous', target: 'Babet', value: 4 }, { source: 'Claquesous', target: 'Gueulemer', value: 4 }, { source: 'Claquesous', target: 'Valjean', value: 1 }, { source: 'Claquesous', target: 'Mme.Thenardier', value: 1 }, { source: 'Claquesous', target: 'Javert', value: 1 }, { source: 'Claquesous', target: 'Eponine', value: 1 }, { source: 'Claquesous', target: 'Enjolras', value: 1 }, { source: 'Montparnasse', target: 'Javert', value: 1 }, { source: 'Montparnasse', target: 'Babet', value: 2 }, { source: 'Montparnasse', target: 'Gueulemer', value: 2 }, { source: 'Montparnasse', target: 'Claquesous', value: 2 }, { source: 'Montparnasse', target: 'Valjean', value: 1 }, { source: 'Montparnasse', target: 'Gavroche', value: 1 }, { source: 'Montparnasse', target: 'Eponine', value: 1 }, { source: 'Montparnasse', target: 'Thenardier', value: 1 }, { source: 'Toussaint', target: 'Cosette', value: 2 }, { source: 'Toussaint', target: 'Javert', value: 1 }, { source: 'Toussaint', target: 'Valjean', value: 1 }, { source: 'Child1', target: 'Gavroche', value: 2 }, { source: 'Child2', target: 'Gavroche', value: 2 }, { source: 'Child2', target: 'Child1', value: 3 }, { source: 'Brujon', target: 'Babet', value: 3 }, { source: 'Brujon', target: 'Gueulemer', value: 3 }, { source: 'Brujon', target: 'Thenardier', value: 3 }, { source: 'Brujon', target: 'Gavroche', value: 1 }, { source: 'Brujon', target: 'Eponine', value: 1 }, { source: 'Brujon', target: 'Claquesous', value: 1 }, { source: 'Brujon', target: 'Montparnasse', value: 1 }, { source: 'Mme.Hucheloup', target: 'Bossuet', value: 1 }, { source: 'Mme.Hucheloup', target: 'Joly', value: 1 }, { source: 'Mme.Hucheloup', target: 'Grantaire', value: 1 }, { source: 'Mme.Hucheloup', target: 'Bahorel', value: 1 }, { source: 'Mme.Hucheloup', target: 'Courfeyrac', value: 1 }, { source: 'Mme.Hucheloup', target: 'Gavroche', value: 1 }, { source: 'Mme.Hucheloup', target: 'Enjolras', value: 1 }] | ||
}; | ||
exports.default = void 0; | ||
var _default = { | ||
nodes: [{ | ||
id: 'Myriel', | ||
group: 1 | ||
}, { | ||
id: 'Napoleon', | ||
group: 1 | ||
}, { | ||
id: 'Mlle.Baptistine', | ||
group: 1 | ||
}, { | ||
id: 'Mme.Magloire', | ||
group: 1 | ||
}, { | ||
id: 'CountessdeLo', | ||
group: 1 | ||
}, { | ||
id: 'Geborand', | ||
group: 1 | ||
}, { | ||
id: 'Champtercier', | ||
group: 1 | ||
}, { | ||
id: 'Cravatte', | ||
group: 1 | ||
}, { | ||
id: 'Count', | ||
group: 1 | ||
}, { | ||
id: 'OldMan', | ||
group: 1 | ||
}, { | ||
id: 'Labarre', | ||
group: 2 | ||
}, { | ||
id: 'Valjean', | ||
group: 2 | ||
}, { | ||
id: 'Marguerite', | ||
group: 3 | ||
}, { | ||
id: 'Mme.deR', | ||
group: 2 | ||
}, { | ||
id: 'Isabeau', | ||
group: 2 | ||
}, { | ||
id: 'Gervais', | ||
group: 2 | ||
}, { | ||
id: 'Tholomyes', | ||
group: 3 | ||
}, { | ||
id: 'Listolier', | ||
group: 3 | ||
}, { | ||
id: 'Fameuil', | ||
group: 3 | ||
}, { | ||
id: 'Blacheville', | ||
group: 3 | ||
}, { | ||
id: 'Favourite', | ||
group: 3 | ||
}, { | ||
id: 'Dahlia', | ||
group: 3 | ||
}, { | ||
id: 'Zephine', | ||
group: 3 | ||
}, { | ||
id: 'Fantine', | ||
group: 3 | ||
}, { | ||
id: 'Mme.Thenardier', | ||
group: 4 | ||
}, { | ||
id: 'Thenardier', | ||
group: 4 | ||
}, { | ||
id: 'Cosette', | ||
group: 5 | ||
}, { | ||
id: 'Javert', | ||
group: 4 | ||
}, { | ||
id: 'Fauchelevent', | ||
group: 0 | ||
}, { | ||
id: 'Bamatabois', | ||
group: 2 | ||
}, { | ||
id: 'Perpetue', | ||
group: 3 | ||
}, { | ||
id: 'Simplice', | ||
group: 2 | ||
}, { | ||
id: 'Scaufflaire', | ||
group: 2 | ||
}, { | ||
id: 'Woman1', | ||
group: 2 | ||
}, { | ||
id: 'Judge', | ||
group: 2 | ||
}, { | ||
id: 'Champmathieu', | ||
group: 2 | ||
}, { | ||
id: 'Brevet', | ||
group: 2 | ||
}, { | ||
id: 'Chenildieu', | ||
group: 2 | ||
}, { | ||
id: 'Cochepaille', | ||
group: 2 | ||
}, { | ||
id: 'Pontmercy', | ||
group: 4 | ||
}, { | ||
id: 'Boulatruelle', | ||
group: 6 | ||
}, { | ||
id: 'Eponine', | ||
group: 4 | ||
}, { | ||
id: 'Anzelma', | ||
group: 4 | ||
}, { | ||
id: 'Woman2', | ||
group: 5 | ||
}, { | ||
id: 'MotherInnocent', | ||
group: 0 | ||
}, { | ||
id: 'Gribier', | ||
group: 0 | ||
}, { | ||
id: 'Jondrette', | ||
group: 7 | ||
}, { | ||
id: 'Mme.Burgon', | ||
group: 7 | ||
}, { | ||
id: 'Gavroche', | ||
group: 8 | ||
}, { | ||
id: 'Gillenormand', | ||
group: 5 | ||
}, { | ||
id: 'Magnon', | ||
group: 5 | ||
}, { | ||
id: 'Mlle.Gillenormand', | ||
group: 5 | ||
}, { | ||
id: 'Mme.Pontmercy', | ||
group: 5 | ||
}, { | ||
id: 'Mlle.Vaubois', | ||
group: 5 | ||
}, { | ||
id: 'Lt.Gillenormand', | ||
group: 5 | ||
}, { | ||
id: 'Marius', | ||
group: 8 | ||
}, { | ||
id: 'BaronessT', | ||
group: 5 | ||
}, { | ||
id: 'Mabeuf', | ||
group: 8 | ||
}, { | ||
id: 'Enjolras', | ||
group: 8 | ||
}, { | ||
id: 'Combeferre', | ||
group: 8 | ||
}, { | ||
id: 'Prouvaire', | ||
group: 8 | ||
}, { | ||
id: 'Feuilly', | ||
group: 8 | ||
}, { | ||
id: 'Courfeyrac', | ||
group: 8 | ||
}, { | ||
id: 'Bahorel', | ||
group: 8 | ||
}, { | ||
id: 'Bossuet', | ||
group: 8 | ||
}, { | ||
id: 'Joly', | ||
group: 8 | ||
}, { | ||
id: 'Grantaire', | ||
group: 8 | ||
}, { | ||
id: 'MotherPlutarch', | ||
group: 9 | ||
}, { | ||
id: 'Gueulemer', | ||
group: 4 | ||
}, { | ||
id: 'Babet', | ||
group: 4 | ||
}, { | ||
id: 'Claquesous', | ||
group: 4 | ||
}, { | ||
id: 'Montparnasse', | ||
group: 4 | ||
}, { | ||
id: 'Toussaint', | ||
group: 5 | ||
}, { | ||
id: 'Child1', | ||
group: 10 | ||
}, { | ||
id: 'Child2', | ||
group: 10 | ||
}, { | ||
id: 'Brujon', | ||
group: 4 | ||
}, { | ||
id: 'Mme.Hucheloup', | ||
group: 8 | ||
}], | ||
links: [{ | ||
source: 'Napoleon', | ||
target: 'Myriel', | ||
value: 1 | ||
}, { | ||
source: 'Mlle.Baptistine', | ||
target: 'Myriel', | ||
value: 8 | ||
}, { | ||
source: 'Mme.Magloire', | ||
target: 'Myriel', | ||
value: 10 | ||
}, { | ||
source: 'Mme.Magloire', | ||
target: 'Mlle.Baptistine', | ||
value: 6 | ||
}, { | ||
source: 'CountessdeLo', | ||
target: 'Myriel', | ||
value: 1 | ||
}, { | ||
source: 'Geborand', | ||
target: 'Myriel', | ||
value: 1 | ||
}, { | ||
source: 'Champtercier', | ||
target: 'Myriel', | ||
value: 1 | ||
}, { | ||
source: 'Cravatte', | ||
target: 'Myriel', | ||
value: 1 | ||
}, { | ||
source: 'Count', | ||
target: 'Myriel', | ||
value: 2 | ||
}, { | ||
source: 'OldMan', | ||
target: 'Myriel', | ||
value: 1 | ||
}, { | ||
source: 'Valjean', | ||
target: 'Labarre', | ||
value: 1 | ||
}, { | ||
source: 'Valjean', | ||
target: 'Mme.Magloire', | ||
value: 3 | ||
}, { | ||
source: 'Valjean', | ||
target: 'Mlle.Baptistine', | ||
value: 3 | ||
}, { | ||
source: 'Valjean', | ||
target: 'Myriel', | ||
value: 5 | ||
}, { | ||
source: 'Marguerite', | ||
target: 'Valjean', | ||
value: 1 | ||
}, { | ||
source: 'Mme.deR', | ||
target: 'Valjean', | ||
value: 1 | ||
}, { | ||
source: 'Isabeau', | ||
target: 'Valjean', | ||
value: 1 | ||
}, { | ||
source: 'Gervais', | ||
target: 'Valjean', | ||
value: 1 | ||
}, { | ||
source: 'Listolier', | ||
target: 'Tholomyes', | ||
value: 4 | ||
}, { | ||
source: 'Fameuil', | ||
target: 'Tholomyes', | ||
value: 4 | ||
}, { | ||
source: 'Fameuil', | ||
target: 'Listolier', | ||
value: 4 | ||
}, { | ||
source: 'Blacheville', | ||
target: 'Tholomyes', | ||
value: 4 | ||
}, { | ||
source: 'Blacheville', | ||
target: 'Listolier', | ||
value: 4 | ||
}, { | ||
source: 'Blacheville', | ||
target: 'Fameuil', | ||
value: 4 | ||
}, { | ||
source: 'Favourite', | ||
target: 'Tholomyes', | ||
value: 3 | ||
}, { | ||
source: 'Favourite', | ||
target: 'Listolier', | ||
value: 3 | ||
}, { | ||
source: 'Favourite', | ||
target: 'Fameuil', | ||
value: 3 | ||
}, { | ||
source: 'Favourite', | ||
target: 'Blacheville', | ||
value: 4 | ||
}, { | ||
source: 'Dahlia', | ||
target: 'Tholomyes', | ||
value: 3 | ||
}, { | ||
source: 'Dahlia', | ||
target: 'Listolier', | ||
value: 3 | ||
}, { | ||
source: 'Dahlia', | ||
target: 'Fameuil', | ||
value: 3 | ||
}, { | ||
source: 'Dahlia', | ||
target: 'Blacheville', | ||
value: 3 | ||
}, { | ||
source: 'Dahlia', | ||
target: 'Favourite', | ||
value: 5 | ||
}, { | ||
source: 'Zephine', | ||
target: 'Tholomyes', | ||
value: 3 | ||
}, { | ||
source: 'Zephine', | ||
target: 'Listolier', | ||
value: 3 | ||
}, { | ||
source: 'Zephine', | ||
target: 'Fameuil', | ||
value: 3 | ||
}, { | ||
source: 'Zephine', | ||
target: 'Blacheville', | ||
value: 3 | ||
}, { | ||
source: 'Zephine', | ||
target: 'Favourite', | ||
value: 4 | ||
}, { | ||
source: 'Zephine', | ||
target: 'Dahlia', | ||
value: 4 | ||
}, { | ||
source: 'Fantine', | ||
target: 'Tholomyes', | ||
value: 3 | ||
}, { | ||
source: 'Fantine', | ||
target: 'Listolier', | ||
value: 3 | ||
}, { | ||
source: 'Fantine', | ||
target: 'Fameuil', | ||
value: 3 | ||
}, { | ||
source: 'Fantine', | ||
target: 'Blacheville', | ||
value: 3 | ||
}, { | ||
source: 'Fantine', | ||
target: 'Favourite', | ||
value: 4 | ||
}, { | ||
source: 'Fantine', | ||
target: 'Dahlia', | ||
value: 4 | ||
}, { | ||
source: 'Fantine', | ||
target: 'Zephine', | ||
value: 4 | ||
}, { | ||
source: 'Fantine', | ||
target: 'Marguerite', | ||
value: 2 | ||
}, { | ||
source: 'Fantine', | ||
target: 'Valjean', | ||
value: 9 | ||
}, { | ||
source: 'Mme.Thenardier', | ||
target: 'Fantine', | ||
value: 2 | ||
}, { | ||
source: 'Mme.Thenardier', | ||
target: 'Valjean', | ||
value: 7 | ||
}, { | ||
source: 'Thenardier', | ||
target: 'Mme.Thenardier', | ||
value: 13 | ||
}, { | ||
source: 'Thenardier', | ||
target: 'Fantine', | ||
value: 1 | ||
}, { | ||
source: 'Thenardier', | ||
target: 'Valjean', | ||
value: 12 | ||
}, { | ||
source: 'Cosette', | ||
target: 'Mme.Thenardier', | ||
value: 4 | ||
}, { | ||
source: 'Cosette', | ||
target: 'Valjean', | ||
value: 31 | ||
}, { | ||
source: 'Cosette', | ||
target: 'Tholomyes', | ||
value: 1 | ||
}, { | ||
source: 'Cosette', | ||
target: 'Thenardier', | ||
value: 1 | ||
}, { | ||
source: 'Javert', | ||
target: 'Valjean', | ||
value: 17 | ||
}, { | ||
source: 'Javert', | ||
target: 'Fantine', | ||
value: 5 | ||
}, { | ||
source: 'Javert', | ||
target: 'Thenardier', | ||
value: 5 | ||
}, { | ||
source: 'Javert', | ||
target: 'Mme.Thenardier', | ||
value: 1 | ||
}, { | ||
source: 'Javert', | ||
target: 'Cosette', | ||
value: 1 | ||
}, { | ||
source: 'Fauchelevent', | ||
target: 'Valjean', | ||
value: 8 | ||
}, { | ||
source: 'Fauchelevent', | ||
target: 'Javert', | ||
value: 1 | ||
}, { | ||
source: 'Bamatabois', | ||
target: 'Fantine', | ||
value: 1 | ||
}, { | ||
source: 'Bamatabois', | ||
target: 'Javert', | ||
value: 1 | ||
}, { | ||
source: 'Bamatabois', | ||
target: 'Valjean', | ||
value: 2 | ||
}, { | ||
source: 'Perpetue', | ||
target: 'Fantine', | ||
value: 1 | ||
}, { | ||
source: 'Simplice', | ||
target: 'Perpetue', | ||
value: 2 | ||
}, { | ||
source: 'Simplice', | ||
target: 'Valjean', | ||
value: 3 | ||
}, { | ||
source: 'Simplice', | ||
target: 'Fantine', | ||
value: 2 | ||
}, { | ||
source: 'Simplice', | ||
target: 'Javert', | ||
value: 1 | ||
}, { | ||
source: 'Scaufflaire', | ||
target: 'Valjean', | ||
value: 1 | ||
}, { | ||
source: 'Woman1', | ||
target: 'Valjean', | ||
value: 2 | ||
}, { | ||
source: 'Woman1', | ||
target: 'Javert', | ||
value: 1 | ||
}, { | ||
source: 'Judge', | ||
target: 'Valjean', | ||
value: 3 | ||
}, { | ||
source: 'Judge', | ||
target: 'Bamatabois', | ||
value: 2 | ||
}, { | ||
source: 'Champmathieu', | ||
target: 'Valjean', | ||
value: 3 | ||
}, { | ||
source: 'Champmathieu', | ||
target: 'Judge', | ||
value: 3 | ||
}, { | ||
source: 'Champmathieu', | ||
target: 'Bamatabois', | ||
value: 2 | ||
}, { | ||
source: 'Brevet', | ||
target: 'Judge', | ||
value: 2 | ||
}, { | ||
source: 'Brevet', | ||
target: 'Champmathieu', | ||
value: 2 | ||
}, { | ||
source: 'Brevet', | ||
target: 'Valjean', | ||
value: 2 | ||
}, { | ||
source: 'Brevet', | ||
target: 'Bamatabois', | ||
value: 1 | ||
}, { | ||
source: 'Chenildieu', | ||
target: 'Judge', | ||
value: 2 | ||
}, { | ||
source: 'Chenildieu', | ||
target: 'Champmathieu', | ||
value: 2 | ||
}, { | ||
source: 'Chenildieu', | ||
target: 'Brevet', | ||
value: 2 | ||
}, { | ||
source: 'Chenildieu', | ||
target: 'Valjean', | ||
value: 2 | ||
}, { | ||
source: 'Chenildieu', | ||
target: 'Bamatabois', | ||
value: 1 | ||
}, { | ||
source: 'Cochepaille', | ||
target: 'Judge', | ||
value: 2 | ||
}, { | ||
source: 'Cochepaille', | ||
target: 'Champmathieu', | ||
value: 2 | ||
}, { | ||
source: 'Cochepaille', | ||
target: 'Brevet', | ||
value: 2 | ||
}, { | ||
source: 'Cochepaille', | ||
target: 'Chenildieu', | ||
value: 2 | ||
}, { | ||
source: 'Cochepaille', | ||
target: 'Valjean', | ||
value: 2 | ||
}, { | ||
source: 'Cochepaille', | ||
target: 'Bamatabois', | ||
value: 1 | ||
}, { | ||
source: 'Pontmercy', | ||
target: 'Thenardier', | ||
value: 1 | ||
}, { | ||
source: 'Boulatruelle', | ||
target: 'Thenardier', | ||
value: 1 | ||
}, { | ||
source: 'Eponine', | ||
target: 'Mme.Thenardier', | ||
value: 2 | ||
}, { | ||
source: 'Eponine', | ||
target: 'Thenardier', | ||
value: 3 | ||
}, { | ||
source: 'Anzelma', | ||
target: 'Eponine', | ||
value: 2 | ||
}, { | ||
source: 'Anzelma', | ||
target: 'Thenardier', | ||
value: 2 | ||
}, { | ||
source: 'Anzelma', | ||
target: 'Mme.Thenardier', | ||
value: 1 | ||
}, { | ||
source: 'Woman2', | ||
target: 'Valjean', | ||
value: 3 | ||
}, { | ||
source: 'Woman2', | ||
target: 'Cosette', | ||
value: 1 | ||
}, { | ||
source: 'Woman2', | ||
target: 'Javert', | ||
value: 1 | ||
}, { | ||
source: 'MotherInnocent', | ||
target: 'Fauchelevent', | ||
value: 3 | ||
}, { | ||
source: 'MotherInnocent', | ||
target: 'Valjean', | ||
value: 1 | ||
}, { | ||
source: 'Gribier', | ||
target: 'Fauchelevent', | ||
value: 2 | ||
}, { | ||
source: 'Mme.Burgon', | ||
target: 'Jondrette', | ||
value: 1 | ||
}, { | ||
source: 'Gavroche', | ||
target: 'Mme.Burgon', | ||
value: 2 | ||
}, { | ||
source: 'Gavroche', | ||
target: 'Thenardier', | ||
value: 1 | ||
}, { | ||
source: 'Gavroche', | ||
target: 'Javert', | ||
value: 1 | ||
}, { | ||
source: 'Gavroche', | ||
target: 'Valjean', | ||
value: 1 | ||
}, { | ||
source: 'Gillenormand', | ||
target: 'Cosette', | ||
value: 3 | ||
}, { | ||
source: 'Gillenormand', | ||
target: 'Valjean', | ||
value: 2 | ||
}, { | ||
source: 'Magnon', | ||
target: 'Gillenormand', | ||
value: 1 | ||
}, { | ||
source: 'Magnon', | ||
target: 'Mme.Thenardier', | ||
value: 1 | ||
}, { | ||
source: 'Mlle.Gillenormand', | ||
target: 'Gillenormand', | ||
value: 9 | ||
}, { | ||
source: 'Mlle.Gillenormand', | ||
target: 'Cosette', | ||
value: 2 | ||
}, { | ||
source: 'Mlle.Gillenormand', | ||
target: 'Valjean', | ||
value: 2 | ||
}, { | ||
source: 'Mme.Pontmercy', | ||
target: 'Mlle.Gillenormand', | ||
value: 1 | ||
}, { | ||
source: 'Mme.Pontmercy', | ||
target: 'Pontmercy', | ||
value: 1 | ||
}, { | ||
source: 'Mlle.Vaubois', | ||
target: 'Mlle.Gillenormand', | ||
value: 1 | ||
}, { | ||
source: 'Lt.Gillenormand', | ||
target: 'Mlle.Gillenormand', | ||
value: 2 | ||
}, { | ||
source: 'Lt.Gillenormand', | ||
target: 'Gillenormand', | ||
value: 1 | ||
}, { | ||
source: 'Lt.Gillenormand', | ||
target: 'Cosette', | ||
value: 1 | ||
}, { | ||
source: 'Marius', | ||
target: 'Mlle.Gillenormand', | ||
value: 6 | ||
}, { | ||
source: 'Marius', | ||
target: 'Gillenormand', | ||
value: 12 | ||
}, { | ||
source: 'Marius', | ||
target: 'Pontmercy', | ||
value: 1 | ||
}, { | ||
source: 'Marius', | ||
target: 'Lt.Gillenormand', | ||
value: 1 | ||
}, { | ||
source: 'Marius', | ||
target: 'Cosette', | ||
value: 21 | ||
}, { | ||
source: 'Marius', | ||
target: 'Valjean', | ||
value: 19 | ||
}, { | ||
source: 'Marius', | ||
target: 'Tholomyes', | ||
value: 1 | ||
}, { | ||
source: 'Marius', | ||
target: 'Thenardier', | ||
value: 2 | ||
}, { | ||
source: 'Marius', | ||
target: 'Eponine', | ||
value: 5 | ||
}, { | ||
source: 'Marius', | ||
target: 'Gavroche', | ||
value: 4 | ||
}, { | ||
source: 'BaronessT', | ||
target: 'Gillenormand', | ||
value: 1 | ||
}, { | ||
source: 'BaronessT', | ||
target: 'Marius', | ||
value: 1 | ||
}, { | ||
source: 'Mabeuf', | ||
target: 'Marius', | ||
value: 1 | ||
}, { | ||
source: 'Mabeuf', | ||
target: 'Eponine', | ||
value: 1 | ||
}, { | ||
source: 'Mabeuf', | ||
target: 'Gavroche', | ||
value: 1 | ||
}, { | ||
source: 'Enjolras', | ||
target: 'Marius', | ||
value: 7 | ||
}, { | ||
source: 'Enjolras', | ||
target: 'Gavroche', | ||
value: 7 | ||
}, { | ||
source: 'Enjolras', | ||
target: 'Javert', | ||
value: 6 | ||
}, { | ||
source: 'Enjolras', | ||
target: 'Mabeuf', | ||
value: 1 | ||
}, { | ||
source: 'Enjolras', | ||
target: 'Valjean', | ||
value: 4 | ||
}, { | ||
source: 'Combeferre', | ||
target: 'Enjolras', | ||
value: 15 | ||
}, { | ||
source: 'Combeferre', | ||
target: 'Marius', | ||
value: 5 | ||
}, { | ||
source: 'Combeferre', | ||
target: 'Gavroche', | ||
value: 6 | ||
}, { | ||
source: 'Combeferre', | ||
target: 'Mabeuf', | ||
value: 2 | ||
}, { | ||
source: 'Prouvaire', | ||
target: 'Gavroche', | ||
value: 1 | ||
}, { | ||
source: 'Prouvaire', | ||
target: 'Enjolras', | ||
value: 4 | ||
}, { | ||
source: 'Prouvaire', | ||
target: 'Combeferre', | ||
value: 2 | ||
}, { | ||
source: 'Feuilly', | ||
target: 'Gavroche', | ||
value: 2 | ||
}, { | ||
source: 'Feuilly', | ||
target: 'Enjolras', | ||
value: 6 | ||
}, { | ||
source: 'Feuilly', | ||
target: 'Prouvaire', | ||
value: 2 | ||
}, { | ||
source: 'Feuilly', | ||
target: 'Combeferre', | ||
value: 5 | ||
}, { | ||
source: 'Feuilly', | ||
target: 'Mabeuf', | ||
value: 1 | ||
}, { | ||
source: 'Feuilly', | ||
target: 'Marius', | ||
value: 1 | ||
}, { | ||
source: 'Courfeyrac', | ||
target: 'Marius', | ||
value: 9 | ||
}, { | ||
source: 'Courfeyrac', | ||
target: 'Enjolras', | ||
value: 17 | ||
}, { | ||
source: 'Courfeyrac', | ||
target: 'Combeferre', | ||
value: 13 | ||
}, { | ||
source: 'Courfeyrac', | ||
target: 'Gavroche', | ||
value: 7 | ||
}, { | ||
source: 'Courfeyrac', | ||
target: 'Mabeuf', | ||
value: 2 | ||
}, { | ||
source: 'Courfeyrac', | ||
target: 'Eponine', | ||
value: 1 | ||
}, { | ||
source: 'Courfeyrac', | ||
target: 'Feuilly', | ||
value: 6 | ||
}, { | ||
source: 'Courfeyrac', | ||
target: 'Prouvaire', | ||
value: 3 | ||
}, { | ||
source: 'Bahorel', | ||
target: 'Combeferre', | ||
value: 5 | ||
}, { | ||
source: 'Bahorel', | ||
target: 'Gavroche', | ||
value: 5 | ||
}, { | ||
source: 'Bahorel', | ||
target: 'Courfeyrac', | ||
value: 6 | ||
}, { | ||
source: 'Bahorel', | ||
target: 'Mabeuf', | ||
value: 2 | ||
}, { | ||
source: 'Bahorel', | ||
target: 'Enjolras', | ||
value: 4 | ||
}, { | ||
source: 'Bahorel', | ||
target: 'Feuilly', | ||
value: 3 | ||
}, { | ||
source: 'Bahorel', | ||
target: 'Prouvaire', | ||
value: 2 | ||
}, { | ||
source: 'Bahorel', | ||
target: 'Marius', | ||
value: 1 | ||
}, { | ||
source: 'Bossuet', | ||
target: 'Marius', | ||
value: 5 | ||
}, { | ||
source: 'Bossuet', | ||
target: 'Courfeyrac', | ||
value: 12 | ||
}, { | ||
source: 'Bossuet', | ||
target: 'Gavroche', | ||
value: 5 | ||
}, { | ||
source: 'Bossuet', | ||
target: 'Bahorel', | ||
value: 4 | ||
}, { | ||
source: 'Bossuet', | ||
target: 'Enjolras', | ||
value: 10 | ||
}, { | ||
source: 'Bossuet', | ||
target: 'Feuilly', | ||
value: 6 | ||
}, { | ||
source: 'Bossuet', | ||
target: 'Prouvaire', | ||
value: 2 | ||
}, { | ||
source: 'Bossuet', | ||
target: 'Combeferre', | ||
value: 9 | ||
}, { | ||
source: 'Bossuet', | ||
target: 'Mabeuf', | ||
value: 1 | ||
}, { | ||
source: 'Bossuet', | ||
target: 'Valjean', | ||
value: 1 | ||
}, { | ||
source: 'Joly', | ||
target: 'Bahorel', | ||
value: 5 | ||
}, { | ||
source: 'Joly', | ||
target: 'Bossuet', | ||
value: 7 | ||
}, { | ||
source: 'Joly', | ||
target: 'Gavroche', | ||
value: 3 | ||
}, { | ||
source: 'Joly', | ||
target: 'Courfeyrac', | ||
value: 5 | ||
}, { | ||
source: 'Joly', | ||
target: 'Enjolras', | ||
value: 5 | ||
}, { | ||
source: 'Joly', | ||
target: 'Feuilly', | ||
value: 5 | ||
}, { | ||
source: 'Joly', | ||
target: 'Prouvaire', | ||
value: 2 | ||
}, { | ||
source: 'Joly', | ||
target: 'Combeferre', | ||
value: 5 | ||
}, { | ||
source: 'Joly', | ||
target: 'Mabeuf', | ||
value: 1 | ||
}, { | ||
source: 'Joly', | ||
target: 'Marius', | ||
value: 2 | ||
}, { | ||
source: 'Grantaire', | ||
target: 'Bossuet', | ||
value: 3 | ||
}, { | ||
source: 'Grantaire', | ||
target: 'Enjolras', | ||
value: 3 | ||
}, { | ||
source: 'Grantaire', | ||
target: 'Combeferre', | ||
value: 1 | ||
}, { | ||
source: 'Grantaire', | ||
target: 'Courfeyrac', | ||
value: 2 | ||
}, { | ||
source: 'Grantaire', | ||
target: 'Joly', | ||
value: 2 | ||
}, { | ||
source: 'Grantaire', | ||
target: 'Gavroche', | ||
value: 1 | ||
}, { | ||
source: 'Grantaire', | ||
target: 'Bahorel', | ||
value: 1 | ||
}, { | ||
source: 'Grantaire', | ||
target: 'Feuilly', | ||
value: 1 | ||
}, { | ||
source: 'Grantaire', | ||
target: 'Prouvaire', | ||
value: 1 | ||
}, { | ||
source: 'MotherPlutarch', | ||
target: 'Mabeuf', | ||
value: 3 | ||
}, { | ||
source: 'Gueulemer', | ||
target: 'Thenardier', | ||
value: 5 | ||
}, { | ||
source: 'Gueulemer', | ||
target: 'Valjean', | ||
value: 1 | ||
}, { | ||
source: 'Gueulemer', | ||
target: 'Mme.Thenardier', | ||
value: 1 | ||
}, { | ||
source: 'Gueulemer', | ||
target: 'Javert', | ||
value: 1 | ||
}, { | ||
source: 'Gueulemer', | ||
target: 'Gavroche', | ||
value: 1 | ||
}, { | ||
source: 'Gueulemer', | ||
target: 'Eponine', | ||
value: 1 | ||
}, { | ||
source: 'Babet', | ||
target: 'Thenardier', | ||
value: 6 | ||
}, { | ||
source: 'Babet', | ||
target: 'Gueulemer', | ||
value: 6 | ||
}, { | ||
source: 'Babet', | ||
target: 'Valjean', | ||
value: 1 | ||
}, { | ||
source: 'Babet', | ||
target: 'Mme.Thenardier', | ||
value: 1 | ||
}, { | ||
source: 'Babet', | ||
target: 'Javert', | ||
value: 2 | ||
}, { | ||
source: 'Babet', | ||
target: 'Gavroche', | ||
value: 1 | ||
}, { | ||
source: 'Babet', | ||
target: 'Eponine', | ||
value: 1 | ||
}, { | ||
source: 'Claquesous', | ||
target: 'Thenardier', | ||
value: 4 | ||
}, { | ||
source: 'Claquesous', | ||
target: 'Babet', | ||
value: 4 | ||
}, { | ||
source: 'Claquesous', | ||
target: 'Gueulemer', | ||
value: 4 | ||
}, { | ||
source: 'Claquesous', | ||
target: 'Valjean', | ||
value: 1 | ||
}, { | ||
source: 'Claquesous', | ||
target: 'Mme.Thenardier', | ||
value: 1 | ||
}, { | ||
source: 'Claquesous', | ||
target: 'Javert', | ||
value: 1 | ||
}, { | ||
source: 'Claquesous', | ||
target: 'Eponine', | ||
value: 1 | ||
}, { | ||
source: 'Claquesous', | ||
target: 'Enjolras', | ||
value: 1 | ||
}, { | ||
source: 'Montparnasse', | ||
target: 'Javert', | ||
value: 1 | ||
}, { | ||
source: 'Montparnasse', | ||
target: 'Babet', | ||
value: 2 | ||
}, { | ||
source: 'Montparnasse', | ||
target: 'Gueulemer', | ||
value: 2 | ||
}, { | ||
source: 'Montparnasse', | ||
target: 'Claquesous', | ||
value: 2 | ||
}, { | ||
source: 'Montparnasse', | ||
target: 'Valjean', | ||
value: 1 | ||
}, { | ||
source: 'Montparnasse', | ||
target: 'Gavroche', | ||
value: 1 | ||
}, { | ||
source: 'Montparnasse', | ||
target: 'Eponine', | ||
value: 1 | ||
}, { | ||
source: 'Montparnasse', | ||
target: 'Thenardier', | ||
value: 1 | ||
}, { | ||
source: 'Toussaint', | ||
target: 'Cosette', | ||
value: 2 | ||
}, { | ||
source: 'Toussaint', | ||
target: 'Javert', | ||
value: 1 | ||
}, { | ||
source: 'Toussaint', | ||
target: 'Valjean', | ||
value: 1 | ||
}, { | ||
source: 'Child1', | ||
target: 'Gavroche', | ||
value: 2 | ||
}, { | ||
source: 'Child2', | ||
target: 'Gavroche', | ||
value: 2 | ||
}, { | ||
source: 'Child2', | ||
target: 'Child1', | ||
value: 3 | ||
}, { | ||
source: 'Brujon', | ||
target: 'Babet', | ||
value: 3 | ||
}, { | ||
source: 'Brujon', | ||
target: 'Gueulemer', | ||
value: 3 | ||
}, { | ||
source: 'Brujon', | ||
target: 'Thenardier', | ||
value: 3 | ||
}, { | ||
source: 'Brujon', | ||
target: 'Gavroche', | ||
value: 1 | ||
}, { | ||
source: 'Brujon', | ||
target: 'Eponine', | ||
value: 1 | ||
}, { | ||
source: 'Brujon', | ||
target: 'Claquesous', | ||
value: 1 | ||
}, { | ||
source: 'Brujon', | ||
target: 'Montparnasse', | ||
value: 1 | ||
}, { | ||
source: 'Mme.Hucheloup', | ||
target: 'Bossuet', | ||
value: 1 | ||
}, { | ||
source: 'Mme.Hucheloup', | ||
target: 'Joly', | ||
value: 1 | ||
}, { | ||
source: 'Mme.Hucheloup', | ||
target: 'Grantaire', | ||
value: 1 | ||
}, { | ||
source: 'Mme.Hucheloup', | ||
target: 'Bahorel', | ||
value: 1 | ||
}, { | ||
source: 'Mme.Hucheloup', | ||
target: 'Courfeyrac', | ||
value: 1 | ||
}, { | ||
source: 'Mme.Hucheloup', | ||
target: 'Gavroche', | ||
value: 1 | ||
}, { | ||
source: 'Mme.Hucheloup', | ||
target: 'Enjolras', | ||
value: 1 | ||
}] | ||
}; | ||
exports.default = _default; |
@@ -1,2 +0,2 @@ | ||
'use strict'; | ||
"use strict"; | ||
@@ -6,2 +6,82 @@ Object.defineProperty(exports, "__esModule", { | ||
}); | ||
exports.default = [{ letter: 'A', frequency: 0.08167 }, { letter: 'B', frequency: 0.01492 }, { letter: 'C', frequency: 0.02782 }, { letter: 'D', frequency: 0.04253 }, { letter: 'E', frequency: 0.12702 }, { letter: 'F', frequency: 0.02288 }, { letter: 'G', frequency: 0.02015 }, { letter: 'H', frequency: 0.06094 }, { letter: 'I', frequency: 0.06966 }, { letter: 'J', frequency: 0.00153 }, { letter: 'K', frequency: 0.00772 }, { letter: 'L', frequency: 0.04025 }, { letter: 'M', frequency: 0.02406 }, { letter: 'N', frequency: 0.06749 }, { letter: 'O', frequency: 0.07507 }, { letter: 'P', frequency: 0.01929 }, { letter: 'Q', frequency: 0.00095 }, { letter: 'R', frequency: 0.05987 }, { letter: 'S', frequency: 0.06327 }, { letter: 'T', frequency: 0.09056 }, { letter: 'U', frequency: 0.02758 }, { letter: 'V', frequency: 0.00978 }, { letter: 'W', frequency: 0.0236 }, { letter: 'X', frequency: 0.0015 }, { letter: 'Y', frequency: 0.01974 }, { letter: 'Z', frequency: 0.00074 }]; | ||
exports.default = void 0; | ||
var _default = [{ | ||
letter: 'A', | ||
frequency: 0.08167 | ||
}, { | ||
letter: 'B', | ||
frequency: 0.01492 | ||
}, { | ||
letter: 'C', | ||
frequency: 0.02782 | ||
}, { | ||
letter: 'D', | ||
frequency: 0.04253 | ||
}, { | ||
letter: 'E', | ||
frequency: 0.12702 | ||
}, { | ||
letter: 'F', | ||
frequency: 0.02288 | ||
}, { | ||
letter: 'G', | ||
frequency: 0.02015 | ||
}, { | ||
letter: 'H', | ||
frequency: 0.06094 | ||
}, { | ||
letter: 'I', | ||
frequency: 0.06966 | ||
}, { | ||
letter: 'J', | ||
frequency: 0.00153 | ||
}, { | ||
letter: 'K', | ||
frequency: 0.00772 | ||
}, { | ||
letter: 'L', | ||
frequency: 0.04025 | ||
}, { | ||
letter: 'M', | ||
frequency: 0.02406 | ||
}, { | ||
letter: 'N', | ||
frequency: 0.06749 | ||
}, { | ||
letter: 'O', | ||
frequency: 0.07507 | ||
}, { | ||
letter: 'P', | ||
frequency: 0.01929 | ||
}, { | ||
letter: 'Q', | ||
frequency: 0.00095 | ||
}, { | ||
letter: 'R', | ||
frequency: 0.05987 | ||
}, { | ||
letter: 'S', | ||
frequency: 0.06327 | ||
}, { | ||
letter: 'T', | ||
frequency: 0.09056 | ||
}, { | ||
letter: 'U', | ||
frequency: 0.02758 | ||
}, { | ||
letter: 'V', | ||
frequency: 0.00978 | ||
}, { | ||
letter: 'W', | ||
frequency: 0.0236 | ||
}, { | ||
letter: 'X', | ||
frequency: 0.0015 | ||
}, { | ||
letter: 'Y', | ||
frequency: 0.01974 | ||
}, { | ||
letter: 'Z', | ||
frequency: 0.00074 | ||
}]; | ||
exports.default = _default; |
@@ -1,2 +0,2 @@ | ||
'use strict'; | ||
"use strict"; | ||
@@ -6,3 +6,4 @@ Object.defineProperty(exports, "__esModule", { | ||
}); | ||
exports.default = [{ | ||
exports.default = void 0; | ||
var _default = [{ | ||
name: 'Jupiter', | ||
@@ -43,2 +44,3 @@ radius: '10.97', | ||
distance: '0' | ||
}]; | ||
}]; | ||
exports.default = _default; |
@@ -1,2 +0,2 @@ | ||
'use strict'; | ||
"use strict"; | ||
@@ -6,3 +6,4 @@ Object.defineProperty(exports, "__esModule", { | ||
}); | ||
exports.default = [{ | ||
exports.default = void 0; | ||
var _default = [{ | ||
id: 'Shakespeare', | ||
@@ -1495,2 +1496,3 @@ parent: null, | ||
size: 17 | ||
}]; | ||
}]; | ||
exports.default = _default; |
{ | ||
"name": "@vx/mock-data", | ||
"version": "0.0.179", | ||
"version": "0.0.182", | ||
"description": "vx mock data", | ||
@@ -11,3 +11,3 @@ "sideEffects": false, | ||
"build:dist": "rm -rf dist && mkdir dist && rollup -c", | ||
"build:babel": "rm -rf build && mkdir build && babel src --out-dir build --ignore node_modules/ --presets stage-0,react,env", | ||
"build:babel": "rm -rf build && mkdir build && babel src --out-dir build --ignore node_modules/ --presets @babel/preset-react,@babel/preset-env", | ||
"prepublish": "npm run build", | ||
@@ -38,9 +38,25 @@ "test": "jest" | ||
"devDependencies": { | ||
"babel-cli": "^6.26.0", | ||
"babel-core": "^6.26.3", | ||
"babel-jest": "^21.2.0", | ||
"babel-plugin-external-helpers": "^6.22.0", | ||
"babel-preset-env": "^1.7.0", | ||
"babel-preset-react": "^6.24.1", | ||
"babel-preset-stage-0": "^6.24.1", | ||
"@babel/cli": "^7.0.0", | ||
"@babel/core": "^7.0.0", | ||
"@babel/plugin-external-helpers": "^7.0.0", | ||
"@babel/plugin-proposal-class-properties": "^7.0.0", | ||
"@babel/plugin-proposal-decorators": "^7.0.0", | ||
"@babel/plugin-proposal-do-expressions": "^7.0.0", | ||
"@babel/plugin-proposal-export-default-from": "^7.0.0", | ||
"@babel/plugin-proposal-export-namespace-from": "^7.0.0", | ||
"@babel/plugin-proposal-function-bind": "^7.0.0", | ||
"@babel/plugin-proposal-function-sent": "^7.0.0", | ||
"@babel/plugin-proposal-json-strings": "^7.0.0", | ||
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0", | ||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0", | ||
"@babel/plugin-proposal-numeric-separator": "^7.0.0", | ||
"@babel/plugin-proposal-optional-chaining": "^7.0.0", | ||
"@babel/plugin-proposal-pipeline-operator": "^7.0.0", | ||
"@babel/plugin-proposal-throw-expressions": "^7.0.0", | ||
"@babel/plugin-syntax-dynamic-import": "^7.0.0", | ||
"@babel/plugin-syntax-import-meta": "^7.0.0", | ||
"@babel/preset-env": "^7.0.0", | ||
"@babel/preset-react": "^7.0.0", | ||
"babel-core": "^7.0.0-bridge.0", | ||
"babel-jest": "^23.4.2", | ||
"enzyme": "^3.1.0", | ||
@@ -54,4 +70,4 @@ "enzyme-adapter-react-16": "^1.0.2", | ||
"react-test-renderer": "^16.0.0", | ||
"rollup": "^0.59.4", | ||
"rollup-plugin-babel": "^3.0.4", | ||
"rollup": "^0.67.4", | ||
"rollup-plugin-babel": "^4.0.1", | ||
"rollup-plugin-commonjs": "^9.1.3", | ||
@@ -58,0 +74,0 @@ "rollup-plugin-node-resolve": "^3.3.0", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
887755
35446
37
8713