From da78b557efe88a5026e969dbc173b4cc48698d92 Mon Sep 17 00:00:00 2001 From: Radha <86818441+DrW3RK@users.noreply.github.com> Date: Tue, 23 May 2023 10:19:20 +0200 Subject: [PATCH] Conditional Render OpenGov doc (#4826) * Conditional Render OpenGov doc * Update maintain-guides-opengov.md * added multi network support for charts * removed unused constants * slight cleanup * update readme * Add OpenGov to Kusama Guide * note on Kusama tracks --------- Co-authored-by: Bader Youssef --- components/Chart.jsx | 26 +- components/utilities/charts_data/README.md | 2 +- .../kusama/opengov_admin_auction.json | 2361 +++++++++++++++++ .../kusama/opengov_admin_fellowship.json | 2361 +++++++++++++++++ .../kusama/opengov_admin_general.json | 2361 +++++++++++++++++ .../kusama/opengov_admin_lease.json | 2361 +++++++++++++++++ .../kusama/opengov_admin_staking.json | 2361 +++++++++++++++++ .../kusama/opengov_big_spender.json | 2361 +++++++++++++++++ .../kusama/opengov_big_tipper.json | 2361 +++++++++++++++++ .../kusama/opengov_medium_spender.json | 2361 +++++++++++++++++ .../kusama/opengov_ref_canceller.json | 2361 +++++++++++++++++ .../kusama/opengov_ref_killer.json | 2361 +++++++++++++++++ .../charts_data/kusama/opengov_root.json | 2361 +++++++++++++++++ .../kusama/opengov_small_spender.json | 2361 +++++++++++++++++ .../kusama/opengov_small_tipper.json | 2361 +++++++++++++++++ .../charts_data/kusama/opengov_treasurer.json | 2361 +++++++++++++++++ .../charts_data/kusama/opengov_whitelist.json | 2361 +++++++++++++++++ .../{ => polkadot}/opengov_admin_auction.json | 0 .../opengov_admin_fellowship.json | 0 .../{ => polkadot}/opengov_admin_general.json | 0 .../{ => polkadot}/opengov_admin_lease.json | 0 .../{ => polkadot}/opengov_admin_staking.json | 0 .../{ => polkadot}/opengov_big_spender.json | 0 .../{ => polkadot}/opengov_big_tipper.json | 0 .../opengov_medium_spender.json | 0 .../{ => polkadot}/opengov_ref_canceller.json | 0 .../{ => polkadot}/opengov_ref_killer.json | 0 .../{ => polkadot}/opengov_root.json | 0 .../{ => polkadot}/opengov_small_spender.json | 0 .../{ => polkadot}/opengov_small_tipper.json | 0 .../{ => polkadot}/opengov_treasurer.json | 0 .../{ => polkadot}/opengov_whitelist.json | 0 components/utilities/openGovVariables.js | 96 +- docs/maintain/maintain-guides-opengov.md | 85 +- kusama-guide/sidebars.js | 1 + 35 files changed, 35554 insertions(+), 71 deletions(-) create mode 100644 components/utilities/charts_data/kusama/opengov_admin_auction.json create mode 100644 components/utilities/charts_data/kusama/opengov_admin_fellowship.json create mode 100644 components/utilities/charts_data/kusama/opengov_admin_general.json create mode 100644 components/utilities/charts_data/kusama/opengov_admin_lease.json create mode 100644 components/utilities/charts_data/kusama/opengov_admin_staking.json create mode 100644 components/utilities/charts_data/kusama/opengov_big_spender.json create mode 100644 components/utilities/charts_data/kusama/opengov_big_tipper.json create mode 100644 components/utilities/charts_data/kusama/opengov_medium_spender.json create mode 100644 components/utilities/charts_data/kusama/opengov_ref_canceller.json create mode 100644 components/utilities/charts_data/kusama/opengov_ref_killer.json create mode 100644 components/utilities/charts_data/kusama/opengov_root.json create mode 100644 components/utilities/charts_data/kusama/opengov_small_spender.json create mode 100644 components/utilities/charts_data/kusama/opengov_small_tipper.json create mode 100644 components/utilities/charts_data/kusama/opengov_treasurer.json create mode 100644 components/utilities/charts_data/kusama/opengov_whitelist.json rename components/utilities/charts_data/{ => polkadot}/opengov_admin_auction.json (100%) rename components/utilities/charts_data/{ => polkadot}/opengov_admin_fellowship.json (100%) rename components/utilities/charts_data/{ => polkadot}/opengov_admin_general.json (100%) rename components/utilities/charts_data/{ => polkadot}/opengov_admin_lease.json (100%) rename components/utilities/charts_data/{ => polkadot}/opengov_admin_staking.json (100%) rename components/utilities/charts_data/{ => polkadot}/opengov_big_spender.json (100%) rename components/utilities/charts_data/{ => polkadot}/opengov_big_tipper.json (100%) rename components/utilities/charts_data/{ => polkadot}/opengov_medium_spender.json (100%) rename components/utilities/charts_data/{ => polkadot}/opengov_ref_canceller.json (100%) rename components/utilities/charts_data/{ => polkadot}/opengov_ref_killer.json (100%) rename components/utilities/charts_data/{ => polkadot}/opengov_root.json (100%) rename components/utilities/charts_data/{ => polkadot}/opengov_small_spender.json (100%) rename components/utilities/charts_data/{ => polkadot}/opengov_small_tipper.json (100%) rename components/utilities/charts_data/{ => polkadot}/opengov_treasurer.json (100%) rename components/utilities/charts_data/{ => polkadot}/opengov_whitelist.json (100%) diff --git a/components/Chart.jsx b/components/Chart.jsx index 5d0e61612318..4a21ca30d9a6 100644 --- a/components/Chart.jsx +++ b/components/Chart.jsx @@ -14,7 +14,7 @@ import { import openGovVariables from "./utilities/openGovVariables"; // Maps a type and props to a JSX charts.js component -function mapTypeToComponent(type, key) { +function mapTypeToComponent(type, key, network, maxY, maxX) { ChartJS.register( CategoryScale, LinearScale, @@ -25,7 +25,7 @@ function mapTypeToComponent(type, key) { Legend ); // Configure props using data - let props = configureProps(key); + let props = configureProps(key, network, maxY, maxX); ChartJS.defaults.font.size = 18; switch (type) { case 'line': @@ -35,8 +35,9 @@ function mapTypeToComponent(type, key) { } } -function configureProps(key) { - let govData = openGovVariables[key]; +function configureProps(key, network, maxY, maxX) { + console.log(`${network}${key}`); + let govData = openGovVariables[`${network}${key}`]; const approvals = govData.map((_) => { return { x: _.time_hours, y: _.approval } }); const support = govData.map((_) => { return { x: _.time_hours, y: _.support } }); @@ -64,21 +65,26 @@ function configureProps(key) { y: { type: 'linear', min: 0, - max: 100, + max: maxY, ticks: { - callback: function(value, index, ticks) { - return `${value}%`; + callback: function (value) { + return `${value}%`; } } }, x: { type: 'linear', min: 0, - max: 672, + max: maxX, title: { display: true, text: "Hours", }, + ticks: { + callback: function (value) { + return `${value}`; + } + } } }, plugins: { @@ -100,8 +106,8 @@ function configureProps(key) { return props; } -function Chart({ title, type, dataId }) { - let chart = mapTypeToComponent(type, dataId); +function Chart({ title, type, dataId, network, maxY, maxX}) { + let chart = mapTypeToComponent(type, dataId, network, maxY, maxX); return (
diff --git a/components/utilities/charts_data/README.md b/components/utilities/charts_data/README.md index 3a606bba13ea..089bfaceac0d 100644 --- a/components/utilities/charts_data/README.md +++ b/components/utilities/charts_data/README.md @@ -18,7 +18,7 @@ import Chart from "./../../components/Chart"; // The title can be left empty, type refers to the type of chart or graph, and dataId should refer to // a dataset within openGovVariables.js -; +; ``` ## Adding new datasets diff --git a/components/utilities/charts_data/kusama/opengov_admin_auction.json b/components/utilities/charts_data/kusama/opengov_admin_auction.json new file mode 100644 index 000000000000..d91eb66eb71a --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_admin_auction.json @@ -0,0 +1,2361 @@ +[ + { + "time_hours": 0, + "approval_perbill": 1000000000, + "support_perbill": 500000000, + "approval": 100, + "support": 50 + }, + { + "time_hours": 1, + "approval_perbill": 994100296, + "support_perbill": 482708936, + "approval": 99.4100296, + "support": 48.2708936 + }, + { + "time_hours": 2, + "approval_perbill": 988304096, + "support_perbill": 466480452, + "approval": 98.8304096, + "support": 46.6480452 + }, + { + "time_hours": 3, + "approval_perbill": 982608697, + "support_perbill": 451219514, + "approval": 98.2608697, + "support": 45.1219514 + }, + { + "time_hours": 4, + "approval_perbill": 977011496, + "support_perbill": 436842109, + "approval": 97.7011496, + "support": 43.6842109 + }, + { + "time_hours": 5, + "approval_perbill": 971509972, + "support_perbill": 423273659, + "approval": 97.1509972, + "support": 42.3273659 + }, + { + "time_hours": 6, + "approval_perbill": 966101697, + "support_perbill": 410447765, + "approval": 96.6101697, + "support": 41.0447765 + }, + { + "time_hours": 7, + "approval_perbill": 960784315, + "support_perbill": 398305086, + "approval": 96.0784315, + "support": 39.8305086 + }, + { + "time_hours": 8, + "approval_perbill": 955555557, + "support_perbill": 386792456, + "approval": 95.5555557, + "support": 38.6792456 + }, + { + "time_hours": 9, + "approval_perbill": 950413224, + "support_perbill": 375862070, + "approval": 95.0413224, + "support": 37.586207 + }, + { + "time_hours": 10, + "approval_perbill": 945355193, + "support_perbill": 365470854, + "approval": 94.5355193, + "support": 36.5470854 + }, + { + "time_hours": 11, + "approval_perbill": 940379404, + "support_perbill": 355579869, + "approval": 94.0379404, + "support": 35.5579869 + }, + { + "time_hours": 12, + "approval_perbill": 935483872, + "support_perbill": 346153848, + "approval": 93.5483872, + "support": 34.6153848 + }, + { + "time_hours": 13, + "approval_perbill": 930666667, + "support_perbill": 337160752, + "approval": 93.0666667, + "support": 33.7160752 + }, + { + "time_hours": 14, + "approval_perbill": 925925927, + "support_perbill": 328571430, + "approval": 92.5925927, + "support": 32.857143 + }, + { + "time_hours": 15, + "approval_perbill": 921259843, + "support_perbill": 320359282, + "approval": 92.1259843, + "support": 32.0359282 + }, + { + "time_hours": 16, + "approval_perbill": 916666668, + "support_perbill": 312500001, + "approval": 91.6666668, + "support": 31.2500001 + }, + { + "time_hours": 17, + "approval_perbill": 912144703, + "support_perbill": 304971319, + "approval": 91.2144703, + "support": 30.4971319 + }, + { + "time_hours": 18, + "approval_perbill": 907692309, + "support_perbill": 297752810, + "approval": 90.7692309, + "support": 29.775281 + }, + { + "time_hours": 19, + "approval_perbill": 903307888, + "support_perbill": 290825688, + "approval": 90.3307888, + "support": 29.0825688 + }, + { + "time_hours": 20, + "approval_perbill": 898989900, + "support_perbill": 284172663, + "approval": 89.89899, + "support": 28.4172663 + }, + { + "time_hours": 21, + "approval_perbill": 894736842, + "support_perbill": 277777777, + "approval": 89.4736842, + "support": 27.7777777 + }, + { + "time_hours": 22, + "approval_perbill": 890547265, + "support_perbill": 271626298, + "approval": 89.0547265, + "support": 27.1626298 + }, + { + "time_hours": 23, + "approval_perbill": 886419755, + "support_perbill": 265704586, + "approval": 88.6419755, + "support": 26.5704586 + }, + { + "time_hours": 24, + "approval_perbill": 882352942, + "support_perbill": 260000000, + "approval": 88.2352942, + "support": 26 + }, + { + "time_hours": 25, + "approval_perbill": 878345500, + "support_perbill": 254500820, + "approval": 87.83455, + "support": 25.450082 + }, + { + "time_hours": 26, + "approval_perbill": 874396136, + "support_perbill": 249196142, + "approval": 87.4396136, + "support": 24.9196142 + }, + { + "time_hours": 27, + "approval_perbill": 870503599, + "support_perbill": 244075830, + "approval": 87.0503599, + "support": 24.407583 + }, + { + "time_hours": 28, + "approval_perbill": 866666667, + "support_perbill": 239130435, + "approval": 86.6666667, + "support": 23.9130435 + }, + { + "time_hours": 29, + "approval_perbill": 862884162, + "support_perbill": 234351146, + "approval": 86.2884162, + "support": 23.4351146 + }, + { + "time_hours": 30, + "approval_perbill": 859154930, + "support_perbill": 229729730, + "approval": 85.915493, + "support": 22.972973 + }, + { + "time_hours": 31, + "approval_perbill": 855477857, + "support_perbill": 225258494, + "approval": 85.5477857, + "support": 22.5258494 + }, + { + "time_hours": 32, + "approval_perbill": 851851852, + "support_perbill": 220930232, + "approval": 85.1851852, + "support": 22.0930232 + }, + { + "time_hours": 33, + "approval_perbill": 848275863, + "support_perbill": 216738198, + "approval": 84.8275863, + "support": 21.6738198 + }, + { + "time_hours": 34, + "approval_perbill": 844748859, + "support_perbill": 212676056, + "approval": 84.4748859, + "support": 21.2676056 + }, + { + "time_hours": 35, + "approval_perbill": 841269842, + "support_perbill": 208737865, + "approval": 84.1269842, + "support": 20.8737865 + }, + { + "time_hours": 36, + "approval_perbill": 837837838, + "support_perbill": 204918033, + "approval": 83.7837838, + "support": 20.4918033 + }, + { + "time_hours": 37, + "approval_perbill": 834451903, + "support_perbill": 201211306, + "approval": 83.4451903, + "support": 20.1211306 + }, + { + "time_hours": 38, + "approval_perbill": 831111112, + "support_perbill": 197612732, + "approval": 83.1111112, + "support": 19.7612732 + }, + { + "time_hours": 39, + "approval_perbill": 827814570, + "support_perbill": 194117647, + "approval": 82.781457, + "support": 19.4117647 + }, + { + "time_hours": 40, + "approval_perbill": 824561404, + "support_perbill": 190721649, + "approval": 82.4561404, + "support": 19.0721649 + }, + { + "time_hours": 41, + "approval_perbill": 821350763, + "support_perbill": 187420585, + "approval": 82.1350763, + "support": 18.7420585 + }, + { + "time_hours": 42, + "approval_perbill": 818181818, + "support_perbill": 184210526, + "approval": 81.8181818, + "support": 18.4210526 + }, + { + "time_hours": 43, + "approval_perbill": 815053764, + "support_perbill": 181087763, + "approval": 81.5053764, + "support": 18.1087763 + }, + { + "time_hours": 44, + "approval_perbill": 811965813, + "support_perbill": 178048781, + "approval": 81.1965813, + "support": 17.8048781 + }, + { + "time_hours": 45, + "approval_perbill": 808917198, + "support_perbill": 175090253, + "approval": 80.8917198, + "support": 17.5090253 + }, + { + "time_hours": 46, + "approval_perbill": 805907174, + "support_perbill": 172209026, + "approval": 80.5907174, + "support": 17.2209026 + }, + { + "time_hours": 47, + "approval_perbill": 802935011, + "support_perbill": 169402110, + "approval": 80.2935011, + "support": 16.940211 + }, + { + "time_hours": 48, + "approval_perbill": 800000001, + "support_perbill": 166666667, + "approval": 80.0000001, + "support": 16.6666667 + }, + { + "time_hours": 49, + "approval_perbill": 797101450, + "support_perbill": 164000000, + "approval": 79.710145, + "support": 16.4 + }, + { + "time_hours": 50, + "approval_perbill": 794238684, + "support_perbill": 161399549, + "approval": 79.4238684, + "support": 16.1399549 + }, + { + "time_hours": 51, + "approval_perbill": 791411043, + "support_perbill": 158862876, + "approval": 79.1411043, + "support": 15.8862876 + }, + { + "time_hours": 52, + "approval_perbill": 788617887, + "support_perbill": 156387665, + "approval": 78.8617887, + "support": 15.6387665 + }, + { + "time_hours": 53, + "approval_perbill": 785858586, + "support_perbill": 153971708, + "approval": 78.5858586, + "support": 15.3971708 + }, + { + "time_hours": 54, + "approval_perbill": 783132531, + "support_perbill": 151612903, + "approval": 78.3132531, + "support": 15.1612903 + }, + { + "time_hours": 55, + "approval_perbill": 780439122, + "support_perbill": 149309245, + "approval": 78.0439122, + "support": 14.9309245 + }, + { + "time_hours": 56, + "approval_perbill": 777777779, + "support_perbill": 147058823, + "approval": 77.7777779, + "support": 14.7058823 + }, + { + "time_hours": 57, + "approval_perbill": 775147929, + "support_perbill": 144859813, + "approval": 77.5147929, + "support": 14.4859813 + }, + { + "time_hours": 58, + "approval_perbill": 772549020, + "support_perbill": 142710472, + "approval": 77.254902, + "support": 14.2710472 + }, + { + "time_hours": 59, + "approval_perbill": 769980507, + "support_perbill": 140609137, + "approval": 76.9980507, + "support": 14.0609137 + }, + { + "time_hours": 60, + "approval_perbill": 767441861, + "support_perbill": 138554217, + "approval": 76.7441861, + "support": 13.8554217 + }, + { + "time_hours": 61, + "approval_perbill": 764932563, + "support_perbill": 136544190, + "approval": 76.4932563, + "support": 13.654419 + }, + { + "time_hours": 62, + "approval_perbill": 762452108, + "support_perbill": 134577603, + "approval": 76.2452108, + "support": 13.4577603 + }, + { + "time_hours": 63, + "approval_perbill": 760000000, + "support_perbill": 132653061, + "approval": 76, + "support": 13.2653061 + }, + { + "time_hours": 64, + "approval_perbill": 757575758, + "support_perbill": 130769230, + "approval": 75.7575758, + "support": 13.076923 + }, + { + "time_hours": 65, + "approval_perbill": 755178909, + "support_perbill": 128924833, + "approval": 75.5178909, + "support": 12.8924833 + }, + { + "time_hours": 66, + "approval_perbill": 752808989, + "support_perbill": 127118644, + "approval": 75.2808989, + "support": 12.7118644 + }, + { + "time_hours": 67, + "approval_perbill": 750465550, + "support_perbill": 125349487, + "approval": 75.046555, + "support": 12.5349487 + }, + { + "time_hours": 68, + "approval_perbill": 748148149, + "support_perbill": 123616236, + "approval": 74.8148149, + "support": 12.3616236 + }, + { + "time_hours": 69, + "approval_perbill": 745856354, + "support_perbill": 121917808, + "approval": 74.5856354, + "support": 12.1917808 + }, + { + "time_hours": 70, + "approval_perbill": 743589744, + "support_perbill": 120253164, + "approval": 74.3589744, + "support": 12.0253164 + }, + { + "time_hours": 71, + "approval_perbill": 741347906, + "support_perbill": 118621307, + "approval": 74.1347906, + "support": 11.8621307 + }, + { + "time_hours": 72, + "approval_perbill": 739130435, + "support_perbill": 117021276, + "approval": 73.9130435, + "support": 11.7021276 + }, + { + "time_hours": 73, + "approval_perbill": 736936938, + "support_perbill": 115452151, + "approval": 73.6936938, + "support": 11.5452151 + }, + { + "time_hours": 74, + "approval_perbill": 734767025, + "support_perbill": 113913043, + "approval": 73.4767025, + "support": 11.3913043 + }, + { + "time_hours": 75, + "approval_perbill": 732620322, + "support_perbill": 112403100, + "approval": 73.2620322, + "support": 11.24031 + }, + { + "time_hours": 76, + "approval_perbill": 730496454, + "support_perbill": 110921501, + "approval": 73.0496454, + "support": 11.0921501 + }, + { + "time_hours": 77, + "approval_perbill": 728395062, + "support_perbill": 109467455, + "approval": 72.8395062, + "support": 10.9467455 + }, + { + "time_hours": 78, + "approval_perbill": 726315790, + "support_perbill": 108040200, + "approval": 72.631579, + "support": 10.80402 + }, + { + "time_hours": 79, + "approval_perbill": 724258290, + "support_perbill": 106639004, + "approval": 72.425829, + "support": 10.6639004 + }, + { + "time_hours": 80, + "approval_perbill": 722222222, + "support_perbill": 105263157, + "approval": 72.2222222, + "support": 10.5263157 + }, + { + "time_hours": 81, + "approval_perbill": 720207254, + "support_perbill": 103911980, + "approval": 72.0207254, + "support": 10.391198 + }, + { + "time_hours": 82, + "approval_perbill": 718213059, + "support_perbill": 102584814, + "approval": 71.8213059, + "support": 10.2584814 + }, + { + "time_hours": 83, + "approval_perbill": 716239317, + "support_perbill": 101281024, + "approval": 71.6239317, + "support": 10.1281024 + }, + { + "time_hours": 84, + "approval_perbill": 714285714, + "support_perbill": 99999999, + "approval": 71.4285714, + "support": 9.9999999 + }, + { + "time_hours": 85, + "approval_perbill": 712351946, + "support_perbill": 98741148, + "approval": 71.2351946, + "support": 9.8741148 + }, + { + "time_hours": 86, + "approval_perbill": 710437711, + "support_perbill": 97503900, + "approval": 71.0437711, + "support": 9.75039 + }, + { + "time_hours": 87, + "approval_perbill": 708542714, + "support_perbill": 96287703, + "approval": 70.8542714, + "support": 9.6287703 + }, + { + "time_hours": 88, + "approval_perbill": 706666667, + "support_perbill": 95092024, + "approval": 70.6666667, + "support": 9.5092024 + }, + { + "time_hours": 89, + "approval_perbill": 704809287, + "support_perbill": 93916349, + "approval": 70.4809287, + "support": 9.3916349 + }, + { + "time_hours": 90, + "approval_perbill": 702970298, + "support_perbill": 92760181, + "approval": 70.2970298, + "support": 9.2760181 + }, + { + "time_hours": 91, + "approval_perbill": 701149426, + "support_perbill": 91623036, + "approval": 70.1149426, + "support": 9.1623036 + }, + { + "time_hours": 92, + "approval_perbill": 699346406, + "support_perbill": 90504451, + "approval": 69.9346406, + "support": 9.0504451 + }, + { + "time_hours": 93, + "approval_perbill": 697560976, + "support_perbill": 89403973, + "approval": 69.7560976, + "support": 8.9403973 + }, + { + "time_hours": 94, + "approval_perbill": 695792881, + "support_perbill": 88321167, + "approval": 69.5792881, + "support": 8.8321167 + }, + { + "time_hours": 95, + "approval_perbill": 694041868, + "support_perbill": 87255611, + "approval": 69.4041868, + "support": 8.7255611 + }, + { + "time_hours": 96, + "approval_perbill": 692307693, + "support_perbill": 86206896, + "approval": 69.2307693, + "support": 8.6206896 + }, + { + "time_hours": 97, + "approval_perbill": 690590112, + "support_perbill": 85174625, + "approval": 69.0590112, + "support": 8.5174625 + }, + { + "time_hours": 98, + "approval_perbill": 688888889, + "support_perbill": 84158415, + "approval": 68.8888889, + "support": 8.4158415 + }, + { + "time_hours": 99, + "approval_perbill": 687203792, + "support_perbill": 83157894, + "approval": 68.7203792, + "support": 8.3157894 + }, + { + "time_hours": 100, + "approval_perbill": 685534592, + "support_perbill": 82172701, + "approval": 68.5534592, + "support": 8.2172701 + }, + { + "time_hours": 101, + "approval_perbill": 683881064, + "support_perbill": 81202487, + "approval": 68.3881064, + "support": 8.1202487 + }, + { + "time_hours": 102, + "approval_perbill": 682242991, + "support_perbill": 80246913, + "approval": 68.2242991, + "support": 8.0246913 + }, + { + "time_hours": 103, + "approval_perbill": 680620155, + "support_perbill": 79305649, + "approval": 68.0620155, + "support": 7.9305649 + }, + { + "time_hours": 104, + "approval_perbill": 679012346, + "support_perbill": 78378378, + "approval": 67.9012346, + "support": 7.8378378 + }, + { + "time_hours": 105, + "approval_perbill": 677419355, + "support_perbill": 77464788, + "approval": 67.7419355, + "support": 7.7464788 + }, + { + "time_hours": 106, + "approval_perbill": 675840979, + "support_perbill": 76564580, + "approval": 67.5840979, + "support": 7.656458 + }, + { + "time_hours": 107, + "approval_perbill": 674277017, + "support_perbill": 75677462, + "approval": 67.4277017, + "support": 7.5677462 + }, + { + "time_hours": 108, + "approval_perbill": 672727273, + "support_perbill": 74803149, + "approval": 67.2727273, + "support": 7.4803149 + }, + { + "time_hours": 109, + "approval_perbill": 671191554, + "support_perbill": 73941368, + "approval": 67.1191554, + "support": 7.3941368 + }, + { + "time_hours": 110, + "approval_perbill": 669669670, + "support_perbill": 73091849, + "approval": 66.966967, + "support": 7.3091849 + }, + { + "time_hours": 111, + "approval_perbill": 668161435, + "support_perbill": 72254335, + "approval": 66.8161435, + "support": 7.2254335 + }, + { + "time_hours": 112, + "approval_perbill": 666666667, + "support_perbill": 71428571, + "approval": 66.6666667, + "support": 7.1428571 + }, + { + "time_hours": 113, + "approval_perbill": 665185186, + "support_perbill": 70614312, + "approval": 66.5185186, + "support": 7.0614312 + }, + { + "time_hours": 114, + "approval_perbill": 663716814, + "support_perbill": 69811320, + "approval": 66.3716814, + "support": 6.981132 + }, + { + "time_hours": 115, + "approval_perbill": 662261381, + "support_perbill": 69019362, + "approval": 66.2261381, + "support": 6.9019362 + }, + { + "time_hours": 116, + "approval_perbill": 660818714, + "support_perbill": 68238213, + "approval": 66.0818714, + "support": 6.8238213 + }, + { + "time_hours": 117, + "approval_perbill": 659388647, + "support_perbill": 67467652, + "approval": 65.9388647, + "support": 6.7467652 + }, + { + "time_hours": 118, + "approval_perbill": 657971015, + "support_perbill": 66707466, + "approval": 65.7971015, + "support": 6.6707466 + }, + { + "time_hours": 119, + "approval_perbill": 656565657, + "support_perbill": 65957446, + "approval": 65.6565657, + "support": 6.5957446 + }, + { + "time_hours": 120, + "approval_perbill": 655172414, + "support_perbill": 65217391, + "approval": 65.5172414, + "support": 6.5217391 + }, + { + "time_hours": 121, + "approval_perbill": 653791130, + "support_perbill": 64487102, + "approval": 65.379113, + "support": 6.4487102 + }, + { + "time_hours": 122, + "approval_perbill": 652421652, + "support_perbill": 63766388, + "approval": 65.2421652, + "support": 6.3766388 + }, + { + "time_hours": 123, + "approval_perbill": 651063830, + "support_perbill": 63055062, + "approval": 65.106383, + "support": 6.3055062 + }, + { + "time_hours": 124, + "approval_perbill": 649717514, + "support_perbill": 62352940, + "approval": 64.9717514, + "support": 6.235294 + }, + { + "time_hours": 125, + "approval_perbill": 648382560, + "support_perbill": 61659847, + "approval": 64.838256, + "support": 6.1659847 + }, + { + "time_hours": 126, + "approval_perbill": 647058823, + "support_perbill": 60975609, + "approval": 64.7058823, + "support": 6.0975609 + }, + { + "time_hours": 127, + "approval_perbill": 645746165, + "support_perbill": 60300057, + "approval": 64.5746165, + "support": 6.0300057 + }, + { + "time_hours": 128, + "approval_perbill": 644444445, + "support_perbill": 59633027, + "approval": 64.4444445, + "support": 5.9633027 + }, + { + "time_hours": 129, + "approval_perbill": 643153527, + "support_perbill": 58974358, + "approval": 64.3153527, + "support": 5.8974358 + }, + { + "time_hours": 130, + "approval_perbill": 641873279, + "support_perbill": 58323895, + "approval": 64.1873279, + "support": 5.8323895 + }, + { + "time_hours": 131, + "approval_perbill": 640603567, + "support_perbill": 57681485, + "approval": 64.0603567, + "support": 5.7681485 + }, + { + "time_hours": 132, + "approval_perbill": 639344263, + "support_perbill": 57046979, + "approval": 63.9344263, + "support": 5.7046979 + }, + { + "time_hours": 133, + "approval_perbill": 638095238, + "support_perbill": 56420233, + "approval": 63.8095238, + "support": 5.6420233 + }, + { + "time_hours": 134, + "approval_perbill": 636856369, + "support_perbill": 55801104, + "approval": 63.6856369, + "support": 5.5801104 + }, + { + "time_hours": 135, + "approval_perbill": 635627530, + "support_perbill": 55189456, + "approval": 63.562753, + "support": 5.5189456 + }, + { + "time_hours": 136, + "approval_perbill": 634408602, + "support_perbill": 54585152, + "approval": 63.4408602, + "support": 5.4585152 + }, + { + "time_hours": 137, + "approval_perbill": 633199465, + "support_perbill": 53988062, + "approval": 63.3199465, + "support": 5.3988062 + }, + { + "time_hours": 138, + "approval_perbill": 632000000, + "support_perbill": 53398058, + "approval": 63.2, + "support": 5.3398058 + }, + { + "time_hours": 139, + "approval_perbill": 630810093, + "support_perbill": 52815013, + "approval": 63.0810093, + "support": 5.2815013 + }, + { + "time_hours": 140, + "approval_perbill": 629629630, + "support_perbill": 52238805, + "approval": 62.962963, + "support": 5.2238805 + }, + { + "time_hours": 141, + "approval_perbill": 628458498, + "support_perbill": 51669316, + "approval": 62.8458498, + "support": 5.1669316 + }, + { + "time_hours": 142, + "approval_perbill": 627296588, + "support_perbill": 51106427, + "approval": 62.7296588, + "support": 5.1106427 + }, + { + "time_hours": 143, + "approval_perbill": 626143791, + "support_perbill": 50550025, + "approval": 62.6143791, + "support": 5.0550025 + }, + { + "time_hours": 144, + "approval_perbill": 625000000, + "support_perbill": 49999999, + "approval": 62.5, + "support": 4.9999999 + }, + { + "time_hours": 145, + "approval_perbill": 623865110, + "support_perbill": 49456240, + "approval": 62.386511, + "support": 4.945624 + }, + { + "time_hours": 146, + "approval_perbill": 622739018, + "support_perbill": 48918640, + "approval": 62.2739018, + "support": 4.891864 + }, + { + "time_hours": 147, + "approval_perbill": 621621621, + "support_perbill": 48387096, + "approval": 62.1621621, + "support": 4.8387096 + }, + { + "time_hours": 148, + "approval_perbill": 620512821, + "support_perbill": 47861506, + "approval": 62.0512821, + "support": 4.7861506 + }, + { + "time_hours": 149, + "approval_perbill": 619412516, + "support_perbill": 47341772, + "approval": 61.9412516, + "support": 4.7341772 + }, + { + "time_hours": 150, + "approval_perbill": 618320611, + "support_perbill": 46827794, + "approval": 61.8320611, + "support": 4.6827794 + }, + { + "time_hours": 151, + "approval_perbill": 617237009, + "support_perbill": 46319479, + "approval": 61.7237009, + "support": 4.6319479 + }, + { + "time_hours": 152, + "approval_perbill": 616161616, + "support_perbill": 45816732, + "approval": 61.6161616, + "support": 4.5816732 + }, + { + "time_hours": 153, + "approval_perbill": 615094340, + "support_perbill": 45319464, + "approval": 61.509434, + "support": 4.5319464 + }, + { + "time_hours": 154, + "approval_perbill": 614035088, + "support_perbill": 44827585, + "approval": 61.4035088, + "support": 4.4827585 + }, + { + "time_hours": 155, + "approval_perbill": 612983770, + "support_perbill": 44341009, + "approval": 61.298377, + "support": 4.4341009 + }, + { + "time_hours": 156, + "approval_perbill": 611940298, + "support_perbill": 43859648, + "approval": 61.1940298, + "support": 4.3859648 + }, + { + "time_hours": 157, + "approval_perbill": 610904585, + "support_perbill": 43383422, + "approval": 61.0904585, + "support": 4.3383422 + }, + { + "time_hours": 158, + "approval_perbill": 609876543, + "support_perbill": 42912246, + "approval": 60.9876543, + "support": 4.2912246 + }, + { + "time_hours": 159, + "approval_perbill": 608856089, + "support_perbill": 42446042, + "approval": 60.8856089, + "support": 4.2446042 + }, + { + "time_hours": 160, + "approval_perbill": 607843137, + "support_perbill": 41984732, + "approval": 60.7843137, + "support": 4.1984732 + }, + { + "time_hours": 161, + "approval_perbill": 606837607, + "support_perbill": 41528238, + "approval": 60.6837607, + "support": 4.1528238 + }, + { + "time_hours": 162, + "approval_perbill": 605839416, + "support_perbill": 41076486, + "approval": 60.5839416, + "support": 4.1076486 + }, + { + "time_hours": 163, + "approval_perbill": 604848485, + "support_perbill": 40629403, + "approval": 60.4848485, + "support": 4.0629403 + }, + { + "time_hours": 164, + "approval_perbill": 603864734, + "support_perbill": 40186915, + "approval": 60.3864734, + "support": 4.0186915 + }, + { + "time_hours": 165, + "approval_perbill": 602888087, + "support_perbill": 39748953, + "approval": 60.2888087, + "support": 3.9748953 + }, + { + "time_hours": 166, + "approval_perbill": 601918465, + "support_perbill": 39315448, + "approval": 60.1918465, + "support": 3.9315448 + }, + { + "time_hours": 167, + "approval_perbill": 600955794, + "support_perbill": 38886332, + "approval": 60.0955794, + "support": 3.8886332 + }, + { + "time_hours": 168, + "approval_perbill": 600000000, + "support_perbill": 38461538, + "approval": 60, + "support": 3.8461538 + }, + { + "time_hours": 169, + "approval_perbill": 599051008, + "support_perbill": 38041002, + "approval": 59.9051008, + "support": 3.8041002 + }, + { + "time_hours": 170, + "approval_perbill": 598108747, + "support_perbill": 37624659, + "approval": 59.8108747, + "support": 3.7624659 + }, + { + "time_hours": 171, + "approval_perbill": 597173145, + "support_perbill": 37212448, + "approval": 59.7173145, + "support": 3.7212448 + }, + { + "time_hours": 172, + "approval_perbill": 596244131, + "support_perbill": 36804308, + "approval": 59.6244131, + "support": 3.6804308 + }, + { + "time_hours": 173, + "approval_perbill": 595321637, + "support_perbill": 36400178, + "approval": 59.5321637, + "support": 3.6400178 + }, + { + "time_hours": 174, + "approval_perbill": 594405594, + "support_perbill": 35999999, + "approval": 59.4405594, + "support": 3.5999999 + }, + { + "time_hours": 175, + "approval_perbill": 593495935, + "support_perbill": 35603714, + "approval": 59.3495935, + "support": 3.5603714 + }, + { + "time_hours": 176, + "approval_perbill": 592592593, + "support_perbill": 35211267, + "approval": 59.2592593, + "support": 3.5211267 + }, + { + "time_hours": 177, + "approval_perbill": 591695502, + "support_perbill": 34822601, + "approval": 59.1695502, + "support": 3.4822601 + }, + { + "time_hours": 178, + "approval_perbill": 590804598, + "support_perbill": 34437663, + "approval": 59.0804598, + "support": 3.4437663 + }, + { + "time_hours": 179, + "approval_perbill": 589919817, + "support_perbill": 34056398, + "approval": 58.9919817, + "support": 3.4056398 + }, + { + "time_hours": 180, + "approval_perbill": 589041096, + "support_perbill": 33678756, + "approval": 58.9041096, + "support": 3.3678756 + }, + { + "time_hours": 181, + "approval_perbill": 588168373, + "support_perbill": 33304683, + "approval": 58.8168373, + "support": 3.3304683 + }, + { + "time_hours": 182, + "approval_perbill": 587301587, + "support_perbill": 32934131, + "approval": 58.7301587, + "support": 3.2934131 + }, + { + "time_hours": 183, + "approval_perbill": 586440678, + "support_perbill": 32567049, + "approval": 58.6440678, + "support": 3.2567049 + }, + { + "time_hours": 184, + "approval_perbill": 585585585, + "support_perbill": 32203389, + "approval": 58.5585585, + "support": 3.2203389 + }, + { + "time_hours": 185, + "approval_perbill": 584736251, + "support_perbill": 31843103, + "approval": 58.4736251, + "support": 3.1843103 + }, + { + "time_hours": 186, + "approval_perbill": 583892617, + "support_perbill": 31486145, + "approval": 58.3892617, + "support": 3.1486145 + }, + { + "time_hours": 187, + "approval_perbill": 583054626, + "support_perbill": 31132469, + "approval": 58.3054626, + "support": 3.1132469 + }, + { + "time_hours": 188, + "approval_perbill": 582222222, + "support_perbill": 30782029, + "approval": 58.2222222, + "support": 3.0782029 + }, + { + "time_hours": 189, + "approval_perbill": 581395349, + "support_perbill": 30434782, + "approval": 58.1395349, + "support": 3.0434782 + }, + { + "time_hours": 190, + "approval_perbill": 580573951, + "support_perbill": 30090683, + "approval": 58.0573951, + "support": 3.0090683 + }, + { + "time_hours": 191, + "approval_perbill": 579757976, + "support_perbill": 29749692, + "approval": 57.9757976, + "support": 2.9749692 + }, + { + "time_hours": 192, + "approval_perbill": 578947368, + "support_perbill": 29411764, + "approval": 57.8947368, + "support": 2.9411764 + }, + { + "time_hours": 193, + "approval_perbill": 578142076, + "support_perbill": 29076860, + "approval": 57.8142076, + "support": 2.907686 + }, + { + "time_hours": 194, + "approval_perbill": 577342048, + "support_perbill": 28744938, + "approval": 57.7342048, + "support": 2.8744938 + }, + { + "time_hours": 195, + "approval_perbill": 576547231, + "support_perbill": 28415961, + "approval": 57.6547231, + "support": 2.8415961 + }, + { + "time_hours": 196, + "approval_perbill": 575757576, + "support_perbill": 28089887, + "approval": 57.5757576, + "support": 2.8089887 + }, + { + "time_hours": 197, + "approval_perbill": 574973031, + "support_perbill": 27766679, + "approval": 57.4973031, + "support": 2.7766679 + }, + { + "time_hours": 198, + "approval_perbill": 574193548, + "support_perbill": 27446300, + "approval": 57.4193548, + "support": 2.74463 + }, + { + "time_hours": 199, + "approval_perbill": 573419078, + "support_perbill": 27128712, + "approval": 57.3419078, + "support": 2.7128712 + }, + { + "time_hours": 200, + "approval_perbill": 572649572, + "support_perbill": 26813879, + "approval": 57.2649572, + "support": 2.6813879 + }, + { + "time_hours": 201, + "approval_perbill": 571884984, + "support_perbill": 26501766, + "approval": 57.1884984, + "support": 2.6501766 + }, + { + "time_hours": 202, + "approval_perbill": 571125265, + "support_perbill": 26192337, + "approval": 57.1125265, + "support": 2.6192337 + }, + { + "time_hours": 203, + "approval_perbill": 570370370, + "support_perbill": 25885558, + "approval": 57.037037, + "support": 2.5885558 + }, + { + "time_hours": 204, + "approval_perbill": 569620253, + "support_perbill": 25581395, + "approval": 56.9620253, + "support": 2.5581395 + }, + { + "time_hours": 205, + "approval_perbill": 568874868, + "support_perbill": 25279814, + "approval": 56.8874868, + "support": 2.5279814 + }, + { + "time_hours": 206, + "approval_perbill": 568134172, + "support_perbill": 24980783, + "approval": 56.8134172, + "support": 2.4980783 + }, + { + "time_hours": 207, + "approval_perbill": 567398119, + "support_perbill": 24684270, + "approval": 56.7398119, + "support": 2.468427 + }, + { + "time_hours": 208, + "approval_perbill": 566666666, + "support_perbill": 24390243, + "approval": 56.6666666, + "support": 2.4390243 + }, + { + "time_hours": 209, + "approval_perbill": 565939771, + "support_perbill": 24098671, + "approval": 56.5939771, + "support": 2.4098671 + }, + { + "time_hours": 210, + "approval_perbill": 565217391, + "support_perbill": 23809523, + "approval": 56.5217391, + "support": 2.3809523 + }, + { + "time_hours": 211, + "approval_perbill": 564499484, + "support_perbill": 23522769, + "approval": 56.4499484, + "support": 2.3522769 + }, + { + "time_hours": 212, + "approval_perbill": 563786008, + "support_perbill": 23238380, + "approval": 56.3786008, + "support": 2.323838 + }, + { + "time_hours": 213, + "approval_perbill": 563076923, + "support_perbill": 22956326, + "approval": 56.3076923, + "support": 2.2956326 + }, + { + "time_hours": 214, + "approval_perbill": 562372188, + "support_perbill": 22676579, + "approval": 56.2372188, + "support": 2.2676579 + }, + { + "time_hours": 215, + "approval_perbill": 561671763, + "support_perbill": 22399111, + "approval": 56.1671763, + "support": 2.2399111 + }, + { + "time_hours": 216, + "approval_perbill": 560975610, + "support_perbill": 22123893, + "approval": 56.097561, + "support": 2.2123893 + }, + { + "time_hours": 217, + "approval_perbill": 560283688, + "support_perbill": 21850899, + "approval": 56.0283688, + "support": 2.1850899 + }, + { + "time_hours": 218, + "approval_perbill": 559595959, + "support_perbill": 21580102, + "approval": 55.9595959, + "support": 2.1580102 + }, + { + "time_hours": 219, + "approval_perbill": 558912386, + "support_perbill": 21311475, + "approval": 55.8912386, + "support": 2.1311475 + }, + { + "time_hours": 220, + "approval_perbill": 558232931, + "support_perbill": 21044992, + "approval": 55.8232931, + "support": 2.1044992 + }, + { + "time_hours": 221, + "approval_perbill": 557557557, + "support_perbill": 20780628, + "approval": 55.7557557, + "support": 2.0780628 + }, + { + "time_hours": 222, + "approval_perbill": 556886227, + "support_perbill": 20518358, + "approval": 55.6886227, + "support": 2.0518358 + }, + { + "time_hours": 223, + "approval_perbill": 556218905, + "support_perbill": 20258156, + "approval": 55.6218905, + "support": 2.0258156 + }, + { + "time_hours": 224, + "approval_perbill": 555555555, + "support_perbill": 19999999, + "approval": 55.5555555, + "support": 1.9999999 + }, + { + "time_hours": 225, + "approval_perbill": 554896142, + "support_perbill": 19743863, + "approval": 55.4896142, + "support": 1.9743863 + }, + { + "time_hours": 226, + "approval_perbill": 554240631, + "support_perbill": 19489723, + "approval": 55.4240631, + "support": 1.9489723 + }, + { + "time_hours": 227, + "approval_perbill": 553588987, + "support_perbill": 19237556, + "approval": 55.3588987, + "support": 1.9237556 + }, + { + "time_hours": 228, + "approval_perbill": 552941176, + "support_perbill": 18987341, + "approval": 55.2941176, + "support": 1.8987341 + }, + { + "time_hours": 229, + "approval_perbill": 552297165, + "support_perbill": 18739053, + "approval": 55.2297165, + "support": 1.8739053 + }, + { + "time_hours": 230, + "approval_perbill": 551656920, + "support_perbill": 18492672, + "approval": 55.165692, + "support": 1.8492672 + }, + { + "time_hours": 231, + "approval_perbill": 551020408, + "support_perbill": 18248174, + "approval": 55.1020408, + "support": 1.8248174 + }, + { + "time_hours": 232, + "approval_perbill": 550387597, + "support_perbill": 18005539, + "approval": 55.0387597, + "support": 1.8005539 + }, + { + "time_hours": 233, + "approval_perbill": 549758454, + "support_perbill": 17764746, + "approval": 54.9758454, + "support": 1.7764746 + }, + { + "time_hours": 234, + "approval_perbill": 549132948, + "support_perbill": 17525772, + "approval": 54.9132948, + "support": 1.7525772 + }, + { + "time_hours": 235, + "approval_perbill": 548511047, + "support_perbill": 17288599, + "approval": 54.8511047, + "support": 1.7288599 + }, + { + "time_hours": 236, + "approval_perbill": 547892720, + "support_perbill": 17053205, + "approval": 54.789272, + "support": 1.7053205 + }, + { + "time_hours": 237, + "approval_perbill": 547277937, + "support_perbill": 16819571, + "approval": 54.7277937, + "support": 1.6819571 + }, + { + "time_hours": 238, + "approval_perbill": 546666666, + "support_perbill": 16587677, + "approval": 54.6666666, + "support": 1.6587677 + }, + { + "time_hours": 239, + "approval_perbill": 546058879, + "support_perbill": 16357503, + "approval": 54.6058879, + "support": 1.6357503 + }, + { + "time_hours": 240, + "approval_perbill": 545454545, + "support_perbill": 16129031, + "approval": 54.5454545, + "support": 1.6129031 + }, + { + "time_hours": 241, + "approval_perbill": 544853635, + "support_perbill": 15902242, + "approval": 54.4853635, + "support": 1.5902242 + }, + { + "time_hours": 242, + "approval_perbill": 544256120, + "support_perbill": 15677117, + "approval": 54.425612, + "support": 1.5677117 + }, + { + "time_hours": 243, + "approval_perbill": 543661971, + "support_perbill": 15453638, + "approval": 54.3661971, + "support": 1.5453638 + }, + { + "time_hours": 244, + "approval_perbill": 543071161, + "support_perbill": 15231787, + "approval": 54.3071161, + "support": 1.5231787 + }, + { + "time_hours": 245, + "approval_perbill": 542483660, + "support_perbill": 15011547, + "approval": 54.248366, + "support": 1.5011547 + }, + { + "time_hours": 246, + "approval_perbill": 541899441, + "support_perbill": 14792899, + "approval": 54.1899441, + "support": 1.4792899 + }, + { + "time_hours": 247, + "approval_perbill": 541318477, + "support_perbill": 14575826, + "approval": 54.1318477, + "support": 1.4575826 + }, + { + "time_hours": 248, + "approval_perbill": 540740740, + "support_perbill": 14360312, + "approval": 54.074074, + "support": 1.4360312 + }, + { + "time_hours": 249, + "approval_perbill": 540166205, + "support_perbill": 14146341, + "approval": 54.0166205, + "support": 1.4146341 + }, + { + "time_hours": 250, + "approval_perbill": 539594843, + "support_perbill": 13933894, + "approval": 53.9594843, + "support": 1.3933894 + }, + { + "time_hours": 251, + "approval_perbill": 539026630, + "support_perbill": 13722957, + "approval": 53.902663, + "support": 1.3722957 + }, + { + "time_hours": 252, + "approval_perbill": 538461538, + "support_perbill": 13513513, + "approval": 53.8461538, + "support": 1.3513513 + }, + { + "time_hours": 253, + "approval_perbill": 537899543, + "support_perbill": 13305546, + "approval": 53.7899543, + "support": 1.3305546 + }, + { + "time_hours": 254, + "approval_perbill": 537340619, + "support_perbill": 13099041, + "approval": 53.7340619, + "support": 1.3099041 + }, + { + "time_hours": 255, + "approval_perbill": 536784741, + "support_perbill": 12893982, + "approval": 53.6784741, + "support": 1.2893982 + }, + { + "time_hours": 256, + "approval_perbill": 536231884, + "support_perbill": 12690355, + "approval": 53.6231884, + "support": 1.2690355 + }, + { + "time_hours": 257, + "approval_perbill": 535682023, + "support_perbill": 12488143, + "approval": 53.5682023, + "support": 1.2488143 + }, + { + "time_hours": 258, + "approval_perbill": 535135135, + "support_perbill": 12287334, + "approval": 53.5135135, + "support": 1.2287334 + }, + { + "time_hours": 259, + "approval_perbill": 534591195, + "support_perbill": 12087911, + "approval": 53.4591195, + "support": 1.2087911 + }, + { + "time_hours": 260, + "approval_perbill": 534050179, + "support_perbill": 11889861, + "approval": 53.4050179, + "support": 1.1889861 + }, + { + "time_hours": 261, + "approval_perbill": 533512064, + "support_perbill": 11693170, + "approval": 53.3512064, + "support": 1.169317 + }, + { + "time_hours": 262, + "approval_perbill": 532976827, + "support_perbill": 11497824, + "approval": 53.2976827, + "support": 1.1497824 + }, + { + "time_hours": 263, + "approval_perbill": 532444444, + "support_perbill": 11303808, + "approval": 53.2444444, + "support": 1.1303808 + }, + { + "time_hours": 264, + "approval_perbill": 531914893, + "support_perbill": 11111110, + "approval": 53.1914893, + "support": 1.111111 + }, + { + "time_hours": 265, + "approval_perbill": 531388152, + "support_perbill": 10919716, + "approval": 53.1388152, + "support": 1.0919716 + }, + { + "time_hours": 266, + "approval_perbill": 530864197, + "support_perbill": 10729613, + "approval": 53.0864197, + "support": 1.0729613 + }, + { + "time_hours": 267, + "approval_perbill": 530343007, + "support_perbill": 10540787, + "approval": 53.0343007, + "support": 1.0540787 + }, + { + "time_hours": 268, + "approval_perbill": 529824561, + "support_perbill": 10353227, + "approval": 52.9824561, + "support": 1.0353227 + }, + { + "time_hours": 269, + "approval_perbill": 529308836, + "support_perbill": 10166919, + "approval": 52.9308836, + "support": 1.0166919 + }, + { + "time_hours": 270, + "approval_perbill": 528795811, + "support_perbill": 9981850, + "approval": 52.8795811, + "support": 0.998185 + }, + { + "time_hours": 271, + "approval_perbill": 528285465, + "support_perbill": 9798009, + "approval": 52.8285465, + "support": 0.9798009 + }, + { + "time_hours": 272, + "approval_perbill": 527777777, + "support_perbill": 9615384, + "approval": 52.7777777, + "support": 0.9615384 + }, + { + "time_hours": 273, + "approval_perbill": 527272727, + "support_perbill": 9433961, + "approval": 52.7272727, + "support": 0.9433961 + }, + { + "time_hours": 274, + "approval_perbill": 526770293, + "support_perbill": 9253730, + "approval": 52.6770293, + "support": 0.925373 + }, + { + "time_hours": 275, + "approval_perbill": 526270456, + "support_perbill": 9074679, + "approval": 52.6270456, + "support": 0.9074679 + }, + { + "time_hours": 276, + "approval_perbill": 525773195, + "support_perbill": 8896796, + "approval": 52.5773195, + "support": 0.8896796 + }, + { + "time_hours": 277, + "approval_perbill": 525278491, + "support_perbill": 8720070, + "approval": 52.5278491, + "support": 0.872007 + }, + { + "time_hours": 278, + "approval_perbill": 524786324, + "support_perbill": 8544489, + "approval": 52.4786324, + "support": 0.8544489 + }, + { + "time_hours": 279, + "approval_perbill": 524296675, + "support_perbill": 8370043, + "approval": 52.4296675, + "support": 0.8370043 + }, + { + "time_hours": 280, + "approval_perbill": 523809523, + "support_perbill": 8196720, + "approval": 52.3809523, + "support": 0.819672 + }, + { + "time_hours": 281, + "approval_perbill": 523324851, + "support_perbill": 8024510, + "approval": 52.3324851, + "support": 0.802451 + }, + { + "time_hours": 282, + "approval_perbill": 522842639, + "support_perbill": 7853402, + "approval": 52.2842639, + "support": 0.7853402 + }, + { + "time_hours": 283, + "approval_perbill": 522362869, + "support_perbill": 7683386, + "approval": 52.2362869, + "support": 0.7683386 + }, + { + "time_hours": 284, + "approval_perbill": 521885521, + "support_perbill": 7514450, + "approval": 52.1885521, + "support": 0.751445 + }, + { + "time_hours": 285, + "approval_perbill": 521410579, + "support_perbill": 7346585, + "approval": 52.1410579, + "support": 0.7346585 + }, + { + "time_hours": 286, + "approval_perbill": 520938023, + "support_perbill": 7179781, + "approval": 52.0938023, + "support": 0.7179781 + }, + { + "time_hours": 287, + "approval_perbill": 520467836, + "support_perbill": 7014027, + "approval": 52.0467836, + "support": 0.7014027 + }, + { + "time_hours": 288, + "approval_perbill": 519999999, + "support_perbill": 6849314, + "approval": 51.9999999, + "support": 0.6849314 + }, + { + "time_hours": 289, + "approval_perbill": 519534497, + "support_perbill": 6685632, + "approval": 51.9534497, + "support": 0.6685632 + }, + { + "time_hours": 290, + "approval_perbill": 519071310, + "support_perbill": 6522971, + "approval": 51.907131, + "support": 0.6522971 + }, + { + "time_hours": 291, + "approval_perbill": 518610421, + "support_perbill": 6361322, + "approval": 51.8610421, + "support": 0.6361322 + }, + { + "time_hours": 292, + "approval_perbill": 518151815, + "support_perbill": 6200676, + "approval": 51.8151815, + "support": 0.6200676 + }, + { + "time_hours": 293, + "approval_perbill": 517695473, + "support_perbill": 6041022, + "approval": 51.7695473, + "support": 0.6041022 + }, + { + "time_hours": 294, + "approval_perbill": 517241379, + "support_perbill": 5882352, + "approval": 51.7241379, + "support": 0.5882352 + }, + { + "time_hours": 295, + "approval_perbill": 516789516, + "support_perbill": 5724657, + "approval": 51.6789516, + "support": 0.5724657 + }, + { + "time_hours": 296, + "approval_perbill": 516339869, + "support_perbill": 5567928, + "approval": 51.6339869, + "support": 0.5567928 + }, + { + "time_hours": 297, + "approval_perbill": 515892420, + "support_perbill": 5412156, + "approval": 51.589242, + "support": 0.5412156 + }, + { + "time_hours": 298, + "approval_perbill": 515447154, + "support_perbill": 5257332, + "approval": 51.5447154, + "support": 0.5257332 + }, + { + "time_hours": 299, + "approval_perbill": 515004055, + "support_perbill": 5103447, + "approval": 51.5004055, + "support": 0.5103447 + }, + { + "time_hours": 300, + "approval_perbill": 514563106, + "support_perbill": 4950494, + "approval": 51.4563106, + "support": 0.4950494 + }, + { + "time_hours": 301, + "approval_perbill": 514124293, + "support_perbill": 4798464, + "approval": 51.4124293, + "support": 0.4798464 + }, + { + "time_hours": 302, + "approval_perbill": 513687600, + "support_perbill": 4647347, + "approval": 51.36876, + "support": 0.4647347 + }, + { + "time_hours": 303, + "approval_perbill": 513253011, + "support_perbill": 4497137, + "approval": 51.3253011, + "support": 0.4497137 + }, + { + "time_hours": 304, + "approval_perbill": 512820512, + "support_perbill": 4347825, + "approval": 51.2820512, + "support": 0.4347825 + }, + { + "time_hours": 305, + "approval_perbill": 512390087, + "support_perbill": 4199403, + "approval": 51.2390087, + "support": 0.4199403 + }, + { + "time_hours": 306, + "approval_perbill": 511961722, + "support_perbill": 4051863, + "approval": 51.1961722, + "support": 0.4051863 + }, + { + "time_hours": 307, + "approval_perbill": 511535401, + "support_perbill": 3905197, + "approval": 51.1535401, + "support": 0.3905197 + }, + { + "time_hours": 308, + "approval_perbill": 511111111, + "support_perbill": 3759398, + "approval": 51.1111111, + "support": 0.3759398 + }, + { + "time_hours": 309, + "approval_perbill": 510688835, + "support_perbill": 3614457, + "approval": 51.0688835, + "support": 0.3614457 + }, + { + "time_hours": 310, + "approval_perbill": 510268562, + "support_perbill": 3470368, + "approval": 51.0268562, + "support": 0.3470368 + }, + { + "time_hours": 311, + "approval_perbill": 509850275, + "support_perbill": 3327122, + "approval": 50.9850275, + "support": 0.3327122 + }, + { + "time_hours": 312, + "approval_perbill": 509433962, + "support_perbill": 3184712, + "approval": 50.9433962, + "support": 0.3184712 + }, + { + "time_hours": 313, + "approval_perbill": 509019607, + "support_perbill": 3043132, + "approval": 50.9019607, + "support": 0.3043132 + }, + { + "time_hours": 314, + "approval_perbill": 508607198, + "support_perbill": 2902374, + "approval": 50.8607198, + "support": 0.2902374 + }, + { + "time_hours": 315, + "approval_perbill": 508196721, + "support_perbill": 2762430, + "approval": 50.8196721, + "support": 0.276243 + }, + { + "time_hours": 316, + "approval_perbill": 507788161, + "support_perbill": 2623294, + "approval": 50.7788161, + "support": 0.2623294 + }, + { + "time_hours": 317, + "approval_perbill": 507381507, + "support_perbill": 2484959, + "approval": 50.7381507, + "support": 0.2484959 + }, + { + "time_hours": 318, + "approval_perbill": 506976744, + "support_perbill": 2347417, + "approval": 50.6976744, + "support": 0.2347417 + }, + { + "time_hours": 319, + "approval_perbill": 506573859, + "support_perbill": 2210662, + "approval": 50.6573859, + "support": 0.2210662 + }, + { + "time_hours": 320, + "approval_perbill": 506172839, + "support_perbill": 2074688, + "approval": 50.6172839, + "support": 0.2074688 + }, + { + "time_hours": 321, + "approval_perbill": 505773671, + "support_perbill": 1939487, + "approval": 50.5773671, + "support": 0.1939487 + }, + { + "time_hours": 322, + "approval_perbill": 505376343, + "support_perbill": 1805053, + "approval": 50.5376343, + "support": 0.1805053 + }, + { + "time_hours": 323, + "approval_perbill": 504980842, + "support_perbill": 1671380, + "approval": 50.4980842, + "support": 0.167138 + }, + { + "time_hours": 324, + "approval_perbill": 504587155, + "support_perbill": 1538461, + "approval": 50.4587155, + "support": 0.1538461 + }, + { + "time_hours": 325, + "approval_perbill": 504195270, + "support_perbill": 1406289, + "approval": 50.419527, + "support": 0.1406289 + }, + { + "time_hours": 326, + "approval_perbill": 503805174, + "support_perbill": 1274859, + "approval": 50.3805174, + "support": 0.1274859 + }, + { + "time_hours": 327, + "approval_perbill": 503416856, + "support_perbill": 1144164, + "approval": 50.3416856, + "support": 0.1144164 + }, + { + "time_hours": 328, + "approval_perbill": 503030302, + "support_perbill": 1014198, + "approval": 50.3030302, + "support": 0.1014198 + }, + { + "time_hours": 329, + "approval_perbill": 502645502, + "support_perbill": 884955, + "approval": 50.2645502, + "support": 0.0884955 + }, + { + "time_hours": 330, + "approval_perbill": 502262443, + "support_perbill": 756429, + "approval": 50.2262443, + "support": 0.0756429 + }, + { + "time_hours": 331, + "approval_perbill": 501881113, + "support_perbill": 628614, + "approval": 50.1881113, + "support": 0.0628614 + }, + { + "time_hours": 332, + "approval_perbill": 501501501, + "support_perbill": 501504, + "approval": 50.1501501, + "support": 0.0501504 + }, + { + "time_hours": 333, + "approval_perbill": 501123595, + "support_perbill": 375093, + "approval": 50.1123595, + "support": 0.0375093 + }, + { + "time_hours": 334, + "approval_perbill": 500747383, + "support_perbill": 249376, + "approval": 50.0747383, + "support": 0.0249376 + }, + { + "time_hours": 335, + "approval_perbill": 500372855, + "support_perbill": 124346, + "approval": 50.0372855, + "support": 0.0124346 + }, + { + "time_hours": 336, + "approval_perbill": 499999999, + "support_perbill": 0, + "approval": 49.9999999, + "support": 0 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/kusama/opengov_admin_fellowship.json b/components/utilities/charts_data/kusama/opengov_admin_fellowship.json new file mode 100644 index 000000000000..9c589d040233 --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_admin_fellowship.json @@ -0,0 +1,2361 @@ +[ + { + "time_hours": 0, + "approval_perbill": 1000000000, + "support_perbill": 500000026, + "approval": 100, + "support": 50.0000026 + }, + { + "time_hours": 1, + "approval_perbill": 997549020, + "support_perbill": 418401359, + "approval": 99.754902, + "support": 41.8401359 + }, + { + "time_hours": 2, + "approval_perbill": 995098040, + "support_perbill": 359397443, + "approval": 99.509804, + "support": 35.9397443 + }, + { + "time_hours": 3, + "approval_perbill": 992647060, + "support_perbill": 314744813, + "approval": 99.264706, + "support": 31.4744813 + }, + { + "time_hours": 4, + "approval_perbill": 990196080, + "support_perbill": 279775293, + "approval": 99.019608, + "support": 27.9775293 + }, + { + "time_hours": 5, + "approval_perbill": 987745099, + "support_perbill": 251647242, + "approval": 98.7745099, + "support": 25.1647242 + }, + { + "time_hours": 6, + "approval_perbill": 985294119, + "support_perbill": 228531862, + "approval": 98.5294119, + "support": 22.8531862 + }, + { + "time_hours": 7, + "approval_perbill": 982843138, + "support_perbill": 209198815, + "approval": 98.2843138, + "support": 20.9198815 + }, + { + "time_hours": 8, + "approval_perbill": 980392158, + "support_perbill": 192789972, + "approval": 98.0392158, + "support": 19.2789972 + }, + { + "time_hours": 9, + "approval_perbill": 977941177, + "support_perbill": 178688524, + "approval": 97.7941177, + "support": 17.8688524 + }, + { + "time_hours": 10, + "approval_perbill": 975490197, + "support_perbill": 166439756, + "approval": 97.5490197, + "support": 16.6439756 + }, + { + "time_hours": 11, + "approval_perbill": 973039216, + "support_perbill": 155701053, + "approval": 97.3039216, + "support": 15.5701053 + }, + { + "time_hours": 12, + "approval_perbill": 970588236, + "support_perbill": 146209386, + "approval": 97.0588236, + "support": 14.6209386 + }, + { + "time_hours": 13, + "approval_perbill": 968137256, + "support_perbill": 137759452, + "approval": 96.8137256, + "support": 13.7759452 + }, + { + "time_hours": 14, + "approval_perbill": 965686276, + "support_perbill": 130188679, + "approval": 96.5686276, + "support": 13.0188679 + }, + { + "time_hours": 15, + "approval_perbill": 963235295, + "support_perbill": 123366639, + "approval": 96.3235295, + "support": 12.3366639 + }, + { + "time_hours": 16, + "approval_perbill": 960784315, + "support_perbill": 117187499, + "approval": 96.0784315, + "support": 11.7187499 + }, + { + "time_hours": 17, + "approval_perbill": 958333334, + "support_perbill": 111564465, + "approval": 95.8333334, + "support": 11.1564465 + }, + { + "time_hours": 18, + "approval_perbill": 955882354, + "support_perbill": 106425701, + "approval": 95.5882354, + "support": 10.6425701 + }, + { + "time_hours": 19, + "approval_perbill": 953431373, + "support_perbill": 101711228, + "approval": 95.3431373, + "support": 10.1711228 + }, + { + "time_hours": 20, + "approval_perbill": 950980393, + "support_perbill": 97370582, + "approval": 95.0980393, + "support": 9.7370582 + }, + { + "time_hours": 21, + "approval_perbill": 948529412, + "support_perbill": 93360994, + "approval": 94.8529412, + "support": 9.3360994 + }, + { + "time_hours": 22, + "approval_perbill": 946078432, + "support_perbill": 89645982, + "approval": 94.6078432, + "support": 8.9645982 + }, + { + "time_hours": 23, + "approval_perbill": 943627452, + "support_perbill": 86194234, + "approval": 94.3627452, + "support": 8.6194234 + }, + { + "time_hours": 24, + "approval_perbill": 941176471, + "support_perbill": 82978722, + "approval": 94.1176471, + "support": 8.2978722 + }, + { + "time_hours": 25, + "approval_perbill": 938725491, + "support_perbill": 79975997, + "approval": 93.8725491, + "support": 7.9975997 + }, + { + "time_hours": 26, + "approval_perbill": 936274511, + "support_perbill": 77165614, + "approval": 93.6274511, + "support": 7.7165614 + }, + { + "time_hours": 27, + "approval_perbill": 933823531, + "support_perbill": 74529666, + "approval": 93.3823531, + "support": 7.4529666 + }, + { + "time_hours": 28, + "approval_perbill": 931372550, + "support_perbill": 72052400, + "approval": 93.137255, + "support": 7.20524 + }, + { + "time_hours": 29, + "approval_perbill": 928921570, + "support_perbill": 69719908, + "approval": 92.892157, + "support": 6.9719908 + }, + { + "time_hours": 30, + "approval_perbill": 926470589, + "support_perbill": 67519857, + "approval": 92.6470589, + "support": 6.7519857 + }, + { + "time_hours": 31, + "approval_perbill": 924019609, + "support_perbill": 65441280, + "approval": 92.4019609, + "support": 6.544128 + }, + { + "time_hours": 32, + "approval_perbill": 921568628, + "support_perbill": 63474386, + "approval": 92.1568628, + "support": 6.3474386 + }, + { + "time_hours": 33, + "approval_perbill": 919117648, + "support_perbill": 61610409, + "approval": 91.9117648, + "support": 6.1610409 + }, + { + "time_hours": 34, + "approval_perbill": 916666667, + "support_perbill": 59841478, + "approval": 91.6666667, + "support": 5.9841478 + }, + { + "time_hours": 35, + "approval_perbill": 914215687, + "support_perbill": 58160504, + "approval": 91.4215687, + "support": 5.8160504 + }, + { + "time_hours": 36, + "approval_perbill": 911764706, + "support_perbill": 56561084, + "approval": 91.1764706, + "support": 5.6561084 + }, + { + "time_hours": 37, + "approval_perbill": 909313726, + "support_perbill": 55037426, + "approval": 90.9313726, + "support": 5.5037426 + }, + { + "time_hours": 38, + "approval_perbill": 906862746, + "support_perbill": 53584271, + "approval": 90.6862746, + "support": 5.3584271 + }, + { + "time_hours": 39, + "approval_perbill": 904411766, + "support_perbill": 52196835, + "approval": 90.4411766, + "support": 5.2196835 + }, + { + "time_hours": 40, + "approval_perbill": 901960785, + "support_perbill": 50870759, + "approval": 90.1960785, + "support": 5.0870759 + }, + { + "time_hours": 41, + "approval_perbill": 899509805, + "support_perbill": 49602061, + "approval": 89.9509805, + "support": 4.9602061 + }, + { + "time_hours": 42, + "approval_perbill": 897058824, + "support_perbill": 48387095, + "approval": 89.7058824, + "support": 4.8387095 + }, + { + "time_hours": 43, + "approval_perbill": 894607844, + "support_perbill": 47222519, + "approval": 89.4607844, + "support": 4.7222519 + }, + { + "time_hours": 44, + "approval_perbill": 892156864, + "support_perbill": 46105262, + "approval": 89.2156864, + "support": 4.6105262 + }, + { + "time_hours": 45, + "approval_perbill": 889705883, + "support_perbill": 45032496, + "approval": 88.9705883, + "support": 4.5032496 + }, + { + "time_hours": 46, + "approval_perbill": 887254903, + "support_perbill": 44001617, + "approval": 88.7254903, + "support": 4.4001617 + }, + { + "time_hours": 47, + "approval_perbill": 884803922, + "support_perbill": 43010218, + "approval": 88.4803922, + "support": 4.3010218 + }, + { + "time_hours": 48, + "approval_perbill": 882352942, + "support_perbill": 42056074, + "approval": 88.2352942, + "support": 4.2056074 + }, + { + "time_hours": 49, + "approval_perbill": 879901962, + "support_perbill": 41137122, + "approval": 87.9901962, + "support": 4.1137122 + }, + { + "time_hours": 50, + "approval_perbill": 877450982, + "support_perbill": 40251453, + "approval": 87.7450982, + "support": 4.0251453 + }, + { + "time_hours": 51, + "approval_perbill": 875000001, + "support_perbill": 39397289, + "approval": 87.5000001, + "support": 3.9397289 + }, + { + "time_hours": 52, + "approval_perbill": 872549021, + "support_perbill": 38572980, + "approval": 87.2549021, + "support": 3.857298 + }, + { + "time_hours": 53, + "approval_perbill": 870098040, + "support_perbill": 37776985, + "approval": 87.009804, + "support": 3.7776985 + }, + { + "time_hours": 54, + "approval_perbill": 867647060, + "support_perbill": 37007873, + "approval": 86.764706, + "support": 3.7007873 + }, + { + "time_hours": 55, + "approval_perbill": 865196079, + "support_perbill": 36264302, + "approval": 86.5196079, + "support": 3.6264302 + }, + { + "time_hours": 56, + "approval_perbill": 862745099, + "support_perbill": 35545023, + "approval": 86.2745099, + "support": 3.5545023 + }, + { + "time_hours": 57, + "approval_perbill": 860294118, + "support_perbill": 34848862, + "approval": 86.0294118, + "support": 3.4848862 + }, + { + "time_hours": 58, + "approval_perbill": 857843138, + "support_perbill": 34174724, + "approval": 85.7843138, + "support": 3.4174724 + }, + { + "time_hours": 59, + "approval_perbill": 855392157, + "support_perbill": 33521580, + "approval": 85.5392157, + "support": 3.352158 + }, + { + "time_hours": 60, + "approval_perbill": 852941177, + "support_perbill": 32888464, + "approval": 85.2941177, + "support": 3.2888464 + }, + { + "time_hours": 61, + "approval_perbill": 850490197, + "support_perbill": 32274469, + "approval": 85.0490197, + "support": 3.2274469 + }, + { + "time_hours": 62, + "approval_perbill": 848039217, + "support_perbill": 31678741, + "approval": 84.8039217, + "support": 3.1678741 + }, + { + "time_hours": 63, + "approval_perbill": 845588236, + "support_perbill": 31100477, + "approval": 84.5588236, + "support": 3.1100477 + }, + { + "time_hours": 64, + "approval_perbill": 843137256, + "support_perbill": 30538921, + "approval": 84.3137256, + "support": 3.0538921 + }, + { + "time_hours": 65, + "approval_perbill": 840686276, + "support_perbill": 29993358, + "approval": 84.0686276, + "support": 2.9993358 + }, + { + "time_hours": 66, + "approval_perbill": 838235295, + "support_perbill": 29463116, + "approval": 83.8235295, + "support": 2.9463116 + }, + { + "time_hours": 67, + "approval_perbill": 835784315, + "support_perbill": 28947556, + "approval": 83.5784315, + "support": 2.8947556 + }, + { + "time_hours": 68, + "approval_perbill": 833333334, + "support_perbill": 28446079, + "approval": 83.3333334, + "support": 2.8446079 + }, + { + "time_hours": 69, + "approval_perbill": 830882354, + "support_perbill": 27958114, + "approval": 83.0882354, + "support": 2.7958114 + }, + { + "time_hours": 70, + "approval_perbill": 828431373, + "support_perbill": 27483123, + "approval": 82.8431373, + "support": 2.7483123 + }, + { + "time_hours": 71, + "approval_perbill": 825980393, + "support_perbill": 27020596, + "approval": 82.5980393, + "support": 2.7020596 + }, + { + "time_hours": 72, + "approval_perbill": 823529412, + "support_perbill": 26570047, + "approval": 82.3529412, + "support": 2.6570047 + }, + { + "time_hours": 73, + "approval_perbill": 821078432, + "support_perbill": 26131019, + "approval": 82.1078432, + "support": 2.6131019 + }, + { + "time_hours": 74, + "approval_perbill": 818627452, + "support_perbill": 25703073, + "approval": 81.8627452, + "support": 2.5703073 + }, + { + "time_hours": 75, + "approval_perbill": 816176472, + "support_perbill": 25285796, + "approval": 81.6176472, + "support": 2.5285796 + }, + { + "time_hours": 76, + "approval_perbill": 813725491, + "support_perbill": 24878795, + "approval": 81.3725491, + "support": 2.4878795 + }, + { + "time_hours": 77, + "approval_perbill": 811274511, + "support_perbill": 24481693, + "approval": 81.1274511, + "support": 2.4481693 + }, + { + "time_hours": 78, + "approval_perbill": 808823530, + "support_perbill": 24094134, + "approval": 80.882353, + "support": 2.4094134 + }, + { + "time_hours": 79, + "approval_perbill": 806372550, + "support_perbill": 23715779, + "approval": 80.637255, + "support": 2.3715779 + }, + { + "time_hours": 80, + "approval_perbill": 803921569, + "support_perbill": 23346303, + "approval": 80.3921569, + "support": 2.3346303 + }, + { + "time_hours": 81, + "approval_perbill": 801470589, + "support_perbill": 22985397, + "approval": 80.1470589, + "support": 2.2985397 + }, + { + "time_hours": 82, + "approval_perbill": 799019608, + "support_perbill": 22632766, + "approval": 79.9019608, + "support": 2.2632766 + }, + { + "time_hours": 83, + "approval_perbill": 796568628, + "support_perbill": 22288130, + "approval": 79.6568628, + "support": 2.228813 + }, + { + "time_hours": 84, + "approval_perbill": 794117648, + "support_perbill": 21951219, + "approval": 79.4117648, + "support": 2.1951219 + }, + { + "time_hours": 85, + "approval_perbill": 791666668, + "support_perbill": 21621776, + "approval": 79.1666668, + "support": 2.1621776 + }, + { + "time_hours": 86, + "approval_perbill": 789215688, + "support_perbill": 21299556, + "approval": 78.9215688, + "support": 2.1299556 + }, + { + "time_hours": 87, + "approval_perbill": 786764707, + "support_perbill": 20984324, + "approval": 78.6764707, + "support": 2.0984324 + }, + { + "time_hours": 88, + "approval_perbill": 784313727, + "support_perbill": 20675855, + "approval": 78.4313727, + "support": 2.0675855 + }, + { + "time_hours": 89, + "approval_perbill": 781862746, + "support_perbill": 20373934, + "approval": 78.1862746, + "support": 2.0373934 + }, + { + "time_hours": 90, + "approval_perbill": 779411766, + "support_perbill": 20078354, + "approval": 77.9411766, + "support": 2.0078354 + }, + { + "time_hours": 91, + "approval_perbill": 776960785, + "support_perbill": 19788917, + "approval": 77.6960785, + "support": 1.9788917 + }, + { + "time_hours": 92, + "approval_perbill": 774509805, + "support_perbill": 19505435, + "approval": 77.4509805, + "support": 1.9505435 + }, + { + "time_hours": 93, + "approval_perbill": 772058824, + "support_perbill": 19227725, + "approval": 77.2058824, + "support": 1.9227725 + }, + { + "time_hours": 94, + "approval_perbill": 769607844, + "support_perbill": 18955613, + "approval": 76.9607844, + "support": 1.8955613 + }, + { + "time_hours": 95, + "approval_perbill": 767156863, + "support_perbill": 18688931, + "approval": 76.7156863, + "support": 1.8688931 + }, + { + "time_hours": 96, + "approval_perbill": 764705883, + "support_perbill": 18427518, + "approval": 76.4705883, + "support": 1.8427518 + }, + { + "time_hours": 97, + "approval_perbill": 762254903, + "support_perbill": 18171219, + "approval": 76.2254903, + "support": 1.8171219 + }, + { + "time_hours": 98, + "approval_perbill": 759803923, + "support_perbill": 17919887, + "approval": 75.9803923, + "support": 1.7919887 + }, + { + "time_hours": 99, + "approval_perbill": 757352942, + "support_perbill": 17673377, + "approval": 75.7352942, + "support": 1.7673377 + }, + { + "time_hours": 100, + "approval_perbill": 754901962, + "support_perbill": 17431553, + "approval": 75.4901962, + "support": 1.7431553 + }, + { + "time_hours": 101, + "approval_perbill": 752450981, + "support_perbill": 17194282, + "approval": 75.2450981, + "support": 1.7194282 + }, + { + "time_hours": 102, + "approval_perbill": 750000001, + "support_perbill": 16961437, + "approval": 75.0000001, + "support": 1.6961437 + }, + { + "time_hours": 103, + "approval_perbill": 747549020, + "support_perbill": 16732895, + "approval": 74.754902, + "support": 1.6732895 + }, + { + "time_hours": 104, + "approval_perbill": 745098040, + "support_perbill": 16508538, + "approval": 74.509804, + "support": 1.6508538 + }, + { + "time_hours": 105, + "approval_perbill": 742647059, + "support_perbill": 16288252, + "approval": 74.2647059, + "support": 1.6288252 + }, + { + "time_hours": 106, + "approval_perbill": 740196079, + "support_perbill": 16071927, + "approval": 74.0196079, + "support": 1.6071927 + }, + { + "time_hours": 107, + "approval_perbill": 737745099, + "support_perbill": 15859457, + "approval": 73.7745099, + "support": 1.5859457 + }, + { + "time_hours": 108, + "approval_perbill": 735294118, + "support_perbill": 15650741, + "approval": 73.5294118, + "support": 1.5650741 + }, + { + "time_hours": 109, + "approval_perbill": 732843138, + "support_perbill": 15445679, + "approval": 73.2843138, + "support": 1.5445679 + }, + { + "time_hours": 110, + "approval_perbill": 730392158, + "support_perbill": 15244176, + "approval": 73.0392158, + "support": 1.5244176 + }, + { + "time_hours": 111, + "approval_perbill": 727941178, + "support_perbill": 15046141, + "approval": 72.7941178, + "support": 1.5046141 + }, + { + "time_hours": 112, + "approval_perbill": 725490197, + "support_perbill": 14851485, + "approval": 72.5490197, + "support": 1.4851485 + }, + { + "time_hours": 113, + "approval_perbill": 723039217, + "support_perbill": 14660121, + "approval": 72.3039217, + "support": 1.4660121 + }, + { + "time_hours": 114, + "approval_perbill": 720588236, + "support_perbill": 14471968, + "approval": 72.0588236, + "support": 1.4471968 + }, + { + "time_hours": 115, + "approval_perbill": 718137256, + "support_perbill": 14286945, + "approval": 71.8137256, + "support": 1.4286945 + }, + { + "time_hours": 116, + "approval_perbill": 715686275, + "support_perbill": 14104975, + "approval": 71.5686275, + "support": 1.4104975 + }, + { + "time_hours": 117, + "approval_perbill": 713235295, + "support_perbill": 13925982, + "approval": 71.3235295, + "support": 1.3925982 + }, + { + "time_hours": 118, + "approval_perbill": 710784314, + "support_perbill": 13749894, + "approval": 71.0784314, + "support": 1.3749894 + }, + { + "time_hours": 119, + "approval_perbill": 708333334, + "support_perbill": 13576642, + "approval": 70.8333334, + "support": 1.3576642 + }, + { + "time_hours": 120, + "approval_perbill": 705882353, + "support_perbill": 13406156, + "approval": 70.5882353, + "support": 1.3406156 + }, + { + "time_hours": 121, + "approval_perbill": 703431373, + "support_perbill": 13238372, + "approval": 70.3431373, + "support": 1.3238372 + }, + { + "time_hours": 122, + "approval_perbill": 700980393, + "support_perbill": 13073226, + "approval": 70.0980393, + "support": 1.3073226 + }, + { + "time_hours": 123, + "approval_perbill": 698529413, + "support_perbill": 12910655, + "approval": 69.8529413, + "support": 1.2910655 + }, + { + "time_hours": 124, + "approval_perbill": 696078432, + "support_perbill": 12750601, + "approval": 69.6078432, + "support": 1.2750601 + }, + { + "time_hours": 125, + "approval_perbill": 693627452, + "support_perbill": 12593005, + "approval": 69.3627452, + "support": 1.2593005 + }, + { + "time_hours": 126, + "approval_perbill": 691176471, + "support_perbill": 12437810, + "approval": 69.1176471, + "support": 1.243781 + }, + { + "time_hours": 127, + "approval_perbill": 688725491, + "support_perbill": 12284964, + "approval": 68.8725491, + "support": 1.2284964 + }, + { + "time_hours": 128, + "approval_perbill": 686274511, + "support_perbill": 12134411, + "approval": 68.6274511, + "support": 1.2134411 + }, + { + "time_hours": 129, + "approval_perbill": 683823530, + "support_perbill": 11986103, + "approval": 68.382353, + "support": 1.1986103 + }, + { + "time_hours": 130, + "approval_perbill": 681372550, + "support_perbill": 11839987, + "approval": 68.137255, + "support": 1.1839987 + }, + { + "time_hours": 131, + "approval_perbill": 678921569, + "support_perbill": 11696017, + "approval": 67.8921569, + "support": 1.1696017 + }, + { + "time_hours": 132, + "approval_perbill": 676470589, + "support_perbill": 11554145, + "approval": 67.6470589, + "support": 1.1554145 + }, + { + "time_hours": 133, + "approval_perbill": 674019609, + "support_perbill": 11414326, + "approval": 67.4019609, + "support": 1.1414326 + }, + { + "time_hours": 134, + "approval_perbill": 671568629, + "support_perbill": 11276516, + "approval": 67.1568629, + "support": 1.1276516 + }, + { + "time_hours": 135, + "approval_perbill": 669117648, + "support_perbill": 11140671, + "approval": 66.9117648, + "support": 1.1140671 + }, + { + "time_hours": 136, + "approval_perbill": 666666668, + "support_perbill": 11006750, + "approval": 66.6666668, + "support": 1.100675 + }, + { + "time_hours": 137, + "approval_perbill": 664215687, + "support_perbill": 10874713, + "approval": 66.4215687, + "support": 1.0874713 + }, + { + "time_hours": 138, + "approval_perbill": 661764707, + "support_perbill": 10744519, + "approval": 66.1764707, + "support": 1.0744519 + }, + { + "time_hours": 139, + "approval_perbill": 659313726, + "support_perbill": 10616130, + "approval": 65.9313726, + "support": 1.061613 + }, + { + "time_hours": 140, + "approval_perbill": 656862746, + "support_perbill": 10489510, + "approval": 65.6862746, + "support": 1.048951 + }, + { + "time_hours": 141, + "approval_perbill": 654411765, + "support_perbill": 10364622, + "approval": 65.4411765, + "support": 1.0364622 + }, + { + "time_hours": 142, + "approval_perbill": 651960785, + "support_perbill": 10241430, + "approval": 65.1960785, + "support": 1.024143 + }, + { + "time_hours": 143, + "approval_perbill": 649509804, + "support_perbill": 10119900, + "approval": 64.9509804, + "support": 1.01199 + }, + { + "time_hours": 144, + "approval_perbill": 647058824, + "support_perbill": 10000000, + "approval": 64.7058824, + "support": 1 + }, + { + "time_hours": 145, + "approval_perbill": 644607844, + "support_perbill": 9881695, + "approval": 64.4607844, + "support": 0.9881695 + }, + { + "time_hours": 146, + "approval_perbill": 642156864, + "support_perbill": 9764955, + "approval": 64.2156864, + "support": 0.9764955 + }, + { + "time_hours": 147, + "approval_perbill": 639705883, + "support_perbill": 9649749, + "approval": 63.9705883, + "support": 0.9649749 + }, + { + "time_hours": 148, + "approval_perbill": 637254903, + "support_perbill": 9536047, + "approval": 63.7254903, + "support": 0.9536047 + }, + { + "time_hours": 149, + "approval_perbill": 634803923, + "support_perbill": 9423820, + "approval": 63.4803923, + "support": 0.942382 + }, + { + "time_hours": 150, + "approval_perbill": 632352942, + "support_perbill": 9313038, + "approval": 63.2352942, + "support": 0.9313038 + }, + { + "time_hours": 151, + "approval_perbill": 629901962, + "support_perbill": 9203674, + "approval": 62.9901962, + "support": 0.9203674 + }, + { + "time_hours": 152, + "approval_perbill": 627450981, + "support_perbill": 9095702, + "approval": 62.7450981, + "support": 0.9095702 + }, + { + "time_hours": 153, + "approval_perbill": 625000001, + "support_perbill": 8989095, + "approval": 62.5000001, + "support": 0.8989095 + }, + { + "time_hours": 154, + "approval_perbill": 622549020, + "support_perbill": 8883826, + "approval": 62.254902, + "support": 0.8883826 + }, + { + "time_hours": 155, + "approval_perbill": 620098040, + "support_perbill": 8779872, + "approval": 62.009804, + "support": 0.8779872 + }, + { + "time_hours": 156, + "approval_perbill": 617647059, + "support_perbill": 8677207, + "approval": 61.7647059, + "support": 0.8677207 + }, + { + "time_hours": 157, + "approval_perbill": 615196079, + "support_perbill": 8575808, + "approval": 61.5196079, + "support": 0.8575808 + }, + { + "time_hours": 158, + "approval_perbill": 612745099, + "support_perbill": 8475652, + "approval": 61.2745099, + "support": 0.8475652 + }, + { + "time_hours": 159, + "approval_perbill": 610294119, + "support_perbill": 8376715, + "approval": 61.0294119, + "support": 0.8376715 + }, + { + "time_hours": 160, + "approval_perbill": 607843138, + "support_perbill": 8278976, + "approval": 60.7843138, + "support": 0.8278976 + }, + { + "time_hours": 161, + "approval_perbill": 605392158, + "support_perbill": 8182413, + "approval": 60.5392158, + "support": 0.8182413 + }, + { + "time_hours": 162, + "approval_perbill": 602941177, + "support_perbill": 8087005, + "approval": 60.2941177, + "support": 0.8087005 + }, + { + "time_hours": 163, + "approval_perbill": 600490197, + "support_perbill": 7992731, + "approval": 60.0490197, + "support": 0.7992731 + }, + { + "time_hours": 164, + "approval_perbill": 598039216, + "support_perbill": 7899571, + "approval": 59.8039216, + "support": 0.7899571 + }, + { + "time_hours": 165, + "approval_perbill": 595588236, + "support_perbill": 7807506, + "approval": 59.5588236, + "support": 0.7807506 + }, + { + "time_hours": 166, + "approval_perbill": 593137255, + "support_perbill": 7716516, + "approval": 59.3137255, + "support": 0.7716516 + }, + { + "time_hours": 167, + "approval_perbill": 590686275, + "support_perbill": 7626583, + "approval": 59.0686275, + "support": 0.7626583 + }, + { + "time_hours": 168, + "approval_perbill": 588235295, + "support_perbill": 7537688, + "approval": 58.8235295, + "support": 0.7537688 + }, + { + "time_hours": 169, + "approval_perbill": 585784315, + "support_perbill": 7449814, + "approval": 58.5784315, + "support": 0.7449814 + }, + { + "time_hours": 170, + "approval_perbill": 583333335, + "support_perbill": 7362942, + "approval": 58.3333335, + "support": 0.7362942 + }, + { + "time_hours": 171, + "approval_perbill": 580882354, + "support_perbill": 7277057, + "approval": 58.0882354, + "support": 0.7277057 + }, + { + "time_hours": 172, + "approval_perbill": 578431374, + "support_perbill": 7192141, + "approval": 57.8431374, + "support": 0.7192141 + }, + { + "time_hours": 173, + "approval_perbill": 575980393, + "support_perbill": 7108178, + "approval": 57.5980393, + "support": 0.7108178 + }, + { + "time_hours": 174, + "approval_perbill": 573529413, + "support_perbill": 7025151, + "approval": 57.3529413, + "support": 0.7025151 + }, + { + "time_hours": 175, + "approval_perbill": 571078432, + "support_perbill": 6943047, + "approval": 57.1078432, + "support": 0.6943047 + }, + { + "time_hours": 176, + "approval_perbill": 568627452, + "support_perbill": 6861848, + "approval": 56.8627452, + "support": 0.6861848 + }, + { + "time_hours": 177, + "approval_perbill": 566176471, + "support_perbill": 6781540, + "approval": 56.6176471, + "support": 0.678154 + }, + { + "time_hours": 178, + "approval_perbill": 563725491, + "support_perbill": 6702109, + "approval": 56.3725491, + "support": 0.6702109 + }, + { + "time_hours": 179, + "approval_perbill": 561274510, + "support_perbill": 6623541, + "approval": 56.127451, + "support": 0.6623541 + }, + { + "time_hours": 180, + "approval_perbill": 558823530, + "support_perbill": 6545820, + "approval": 55.882353, + "support": 0.654582 + }, + { + "time_hours": 181, + "approval_perbill": 556372550, + "support_perbill": 6468935, + "approval": 55.637255, + "support": 0.6468935 + }, + { + "time_hours": 182, + "approval_perbill": 553921570, + "support_perbill": 6392871, + "approval": 55.392157, + "support": 0.6392871 + }, + { + "time_hours": 183, + "approval_perbill": 551470589, + "support_perbill": 6317615, + "approval": 55.1470589, + "support": 0.6317615 + }, + { + "time_hours": 184, + "approval_perbill": 549019609, + "support_perbill": 6243154, + "approval": 54.9019609, + "support": 0.6243154 + }, + { + "time_hours": 185, + "approval_perbill": 546568628, + "support_perbill": 6169476, + "approval": 54.6568628, + "support": 0.6169476 + }, + { + "time_hours": 186, + "approval_perbill": 544117648, + "support_perbill": 6096569, + "approval": 54.4117648, + "support": 0.6096569 + }, + { + "time_hours": 187, + "approval_perbill": 541666667, + "support_perbill": 6024421, + "approval": 54.1666667, + "support": 0.6024421 + }, + { + "time_hours": 188, + "approval_perbill": 539215687, + "support_perbill": 5953019, + "approval": 53.9215687, + "support": 0.5953019 + }, + { + "time_hours": 189, + "approval_perbill": 536764706, + "support_perbill": 5882353, + "approval": 53.6764706, + "support": 0.5882353 + }, + { + "time_hours": 190, + "approval_perbill": 534313726, + "support_perbill": 5812410, + "approval": 53.4313726, + "support": 0.581241 + }, + { + "time_hours": 191, + "approval_perbill": 531862746, + "support_perbill": 5743181, + "approval": 53.1862746, + "support": 0.5743181 + }, + { + "time_hours": 192, + "approval_perbill": 529411765, + "support_perbill": 5674653, + "approval": 52.9411765, + "support": 0.5674653 + }, + { + "time_hours": 193, + "approval_perbill": 526960785, + "support_perbill": 5606817, + "approval": 52.6960785, + "support": 0.5606817 + }, + { + "time_hours": 194, + "approval_perbill": 524509805, + "support_perbill": 5539662, + "approval": 52.4509805, + "support": 0.5539662 + }, + { + "time_hours": 195, + "approval_perbill": 522058825, + "support_perbill": 5473177, + "approval": 52.2058825, + "support": 0.5473177 + }, + { + "time_hours": 196, + "approval_perbill": 519607844, + "support_perbill": 5407354, + "approval": 51.9607844, + "support": 0.5407354 + }, + { + "time_hours": 197, + "approval_perbill": 517156864, + "support_perbill": 5342181, + "approval": 51.7156864, + "support": 0.5342181 + }, + { + "time_hours": 198, + "approval_perbill": 514705883, + "support_perbill": 5277650, + "approval": 51.4705883, + "support": 0.527765 + }, + { + "time_hours": 199, + "approval_perbill": 512254903, + "support_perbill": 5213751, + "approval": 51.2254903, + "support": 0.5213751 + }, + { + "time_hours": 200, + "approval_perbill": 509803922, + "support_perbill": 5150474, + "approval": 50.9803922, + "support": 0.5150474 + }, + { + "time_hours": 201, + "approval_perbill": 507352942, + "support_perbill": 5087812, + "approval": 50.7352942, + "support": 0.5087812 + }, + { + "time_hours": 202, + "approval_perbill": 504901961, + "support_perbill": 5025754, + "approval": 50.4901961, + "support": 0.5025754 + }, + { + "time_hours": 203, + "approval_perbill": 502450981, + "support_perbill": 4964292, + "approval": 50.2450981, + "support": 0.4964292 + }, + { + "time_hours": 204, + "approval_perbill": 500000000, + "support_perbill": 4903417, + "approval": 50, + "support": 0.4903417 + }, + { + "time_hours": 205, + "approval_perbill": 500000000, + "support_perbill": 4843122, + "approval": 50, + "support": 0.4843122 + }, + { + "time_hours": 206, + "approval_perbill": 500000000, + "support_perbill": 4783398, + "approval": 50, + "support": 0.4783398 + }, + { + "time_hours": 207, + "approval_perbill": 500000000, + "support_perbill": 4724236, + "approval": 50, + "support": 0.4724236 + }, + { + "time_hours": 208, + "approval_perbill": 500000000, + "support_perbill": 4665630, + "approval": 50, + "support": 0.466563 + }, + { + "time_hours": 209, + "approval_perbill": 500000000, + "support_perbill": 4607570, + "approval": 50, + "support": 0.460757 + }, + { + "time_hours": 210, + "approval_perbill": 500000000, + "support_perbill": 4550050, + "approval": 50, + "support": 0.455005 + }, + { + "time_hours": 211, + "approval_perbill": 500000000, + "support_perbill": 4493062, + "approval": 50, + "support": 0.4493062 + }, + { + "time_hours": 212, + "approval_perbill": 500000000, + "support_perbill": 4436599, + "approval": 50, + "support": 0.4436599 + }, + { + "time_hours": 213, + "approval_perbill": 500000000, + "support_perbill": 4380654, + "approval": 50, + "support": 0.4380654 + }, + { + "time_hours": 214, + "approval_perbill": 500000000, + "support_perbill": 4325218, + "approval": 50, + "support": 0.4325218 + }, + { + "time_hours": 215, + "approval_perbill": 500000000, + "support_perbill": 4270287, + "approval": 50, + "support": 0.4270287 + }, + { + "time_hours": 216, + "approval_perbill": 500000000, + "support_perbill": 4215851, + "approval": 50, + "support": 0.4215851 + }, + { + "time_hours": 217, + "approval_perbill": 500000000, + "support_perbill": 4161906, + "approval": 50, + "support": 0.4161906 + }, + { + "time_hours": 218, + "approval_perbill": 500000000, + "support_perbill": 4108444, + "approval": 50, + "support": 0.4108444 + }, + { + "time_hours": 219, + "approval_perbill": 500000000, + "support_perbill": 4055459, + "approval": 50, + "support": 0.4055459 + }, + { + "time_hours": 220, + "approval_perbill": 500000000, + "support_perbill": 4002944, + "approval": 50, + "support": 0.4002944 + }, + { + "time_hours": 221, + "approval_perbill": 500000000, + "support_perbill": 3950894, + "approval": 50, + "support": 0.3950894 + }, + { + "time_hours": 222, + "approval_perbill": 500000000, + "support_perbill": 3899302, + "approval": 50, + "support": 0.3899302 + }, + { + "time_hours": 223, + "approval_perbill": 500000000, + "support_perbill": 3848162, + "approval": 50, + "support": 0.3848162 + }, + { + "time_hours": 224, + "approval_perbill": 500000000, + "support_perbill": 3797468, + "approval": 50, + "support": 0.3797468 + }, + { + "time_hours": 225, + "approval_perbill": 500000000, + "support_perbill": 3747215, + "approval": 50, + "support": 0.3747215 + }, + { + "time_hours": 226, + "approval_perbill": 500000000, + "support_perbill": 3697396, + "approval": 50, + "support": 0.3697396 + }, + { + "time_hours": 227, + "approval_perbill": 500000000, + "support_perbill": 3648006, + "approval": 50, + "support": 0.3648006 + }, + { + "time_hours": 228, + "approval_perbill": 500000000, + "support_perbill": 3599040, + "approval": 50, + "support": 0.359904 + }, + { + "time_hours": 229, + "approval_perbill": 500000000, + "support_perbill": 3550492, + "approval": 50, + "support": 0.3550492 + }, + { + "time_hours": 230, + "approval_perbill": 500000000, + "support_perbill": 3502357, + "approval": 50, + "support": 0.3502357 + }, + { + "time_hours": 231, + "approval_perbill": 500000000, + "support_perbill": 3454629, + "approval": 50, + "support": 0.3454629 + }, + { + "time_hours": 232, + "approval_perbill": 500000000, + "support_perbill": 3407304, + "approval": 50, + "support": 0.3407304 + }, + { + "time_hours": 233, + "approval_perbill": 500000000, + "support_perbill": 3360376, + "approval": 50, + "support": 0.3360376 + }, + { + "time_hours": 234, + "approval_perbill": 500000000, + "support_perbill": 3313840, + "approval": 50, + "support": 0.331384 + }, + { + "time_hours": 235, + "approval_perbill": 500000000, + "support_perbill": 3267692, + "approval": 50, + "support": 0.3267692 + }, + { + "time_hours": 236, + "approval_perbill": 500000000, + "support_perbill": 3221926, + "approval": 50, + "support": 0.3221926 + }, + { + "time_hours": 237, + "approval_perbill": 500000000, + "support_perbill": 3176538, + "approval": 50, + "support": 0.3176538 + }, + { + "time_hours": 238, + "approval_perbill": 500000000, + "support_perbill": 3131524, + "approval": 50, + "support": 0.3131524 + }, + { + "time_hours": 239, + "approval_perbill": 500000000, + "support_perbill": 3086878, + "approval": 50, + "support": 0.3086878 + }, + { + "time_hours": 240, + "approval_perbill": 500000000, + "support_perbill": 3042596, + "approval": 50, + "support": 0.3042596 + }, + { + "time_hours": 241, + "approval_perbill": 500000000, + "support_perbill": 2998674, + "approval": 50, + "support": 0.2998674 + }, + { + "time_hours": 242, + "approval_perbill": 500000000, + "support_perbill": 2955107, + "approval": 50, + "support": 0.2955107 + }, + { + "time_hours": 243, + "approval_perbill": 500000000, + "support_perbill": 2911892, + "approval": 50, + "support": 0.2911892 + }, + { + "time_hours": 244, + "approval_perbill": 500000000, + "support_perbill": 2869023, + "approval": 50, + "support": 0.2869023 + }, + { + "time_hours": 245, + "approval_perbill": 500000000, + "support_perbill": 2826496, + "approval": 50, + "support": 0.2826496 + }, + { + "time_hours": 246, + "approval_perbill": 500000000, + "support_perbill": 2784309, + "approval": 50, + "support": 0.2784309 + }, + { + "time_hours": 247, + "approval_perbill": 500000000, + "support_perbill": 2742455, + "approval": 50, + "support": 0.2742455 + }, + { + "time_hours": 248, + "approval_perbill": 500000000, + "support_perbill": 2700933, + "approval": 50, + "support": 0.2700933 + }, + { + "time_hours": 249, + "approval_perbill": 500000000, + "support_perbill": 2659737, + "approval": 50, + "support": 0.2659737 + }, + { + "time_hours": 250, + "approval_perbill": 500000000, + "support_perbill": 2618864, + "approval": 50, + "support": 0.2618864 + }, + { + "time_hours": 251, + "approval_perbill": 500000000, + "support_perbill": 2578310, + "approval": 50, + "support": 0.257831 + }, + { + "time_hours": 252, + "approval_perbill": 500000000, + "support_perbill": 2538071, + "approval": 50, + "support": 0.2538071 + }, + { + "time_hours": 253, + "approval_perbill": 500000000, + "support_perbill": 2498144, + "approval": 50, + "support": 0.2498144 + }, + { + "time_hours": 254, + "approval_perbill": 500000000, + "support_perbill": 2458525, + "approval": 50, + "support": 0.2458525 + }, + { + "time_hours": 255, + "approval_perbill": 500000000, + "support_perbill": 2419210, + "approval": 50, + "support": 0.241921 + }, + { + "time_hours": 256, + "approval_perbill": 500000000, + "support_perbill": 2380197, + "approval": 50, + "support": 0.2380197 + }, + { + "time_hours": 257, + "approval_perbill": 500000000, + "support_perbill": 2341481, + "approval": 50, + "support": 0.2341481 + }, + { + "time_hours": 258, + "approval_perbill": 500000000, + "support_perbill": 2303059, + "approval": 50, + "support": 0.2303059 + }, + { + "time_hours": 259, + "approval_perbill": 500000000, + "support_perbill": 2264928, + "approval": 50, + "support": 0.2264928 + }, + { + "time_hours": 260, + "approval_perbill": 500000000, + "support_perbill": 2227084, + "approval": 50, + "support": 0.2227084 + }, + { + "time_hours": 261, + "approval_perbill": 500000000, + "support_perbill": 2189525, + "approval": 50, + "support": 0.2189525 + }, + { + "time_hours": 262, + "approval_perbill": 500000000, + "support_perbill": 2152247, + "approval": 50, + "support": 0.2152247 + }, + { + "time_hours": 263, + "approval_perbill": 500000000, + "support_perbill": 2115247, + "approval": 50, + "support": 0.2115247 + }, + { + "time_hours": 264, + "approval_perbill": 500000000, + "support_perbill": 2078522, + "approval": 50, + "support": 0.2078522 + }, + { + "time_hours": 265, + "approval_perbill": 500000000, + "support_perbill": 2042068, + "approval": 50, + "support": 0.2042068 + }, + { + "time_hours": 266, + "approval_perbill": 500000000, + "support_perbill": 2005884, + "approval": 50, + "support": 0.2005884 + }, + { + "time_hours": 267, + "approval_perbill": 500000000, + "support_perbill": 1969965, + "approval": 50, + "support": 0.1969965 + }, + { + "time_hours": 268, + "approval_perbill": 500000000, + "support_perbill": 1934309, + "approval": 50, + "support": 0.1934309 + }, + { + "time_hours": 269, + "approval_perbill": 500000000, + "support_perbill": 1898913, + "approval": 50, + "support": 0.1898913 + }, + { + "time_hours": 270, + "approval_perbill": 500000000, + "support_perbill": 1863775, + "approval": 50, + "support": 0.1863775 + }, + { + "time_hours": 271, + "approval_perbill": 500000000, + "support_perbill": 1828891, + "approval": 50, + "support": 0.1828891 + }, + { + "time_hours": 272, + "approval_perbill": 500000000, + "support_perbill": 1794258, + "approval": 50, + "support": 0.1794258 + }, + { + "time_hours": 273, + "approval_perbill": 500000000, + "support_perbill": 1759875, + "approval": 50, + "support": 0.1759875 + }, + { + "time_hours": 274, + "approval_perbill": 500000000, + "support_perbill": 1725737, + "approval": 50, + "support": 0.1725737 + }, + { + "time_hours": 275, + "approval_perbill": 500000000, + "support_perbill": 1691844, + "approval": 50, + "support": 0.1691844 + }, + { + "time_hours": 276, + "approval_perbill": 500000000, + "support_perbill": 1658191, + "approval": 50, + "support": 0.1658191 + }, + { + "time_hours": 277, + "approval_perbill": 500000000, + "support_perbill": 1624777, + "approval": 50, + "support": 0.1624777 + }, + { + "time_hours": 278, + "approval_perbill": 500000000, + "support_perbill": 1591599, + "approval": 50, + "support": 0.1591599 + }, + { + "time_hours": 279, + "approval_perbill": 500000000, + "support_perbill": 1558654, + "approval": 50, + "support": 0.1558654 + }, + { + "time_hours": 280, + "approval_perbill": 500000000, + "support_perbill": 1525941, + "approval": 50, + "support": 0.1525941 + }, + { + "time_hours": 281, + "approval_perbill": 500000000, + "support_perbill": 1493456, + "approval": 50, + "support": 0.1493456 + }, + { + "time_hours": 282, + "approval_perbill": 500000000, + "support_perbill": 1461197, + "approval": 50, + "support": 0.1461197 + }, + { + "time_hours": 283, + "approval_perbill": 500000000, + "support_perbill": 1429162, + "approval": 50, + "support": 0.1429162 + }, + { + "time_hours": 284, + "approval_perbill": 500000000, + "support_perbill": 1397348, + "approval": 50, + "support": 0.1397348 + }, + { + "time_hours": 285, + "approval_perbill": 500000000, + "support_perbill": 1365754, + "approval": 50, + "support": 0.1365754 + }, + { + "time_hours": 286, + "approval_perbill": 500000000, + "support_perbill": 1334377, + "approval": 50, + "support": 0.1334377 + }, + { + "time_hours": 287, + "approval_perbill": 500000000, + "support_perbill": 1303214, + "approval": 50, + "support": 0.1303214 + }, + { + "time_hours": 288, + "approval_perbill": 500000000, + "support_perbill": 1272264, + "approval": 50, + "support": 0.1272264 + }, + { + "time_hours": 289, + "approval_perbill": 500000000, + "support_perbill": 1241525, + "approval": 50, + "support": 0.1241525 + }, + { + "time_hours": 290, + "approval_perbill": 500000000, + "support_perbill": 1210994, + "approval": 50, + "support": 0.1210994 + }, + { + "time_hours": 291, + "approval_perbill": 500000000, + "support_perbill": 1180668, + "approval": 50, + "support": 0.1180668 + }, + { + "time_hours": 292, + "approval_perbill": 500000000, + "support_perbill": 1150547, + "approval": 50, + "support": 0.1150547 + }, + { + "time_hours": 293, + "approval_perbill": 500000000, + "support_perbill": 1120628, + "approval": 50, + "support": 0.1120628 + }, + { + "time_hours": 294, + "approval_perbill": 500000000, + "support_perbill": 1090909, + "approval": 50, + "support": 0.1090909 + }, + { + "time_hours": 295, + "approval_perbill": 500000000, + "support_perbill": 1061388, + "approval": 50, + "support": 0.1061388 + }, + { + "time_hours": 296, + "approval_perbill": 500000000, + "support_perbill": 1032063, + "approval": 50, + "support": 0.1032063 + }, + { + "time_hours": 297, + "approval_perbill": 500000000, + "support_perbill": 1002932, + "approval": 50, + "support": 0.1002932 + }, + { + "time_hours": 298, + "approval_perbill": 500000000, + "support_perbill": 973993, + "approval": 50, + "support": 0.0973993 + }, + { + "time_hours": 299, + "approval_perbill": 500000000, + "support_perbill": 945244, + "approval": 50, + "support": 0.0945244 + }, + { + "time_hours": 300, + "approval_perbill": 500000000, + "support_perbill": 916684, + "approval": 50, + "support": 0.0916684 + }, + { + "time_hours": 301, + "approval_perbill": 500000000, + "support_perbill": 888310, + "approval": 50, + "support": 0.088831 + }, + { + "time_hours": 302, + "approval_perbill": 500000000, + "support_perbill": 860121, + "approval": 50, + "support": 0.0860121 + }, + { + "time_hours": 303, + "approval_perbill": 500000000, + "support_perbill": 832114, + "approval": 50, + "support": 0.0832114 + }, + { + "time_hours": 304, + "approval_perbill": 500000000, + "support_perbill": 804289, + "approval": 50, + "support": 0.0804289 + }, + { + "time_hours": 305, + "approval_perbill": 500000000, + "support_perbill": 776644, + "approval": 50, + "support": 0.0776644 + }, + { + "time_hours": 306, + "approval_perbill": 500000000, + "support_perbill": 749176, + "approval": 50, + "support": 0.0749176 + }, + { + "time_hours": 307, + "approval_perbill": 500000000, + "support_perbill": 721884, + "approval": 50, + "support": 0.0721884 + }, + { + "time_hours": 308, + "approval_perbill": 500000000, + "support_perbill": 694766, + "approval": 50, + "support": 0.0694766 + }, + { + "time_hours": 309, + "approval_perbill": 500000000, + "support_perbill": 667821, + "approval": 50, + "support": 0.0667821 + }, + { + "time_hours": 310, + "approval_perbill": 500000000, + "support_perbill": 641047, + "approval": 50, + "support": 0.0641047 + }, + { + "time_hours": 311, + "approval_perbill": 500000000, + "support_perbill": 614442, + "approval": 50, + "support": 0.0614442 + }, + { + "time_hours": 312, + "approval_perbill": 500000000, + "support_perbill": 588005, + "approval": 50, + "support": 0.0588005 + }, + { + "time_hours": 313, + "approval_perbill": 500000000, + "support_perbill": 561734, + "approval": 50, + "support": 0.0561734 + }, + { + "time_hours": 314, + "approval_perbill": 500000000, + "support_perbill": 535627, + "approval": 50, + "support": 0.0535627 + }, + { + "time_hours": 315, + "approval_perbill": 500000000, + "support_perbill": 509684, + "approval": 50, + "support": 0.0509684 + }, + { + "time_hours": 316, + "approval_perbill": 500000000, + "support_perbill": 483902, + "approval": 50, + "support": 0.0483902 + }, + { + "time_hours": 317, + "approval_perbill": 500000000, + "support_perbill": 458280, + "approval": 50, + "support": 0.045828 + }, + { + "time_hours": 318, + "approval_perbill": 500000000, + "support_perbill": 432817, + "approval": 50, + "support": 0.0432817 + }, + { + "time_hours": 319, + "approval_perbill": 500000000, + "support_perbill": 407511, + "approval": 50, + "support": 0.0407511 + }, + { + "time_hours": 320, + "approval_perbill": 500000000, + "support_perbill": 382360, + "approval": 50, + "support": 0.038236 + }, + { + "time_hours": 321, + "approval_perbill": 500000000, + "support_perbill": 357364, + "approval": 50, + "support": 0.0357364 + }, + { + "time_hours": 322, + "approval_perbill": 500000000, + "support_perbill": 332520, + "approval": 50, + "support": 0.033252 + }, + { + "time_hours": 323, + "approval_perbill": 500000000, + "support_perbill": 307828, + "approval": 50, + "support": 0.0307828 + }, + { + "time_hours": 324, + "approval_perbill": 500000000, + "support_perbill": 283286, + "approval": 50, + "support": 0.0283286 + }, + { + "time_hours": 325, + "approval_perbill": 500000000, + "support_perbill": 258892, + "approval": 50, + "support": 0.0258892 + }, + { + "time_hours": 326, + "approval_perbill": 500000000, + "support_perbill": 234646, + "approval": 50, + "support": 0.0234646 + }, + { + "time_hours": 327, + "approval_perbill": 500000000, + "support_perbill": 210546, + "approval": 50, + "support": 0.0210546 + }, + { + "time_hours": 328, + "approval_perbill": 500000000, + "support_perbill": 186590, + "approval": 50, + "support": 0.018659 + }, + { + "time_hours": 329, + "approval_perbill": 500000000, + "support_perbill": 162778, + "approval": 50, + "support": 0.0162778 + }, + { + "time_hours": 330, + "approval_perbill": 500000000, + "support_perbill": 139108, + "approval": 50, + "support": 0.0139108 + }, + { + "time_hours": 331, + "approval_perbill": 500000000, + "support_perbill": 115578, + "approval": 50, + "support": 0.0115578 + }, + { + "time_hours": 332, + "approval_perbill": 500000000, + "support_perbill": 92188, + "approval": 50, + "support": 0.0092188 + }, + { + "time_hours": 333, + "approval_perbill": 500000000, + "support_perbill": 68937, + "approval": 50, + "support": 0.0068937 + }, + { + "time_hours": 334, + "approval_perbill": 500000000, + "support_perbill": 45822, + "approval": 50, + "support": 0.0045822 + }, + { + "time_hours": 335, + "approval_perbill": 500000000, + "support_perbill": 22844, + "approval": 50, + "support": 0.0022844 + }, + { + "time_hours": 336, + "approval_perbill": 500000000, + "support_perbill": 0, + "approval": 50, + "support": 0 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/kusama/opengov_admin_general.json b/components/utilities/charts_data/kusama/opengov_admin_general.json new file mode 100644 index 000000000000..d91eb66eb71a --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_admin_general.json @@ -0,0 +1,2361 @@ +[ + { + "time_hours": 0, + "approval_perbill": 1000000000, + "support_perbill": 500000000, + "approval": 100, + "support": 50 + }, + { + "time_hours": 1, + "approval_perbill": 994100296, + "support_perbill": 482708936, + "approval": 99.4100296, + "support": 48.2708936 + }, + { + "time_hours": 2, + "approval_perbill": 988304096, + "support_perbill": 466480452, + "approval": 98.8304096, + "support": 46.6480452 + }, + { + "time_hours": 3, + "approval_perbill": 982608697, + "support_perbill": 451219514, + "approval": 98.2608697, + "support": 45.1219514 + }, + { + "time_hours": 4, + "approval_perbill": 977011496, + "support_perbill": 436842109, + "approval": 97.7011496, + "support": 43.6842109 + }, + { + "time_hours": 5, + "approval_perbill": 971509972, + "support_perbill": 423273659, + "approval": 97.1509972, + "support": 42.3273659 + }, + { + "time_hours": 6, + "approval_perbill": 966101697, + "support_perbill": 410447765, + "approval": 96.6101697, + "support": 41.0447765 + }, + { + "time_hours": 7, + "approval_perbill": 960784315, + "support_perbill": 398305086, + "approval": 96.0784315, + "support": 39.8305086 + }, + { + "time_hours": 8, + "approval_perbill": 955555557, + "support_perbill": 386792456, + "approval": 95.5555557, + "support": 38.6792456 + }, + { + "time_hours": 9, + "approval_perbill": 950413224, + "support_perbill": 375862070, + "approval": 95.0413224, + "support": 37.586207 + }, + { + "time_hours": 10, + "approval_perbill": 945355193, + "support_perbill": 365470854, + "approval": 94.5355193, + "support": 36.5470854 + }, + { + "time_hours": 11, + "approval_perbill": 940379404, + "support_perbill": 355579869, + "approval": 94.0379404, + "support": 35.5579869 + }, + { + "time_hours": 12, + "approval_perbill": 935483872, + "support_perbill": 346153848, + "approval": 93.5483872, + "support": 34.6153848 + }, + { + "time_hours": 13, + "approval_perbill": 930666667, + "support_perbill": 337160752, + "approval": 93.0666667, + "support": 33.7160752 + }, + { + "time_hours": 14, + "approval_perbill": 925925927, + "support_perbill": 328571430, + "approval": 92.5925927, + "support": 32.857143 + }, + { + "time_hours": 15, + "approval_perbill": 921259843, + "support_perbill": 320359282, + "approval": 92.1259843, + "support": 32.0359282 + }, + { + "time_hours": 16, + "approval_perbill": 916666668, + "support_perbill": 312500001, + "approval": 91.6666668, + "support": 31.2500001 + }, + { + "time_hours": 17, + "approval_perbill": 912144703, + "support_perbill": 304971319, + "approval": 91.2144703, + "support": 30.4971319 + }, + { + "time_hours": 18, + "approval_perbill": 907692309, + "support_perbill": 297752810, + "approval": 90.7692309, + "support": 29.775281 + }, + { + "time_hours": 19, + "approval_perbill": 903307888, + "support_perbill": 290825688, + "approval": 90.3307888, + "support": 29.0825688 + }, + { + "time_hours": 20, + "approval_perbill": 898989900, + "support_perbill": 284172663, + "approval": 89.89899, + "support": 28.4172663 + }, + { + "time_hours": 21, + "approval_perbill": 894736842, + "support_perbill": 277777777, + "approval": 89.4736842, + "support": 27.7777777 + }, + { + "time_hours": 22, + "approval_perbill": 890547265, + "support_perbill": 271626298, + "approval": 89.0547265, + "support": 27.1626298 + }, + { + "time_hours": 23, + "approval_perbill": 886419755, + "support_perbill": 265704586, + "approval": 88.6419755, + "support": 26.5704586 + }, + { + "time_hours": 24, + "approval_perbill": 882352942, + "support_perbill": 260000000, + "approval": 88.2352942, + "support": 26 + }, + { + "time_hours": 25, + "approval_perbill": 878345500, + "support_perbill": 254500820, + "approval": 87.83455, + "support": 25.450082 + }, + { + "time_hours": 26, + "approval_perbill": 874396136, + "support_perbill": 249196142, + "approval": 87.4396136, + "support": 24.9196142 + }, + { + "time_hours": 27, + "approval_perbill": 870503599, + "support_perbill": 244075830, + "approval": 87.0503599, + "support": 24.407583 + }, + { + "time_hours": 28, + "approval_perbill": 866666667, + "support_perbill": 239130435, + "approval": 86.6666667, + "support": 23.9130435 + }, + { + "time_hours": 29, + "approval_perbill": 862884162, + "support_perbill": 234351146, + "approval": 86.2884162, + "support": 23.4351146 + }, + { + "time_hours": 30, + "approval_perbill": 859154930, + "support_perbill": 229729730, + "approval": 85.915493, + "support": 22.972973 + }, + { + "time_hours": 31, + "approval_perbill": 855477857, + "support_perbill": 225258494, + "approval": 85.5477857, + "support": 22.5258494 + }, + { + "time_hours": 32, + "approval_perbill": 851851852, + "support_perbill": 220930232, + "approval": 85.1851852, + "support": 22.0930232 + }, + { + "time_hours": 33, + "approval_perbill": 848275863, + "support_perbill": 216738198, + "approval": 84.8275863, + "support": 21.6738198 + }, + { + "time_hours": 34, + "approval_perbill": 844748859, + "support_perbill": 212676056, + "approval": 84.4748859, + "support": 21.2676056 + }, + { + "time_hours": 35, + "approval_perbill": 841269842, + "support_perbill": 208737865, + "approval": 84.1269842, + "support": 20.8737865 + }, + { + "time_hours": 36, + "approval_perbill": 837837838, + "support_perbill": 204918033, + "approval": 83.7837838, + "support": 20.4918033 + }, + { + "time_hours": 37, + "approval_perbill": 834451903, + "support_perbill": 201211306, + "approval": 83.4451903, + "support": 20.1211306 + }, + { + "time_hours": 38, + "approval_perbill": 831111112, + "support_perbill": 197612732, + "approval": 83.1111112, + "support": 19.7612732 + }, + { + "time_hours": 39, + "approval_perbill": 827814570, + "support_perbill": 194117647, + "approval": 82.781457, + "support": 19.4117647 + }, + { + "time_hours": 40, + "approval_perbill": 824561404, + "support_perbill": 190721649, + "approval": 82.4561404, + "support": 19.0721649 + }, + { + "time_hours": 41, + "approval_perbill": 821350763, + "support_perbill": 187420585, + "approval": 82.1350763, + "support": 18.7420585 + }, + { + "time_hours": 42, + "approval_perbill": 818181818, + "support_perbill": 184210526, + "approval": 81.8181818, + "support": 18.4210526 + }, + { + "time_hours": 43, + "approval_perbill": 815053764, + "support_perbill": 181087763, + "approval": 81.5053764, + "support": 18.1087763 + }, + { + "time_hours": 44, + "approval_perbill": 811965813, + "support_perbill": 178048781, + "approval": 81.1965813, + "support": 17.8048781 + }, + { + "time_hours": 45, + "approval_perbill": 808917198, + "support_perbill": 175090253, + "approval": 80.8917198, + "support": 17.5090253 + }, + { + "time_hours": 46, + "approval_perbill": 805907174, + "support_perbill": 172209026, + "approval": 80.5907174, + "support": 17.2209026 + }, + { + "time_hours": 47, + "approval_perbill": 802935011, + "support_perbill": 169402110, + "approval": 80.2935011, + "support": 16.940211 + }, + { + "time_hours": 48, + "approval_perbill": 800000001, + "support_perbill": 166666667, + "approval": 80.0000001, + "support": 16.6666667 + }, + { + "time_hours": 49, + "approval_perbill": 797101450, + "support_perbill": 164000000, + "approval": 79.710145, + "support": 16.4 + }, + { + "time_hours": 50, + "approval_perbill": 794238684, + "support_perbill": 161399549, + "approval": 79.4238684, + "support": 16.1399549 + }, + { + "time_hours": 51, + "approval_perbill": 791411043, + "support_perbill": 158862876, + "approval": 79.1411043, + "support": 15.8862876 + }, + { + "time_hours": 52, + "approval_perbill": 788617887, + "support_perbill": 156387665, + "approval": 78.8617887, + "support": 15.6387665 + }, + { + "time_hours": 53, + "approval_perbill": 785858586, + "support_perbill": 153971708, + "approval": 78.5858586, + "support": 15.3971708 + }, + { + "time_hours": 54, + "approval_perbill": 783132531, + "support_perbill": 151612903, + "approval": 78.3132531, + "support": 15.1612903 + }, + { + "time_hours": 55, + "approval_perbill": 780439122, + "support_perbill": 149309245, + "approval": 78.0439122, + "support": 14.9309245 + }, + { + "time_hours": 56, + "approval_perbill": 777777779, + "support_perbill": 147058823, + "approval": 77.7777779, + "support": 14.7058823 + }, + { + "time_hours": 57, + "approval_perbill": 775147929, + "support_perbill": 144859813, + "approval": 77.5147929, + "support": 14.4859813 + }, + { + "time_hours": 58, + "approval_perbill": 772549020, + "support_perbill": 142710472, + "approval": 77.254902, + "support": 14.2710472 + }, + { + "time_hours": 59, + "approval_perbill": 769980507, + "support_perbill": 140609137, + "approval": 76.9980507, + "support": 14.0609137 + }, + { + "time_hours": 60, + "approval_perbill": 767441861, + "support_perbill": 138554217, + "approval": 76.7441861, + "support": 13.8554217 + }, + { + "time_hours": 61, + "approval_perbill": 764932563, + "support_perbill": 136544190, + "approval": 76.4932563, + "support": 13.654419 + }, + { + "time_hours": 62, + "approval_perbill": 762452108, + "support_perbill": 134577603, + "approval": 76.2452108, + "support": 13.4577603 + }, + { + "time_hours": 63, + "approval_perbill": 760000000, + "support_perbill": 132653061, + "approval": 76, + "support": 13.2653061 + }, + { + "time_hours": 64, + "approval_perbill": 757575758, + "support_perbill": 130769230, + "approval": 75.7575758, + "support": 13.076923 + }, + { + "time_hours": 65, + "approval_perbill": 755178909, + "support_perbill": 128924833, + "approval": 75.5178909, + "support": 12.8924833 + }, + { + "time_hours": 66, + "approval_perbill": 752808989, + "support_perbill": 127118644, + "approval": 75.2808989, + "support": 12.7118644 + }, + { + "time_hours": 67, + "approval_perbill": 750465550, + "support_perbill": 125349487, + "approval": 75.046555, + "support": 12.5349487 + }, + { + "time_hours": 68, + "approval_perbill": 748148149, + "support_perbill": 123616236, + "approval": 74.8148149, + "support": 12.3616236 + }, + { + "time_hours": 69, + "approval_perbill": 745856354, + "support_perbill": 121917808, + "approval": 74.5856354, + "support": 12.1917808 + }, + { + "time_hours": 70, + "approval_perbill": 743589744, + "support_perbill": 120253164, + "approval": 74.3589744, + "support": 12.0253164 + }, + { + "time_hours": 71, + "approval_perbill": 741347906, + "support_perbill": 118621307, + "approval": 74.1347906, + "support": 11.8621307 + }, + { + "time_hours": 72, + "approval_perbill": 739130435, + "support_perbill": 117021276, + "approval": 73.9130435, + "support": 11.7021276 + }, + { + "time_hours": 73, + "approval_perbill": 736936938, + "support_perbill": 115452151, + "approval": 73.6936938, + "support": 11.5452151 + }, + { + "time_hours": 74, + "approval_perbill": 734767025, + "support_perbill": 113913043, + "approval": 73.4767025, + "support": 11.3913043 + }, + { + "time_hours": 75, + "approval_perbill": 732620322, + "support_perbill": 112403100, + "approval": 73.2620322, + "support": 11.24031 + }, + { + "time_hours": 76, + "approval_perbill": 730496454, + "support_perbill": 110921501, + "approval": 73.0496454, + "support": 11.0921501 + }, + { + "time_hours": 77, + "approval_perbill": 728395062, + "support_perbill": 109467455, + "approval": 72.8395062, + "support": 10.9467455 + }, + { + "time_hours": 78, + "approval_perbill": 726315790, + "support_perbill": 108040200, + "approval": 72.631579, + "support": 10.80402 + }, + { + "time_hours": 79, + "approval_perbill": 724258290, + "support_perbill": 106639004, + "approval": 72.425829, + "support": 10.6639004 + }, + { + "time_hours": 80, + "approval_perbill": 722222222, + "support_perbill": 105263157, + "approval": 72.2222222, + "support": 10.5263157 + }, + { + "time_hours": 81, + "approval_perbill": 720207254, + "support_perbill": 103911980, + "approval": 72.0207254, + "support": 10.391198 + }, + { + "time_hours": 82, + "approval_perbill": 718213059, + "support_perbill": 102584814, + "approval": 71.8213059, + "support": 10.2584814 + }, + { + "time_hours": 83, + "approval_perbill": 716239317, + "support_perbill": 101281024, + "approval": 71.6239317, + "support": 10.1281024 + }, + { + "time_hours": 84, + "approval_perbill": 714285714, + "support_perbill": 99999999, + "approval": 71.4285714, + "support": 9.9999999 + }, + { + "time_hours": 85, + "approval_perbill": 712351946, + "support_perbill": 98741148, + "approval": 71.2351946, + "support": 9.8741148 + }, + { + "time_hours": 86, + "approval_perbill": 710437711, + "support_perbill": 97503900, + "approval": 71.0437711, + "support": 9.75039 + }, + { + "time_hours": 87, + "approval_perbill": 708542714, + "support_perbill": 96287703, + "approval": 70.8542714, + "support": 9.6287703 + }, + { + "time_hours": 88, + "approval_perbill": 706666667, + "support_perbill": 95092024, + "approval": 70.6666667, + "support": 9.5092024 + }, + { + "time_hours": 89, + "approval_perbill": 704809287, + "support_perbill": 93916349, + "approval": 70.4809287, + "support": 9.3916349 + }, + { + "time_hours": 90, + "approval_perbill": 702970298, + "support_perbill": 92760181, + "approval": 70.2970298, + "support": 9.2760181 + }, + { + "time_hours": 91, + "approval_perbill": 701149426, + "support_perbill": 91623036, + "approval": 70.1149426, + "support": 9.1623036 + }, + { + "time_hours": 92, + "approval_perbill": 699346406, + "support_perbill": 90504451, + "approval": 69.9346406, + "support": 9.0504451 + }, + { + "time_hours": 93, + "approval_perbill": 697560976, + "support_perbill": 89403973, + "approval": 69.7560976, + "support": 8.9403973 + }, + { + "time_hours": 94, + "approval_perbill": 695792881, + "support_perbill": 88321167, + "approval": 69.5792881, + "support": 8.8321167 + }, + { + "time_hours": 95, + "approval_perbill": 694041868, + "support_perbill": 87255611, + "approval": 69.4041868, + "support": 8.7255611 + }, + { + "time_hours": 96, + "approval_perbill": 692307693, + "support_perbill": 86206896, + "approval": 69.2307693, + "support": 8.6206896 + }, + { + "time_hours": 97, + "approval_perbill": 690590112, + "support_perbill": 85174625, + "approval": 69.0590112, + "support": 8.5174625 + }, + { + "time_hours": 98, + "approval_perbill": 688888889, + "support_perbill": 84158415, + "approval": 68.8888889, + "support": 8.4158415 + }, + { + "time_hours": 99, + "approval_perbill": 687203792, + "support_perbill": 83157894, + "approval": 68.7203792, + "support": 8.3157894 + }, + { + "time_hours": 100, + "approval_perbill": 685534592, + "support_perbill": 82172701, + "approval": 68.5534592, + "support": 8.2172701 + }, + { + "time_hours": 101, + "approval_perbill": 683881064, + "support_perbill": 81202487, + "approval": 68.3881064, + "support": 8.1202487 + }, + { + "time_hours": 102, + "approval_perbill": 682242991, + "support_perbill": 80246913, + "approval": 68.2242991, + "support": 8.0246913 + }, + { + "time_hours": 103, + "approval_perbill": 680620155, + "support_perbill": 79305649, + "approval": 68.0620155, + "support": 7.9305649 + }, + { + "time_hours": 104, + "approval_perbill": 679012346, + "support_perbill": 78378378, + "approval": 67.9012346, + "support": 7.8378378 + }, + { + "time_hours": 105, + "approval_perbill": 677419355, + "support_perbill": 77464788, + "approval": 67.7419355, + "support": 7.7464788 + }, + { + "time_hours": 106, + "approval_perbill": 675840979, + "support_perbill": 76564580, + "approval": 67.5840979, + "support": 7.656458 + }, + { + "time_hours": 107, + "approval_perbill": 674277017, + "support_perbill": 75677462, + "approval": 67.4277017, + "support": 7.5677462 + }, + { + "time_hours": 108, + "approval_perbill": 672727273, + "support_perbill": 74803149, + "approval": 67.2727273, + "support": 7.4803149 + }, + { + "time_hours": 109, + "approval_perbill": 671191554, + "support_perbill": 73941368, + "approval": 67.1191554, + "support": 7.3941368 + }, + { + "time_hours": 110, + "approval_perbill": 669669670, + "support_perbill": 73091849, + "approval": 66.966967, + "support": 7.3091849 + }, + { + "time_hours": 111, + "approval_perbill": 668161435, + "support_perbill": 72254335, + "approval": 66.8161435, + "support": 7.2254335 + }, + { + "time_hours": 112, + "approval_perbill": 666666667, + "support_perbill": 71428571, + "approval": 66.6666667, + "support": 7.1428571 + }, + { + "time_hours": 113, + "approval_perbill": 665185186, + "support_perbill": 70614312, + "approval": 66.5185186, + "support": 7.0614312 + }, + { + "time_hours": 114, + "approval_perbill": 663716814, + "support_perbill": 69811320, + "approval": 66.3716814, + "support": 6.981132 + }, + { + "time_hours": 115, + "approval_perbill": 662261381, + "support_perbill": 69019362, + "approval": 66.2261381, + "support": 6.9019362 + }, + { + "time_hours": 116, + "approval_perbill": 660818714, + "support_perbill": 68238213, + "approval": 66.0818714, + "support": 6.8238213 + }, + { + "time_hours": 117, + "approval_perbill": 659388647, + "support_perbill": 67467652, + "approval": 65.9388647, + "support": 6.7467652 + }, + { + "time_hours": 118, + "approval_perbill": 657971015, + "support_perbill": 66707466, + "approval": 65.7971015, + "support": 6.6707466 + }, + { + "time_hours": 119, + "approval_perbill": 656565657, + "support_perbill": 65957446, + "approval": 65.6565657, + "support": 6.5957446 + }, + { + "time_hours": 120, + "approval_perbill": 655172414, + "support_perbill": 65217391, + "approval": 65.5172414, + "support": 6.5217391 + }, + { + "time_hours": 121, + "approval_perbill": 653791130, + "support_perbill": 64487102, + "approval": 65.379113, + "support": 6.4487102 + }, + { + "time_hours": 122, + "approval_perbill": 652421652, + "support_perbill": 63766388, + "approval": 65.2421652, + "support": 6.3766388 + }, + { + "time_hours": 123, + "approval_perbill": 651063830, + "support_perbill": 63055062, + "approval": 65.106383, + "support": 6.3055062 + }, + { + "time_hours": 124, + "approval_perbill": 649717514, + "support_perbill": 62352940, + "approval": 64.9717514, + "support": 6.235294 + }, + { + "time_hours": 125, + "approval_perbill": 648382560, + "support_perbill": 61659847, + "approval": 64.838256, + "support": 6.1659847 + }, + { + "time_hours": 126, + "approval_perbill": 647058823, + "support_perbill": 60975609, + "approval": 64.7058823, + "support": 6.0975609 + }, + { + "time_hours": 127, + "approval_perbill": 645746165, + "support_perbill": 60300057, + "approval": 64.5746165, + "support": 6.0300057 + }, + { + "time_hours": 128, + "approval_perbill": 644444445, + "support_perbill": 59633027, + "approval": 64.4444445, + "support": 5.9633027 + }, + { + "time_hours": 129, + "approval_perbill": 643153527, + "support_perbill": 58974358, + "approval": 64.3153527, + "support": 5.8974358 + }, + { + "time_hours": 130, + "approval_perbill": 641873279, + "support_perbill": 58323895, + "approval": 64.1873279, + "support": 5.8323895 + }, + { + "time_hours": 131, + "approval_perbill": 640603567, + "support_perbill": 57681485, + "approval": 64.0603567, + "support": 5.7681485 + }, + { + "time_hours": 132, + "approval_perbill": 639344263, + "support_perbill": 57046979, + "approval": 63.9344263, + "support": 5.7046979 + }, + { + "time_hours": 133, + "approval_perbill": 638095238, + "support_perbill": 56420233, + "approval": 63.8095238, + "support": 5.6420233 + }, + { + "time_hours": 134, + "approval_perbill": 636856369, + "support_perbill": 55801104, + "approval": 63.6856369, + "support": 5.5801104 + }, + { + "time_hours": 135, + "approval_perbill": 635627530, + "support_perbill": 55189456, + "approval": 63.562753, + "support": 5.5189456 + }, + { + "time_hours": 136, + "approval_perbill": 634408602, + "support_perbill": 54585152, + "approval": 63.4408602, + "support": 5.4585152 + }, + { + "time_hours": 137, + "approval_perbill": 633199465, + "support_perbill": 53988062, + "approval": 63.3199465, + "support": 5.3988062 + }, + { + "time_hours": 138, + "approval_perbill": 632000000, + "support_perbill": 53398058, + "approval": 63.2, + "support": 5.3398058 + }, + { + "time_hours": 139, + "approval_perbill": 630810093, + "support_perbill": 52815013, + "approval": 63.0810093, + "support": 5.2815013 + }, + { + "time_hours": 140, + "approval_perbill": 629629630, + "support_perbill": 52238805, + "approval": 62.962963, + "support": 5.2238805 + }, + { + "time_hours": 141, + "approval_perbill": 628458498, + "support_perbill": 51669316, + "approval": 62.8458498, + "support": 5.1669316 + }, + { + "time_hours": 142, + "approval_perbill": 627296588, + "support_perbill": 51106427, + "approval": 62.7296588, + "support": 5.1106427 + }, + { + "time_hours": 143, + "approval_perbill": 626143791, + "support_perbill": 50550025, + "approval": 62.6143791, + "support": 5.0550025 + }, + { + "time_hours": 144, + "approval_perbill": 625000000, + "support_perbill": 49999999, + "approval": 62.5, + "support": 4.9999999 + }, + { + "time_hours": 145, + "approval_perbill": 623865110, + "support_perbill": 49456240, + "approval": 62.386511, + "support": 4.945624 + }, + { + "time_hours": 146, + "approval_perbill": 622739018, + "support_perbill": 48918640, + "approval": 62.2739018, + "support": 4.891864 + }, + { + "time_hours": 147, + "approval_perbill": 621621621, + "support_perbill": 48387096, + "approval": 62.1621621, + "support": 4.8387096 + }, + { + "time_hours": 148, + "approval_perbill": 620512821, + "support_perbill": 47861506, + "approval": 62.0512821, + "support": 4.7861506 + }, + { + "time_hours": 149, + "approval_perbill": 619412516, + "support_perbill": 47341772, + "approval": 61.9412516, + "support": 4.7341772 + }, + { + "time_hours": 150, + "approval_perbill": 618320611, + "support_perbill": 46827794, + "approval": 61.8320611, + "support": 4.6827794 + }, + { + "time_hours": 151, + "approval_perbill": 617237009, + "support_perbill": 46319479, + "approval": 61.7237009, + "support": 4.6319479 + }, + { + "time_hours": 152, + "approval_perbill": 616161616, + "support_perbill": 45816732, + "approval": 61.6161616, + "support": 4.5816732 + }, + { + "time_hours": 153, + "approval_perbill": 615094340, + "support_perbill": 45319464, + "approval": 61.509434, + "support": 4.5319464 + }, + { + "time_hours": 154, + "approval_perbill": 614035088, + "support_perbill": 44827585, + "approval": 61.4035088, + "support": 4.4827585 + }, + { + "time_hours": 155, + "approval_perbill": 612983770, + "support_perbill": 44341009, + "approval": 61.298377, + "support": 4.4341009 + }, + { + "time_hours": 156, + "approval_perbill": 611940298, + "support_perbill": 43859648, + "approval": 61.1940298, + "support": 4.3859648 + }, + { + "time_hours": 157, + "approval_perbill": 610904585, + "support_perbill": 43383422, + "approval": 61.0904585, + "support": 4.3383422 + }, + { + "time_hours": 158, + "approval_perbill": 609876543, + "support_perbill": 42912246, + "approval": 60.9876543, + "support": 4.2912246 + }, + { + "time_hours": 159, + "approval_perbill": 608856089, + "support_perbill": 42446042, + "approval": 60.8856089, + "support": 4.2446042 + }, + { + "time_hours": 160, + "approval_perbill": 607843137, + "support_perbill": 41984732, + "approval": 60.7843137, + "support": 4.1984732 + }, + { + "time_hours": 161, + "approval_perbill": 606837607, + "support_perbill": 41528238, + "approval": 60.6837607, + "support": 4.1528238 + }, + { + "time_hours": 162, + "approval_perbill": 605839416, + "support_perbill": 41076486, + "approval": 60.5839416, + "support": 4.1076486 + }, + { + "time_hours": 163, + "approval_perbill": 604848485, + "support_perbill": 40629403, + "approval": 60.4848485, + "support": 4.0629403 + }, + { + "time_hours": 164, + "approval_perbill": 603864734, + "support_perbill": 40186915, + "approval": 60.3864734, + "support": 4.0186915 + }, + { + "time_hours": 165, + "approval_perbill": 602888087, + "support_perbill": 39748953, + "approval": 60.2888087, + "support": 3.9748953 + }, + { + "time_hours": 166, + "approval_perbill": 601918465, + "support_perbill": 39315448, + "approval": 60.1918465, + "support": 3.9315448 + }, + { + "time_hours": 167, + "approval_perbill": 600955794, + "support_perbill": 38886332, + "approval": 60.0955794, + "support": 3.8886332 + }, + { + "time_hours": 168, + "approval_perbill": 600000000, + "support_perbill": 38461538, + "approval": 60, + "support": 3.8461538 + }, + { + "time_hours": 169, + "approval_perbill": 599051008, + "support_perbill": 38041002, + "approval": 59.9051008, + "support": 3.8041002 + }, + { + "time_hours": 170, + "approval_perbill": 598108747, + "support_perbill": 37624659, + "approval": 59.8108747, + "support": 3.7624659 + }, + { + "time_hours": 171, + "approval_perbill": 597173145, + "support_perbill": 37212448, + "approval": 59.7173145, + "support": 3.7212448 + }, + { + "time_hours": 172, + "approval_perbill": 596244131, + "support_perbill": 36804308, + "approval": 59.6244131, + "support": 3.6804308 + }, + { + "time_hours": 173, + "approval_perbill": 595321637, + "support_perbill": 36400178, + "approval": 59.5321637, + "support": 3.6400178 + }, + { + "time_hours": 174, + "approval_perbill": 594405594, + "support_perbill": 35999999, + "approval": 59.4405594, + "support": 3.5999999 + }, + { + "time_hours": 175, + "approval_perbill": 593495935, + "support_perbill": 35603714, + "approval": 59.3495935, + "support": 3.5603714 + }, + { + "time_hours": 176, + "approval_perbill": 592592593, + "support_perbill": 35211267, + "approval": 59.2592593, + "support": 3.5211267 + }, + { + "time_hours": 177, + "approval_perbill": 591695502, + "support_perbill": 34822601, + "approval": 59.1695502, + "support": 3.4822601 + }, + { + "time_hours": 178, + "approval_perbill": 590804598, + "support_perbill": 34437663, + "approval": 59.0804598, + "support": 3.4437663 + }, + { + "time_hours": 179, + "approval_perbill": 589919817, + "support_perbill": 34056398, + "approval": 58.9919817, + "support": 3.4056398 + }, + { + "time_hours": 180, + "approval_perbill": 589041096, + "support_perbill": 33678756, + "approval": 58.9041096, + "support": 3.3678756 + }, + { + "time_hours": 181, + "approval_perbill": 588168373, + "support_perbill": 33304683, + "approval": 58.8168373, + "support": 3.3304683 + }, + { + "time_hours": 182, + "approval_perbill": 587301587, + "support_perbill": 32934131, + "approval": 58.7301587, + "support": 3.2934131 + }, + { + "time_hours": 183, + "approval_perbill": 586440678, + "support_perbill": 32567049, + "approval": 58.6440678, + "support": 3.2567049 + }, + { + "time_hours": 184, + "approval_perbill": 585585585, + "support_perbill": 32203389, + "approval": 58.5585585, + "support": 3.2203389 + }, + { + "time_hours": 185, + "approval_perbill": 584736251, + "support_perbill": 31843103, + "approval": 58.4736251, + "support": 3.1843103 + }, + { + "time_hours": 186, + "approval_perbill": 583892617, + "support_perbill": 31486145, + "approval": 58.3892617, + "support": 3.1486145 + }, + { + "time_hours": 187, + "approval_perbill": 583054626, + "support_perbill": 31132469, + "approval": 58.3054626, + "support": 3.1132469 + }, + { + "time_hours": 188, + "approval_perbill": 582222222, + "support_perbill": 30782029, + "approval": 58.2222222, + "support": 3.0782029 + }, + { + "time_hours": 189, + "approval_perbill": 581395349, + "support_perbill": 30434782, + "approval": 58.1395349, + "support": 3.0434782 + }, + { + "time_hours": 190, + "approval_perbill": 580573951, + "support_perbill": 30090683, + "approval": 58.0573951, + "support": 3.0090683 + }, + { + "time_hours": 191, + "approval_perbill": 579757976, + "support_perbill": 29749692, + "approval": 57.9757976, + "support": 2.9749692 + }, + { + "time_hours": 192, + "approval_perbill": 578947368, + "support_perbill": 29411764, + "approval": 57.8947368, + "support": 2.9411764 + }, + { + "time_hours": 193, + "approval_perbill": 578142076, + "support_perbill": 29076860, + "approval": 57.8142076, + "support": 2.907686 + }, + { + "time_hours": 194, + "approval_perbill": 577342048, + "support_perbill": 28744938, + "approval": 57.7342048, + "support": 2.8744938 + }, + { + "time_hours": 195, + "approval_perbill": 576547231, + "support_perbill": 28415961, + "approval": 57.6547231, + "support": 2.8415961 + }, + { + "time_hours": 196, + "approval_perbill": 575757576, + "support_perbill": 28089887, + "approval": 57.5757576, + "support": 2.8089887 + }, + { + "time_hours": 197, + "approval_perbill": 574973031, + "support_perbill": 27766679, + "approval": 57.4973031, + "support": 2.7766679 + }, + { + "time_hours": 198, + "approval_perbill": 574193548, + "support_perbill": 27446300, + "approval": 57.4193548, + "support": 2.74463 + }, + { + "time_hours": 199, + "approval_perbill": 573419078, + "support_perbill": 27128712, + "approval": 57.3419078, + "support": 2.7128712 + }, + { + "time_hours": 200, + "approval_perbill": 572649572, + "support_perbill": 26813879, + "approval": 57.2649572, + "support": 2.6813879 + }, + { + "time_hours": 201, + "approval_perbill": 571884984, + "support_perbill": 26501766, + "approval": 57.1884984, + "support": 2.6501766 + }, + { + "time_hours": 202, + "approval_perbill": 571125265, + "support_perbill": 26192337, + "approval": 57.1125265, + "support": 2.6192337 + }, + { + "time_hours": 203, + "approval_perbill": 570370370, + "support_perbill": 25885558, + "approval": 57.037037, + "support": 2.5885558 + }, + { + "time_hours": 204, + "approval_perbill": 569620253, + "support_perbill": 25581395, + "approval": 56.9620253, + "support": 2.5581395 + }, + { + "time_hours": 205, + "approval_perbill": 568874868, + "support_perbill": 25279814, + "approval": 56.8874868, + "support": 2.5279814 + }, + { + "time_hours": 206, + "approval_perbill": 568134172, + "support_perbill": 24980783, + "approval": 56.8134172, + "support": 2.4980783 + }, + { + "time_hours": 207, + "approval_perbill": 567398119, + "support_perbill": 24684270, + "approval": 56.7398119, + "support": 2.468427 + }, + { + "time_hours": 208, + "approval_perbill": 566666666, + "support_perbill": 24390243, + "approval": 56.6666666, + "support": 2.4390243 + }, + { + "time_hours": 209, + "approval_perbill": 565939771, + "support_perbill": 24098671, + "approval": 56.5939771, + "support": 2.4098671 + }, + { + "time_hours": 210, + "approval_perbill": 565217391, + "support_perbill": 23809523, + "approval": 56.5217391, + "support": 2.3809523 + }, + { + "time_hours": 211, + "approval_perbill": 564499484, + "support_perbill": 23522769, + "approval": 56.4499484, + "support": 2.3522769 + }, + { + "time_hours": 212, + "approval_perbill": 563786008, + "support_perbill": 23238380, + "approval": 56.3786008, + "support": 2.323838 + }, + { + "time_hours": 213, + "approval_perbill": 563076923, + "support_perbill": 22956326, + "approval": 56.3076923, + "support": 2.2956326 + }, + { + "time_hours": 214, + "approval_perbill": 562372188, + "support_perbill": 22676579, + "approval": 56.2372188, + "support": 2.2676579 + }, + { + "time_hours": 215, + "approval_perbill": 561671763, + "support_perbill": 22399111, + "approval": 56.1671763, + "support": 2.2399111 + }, + { + "time_hours": 216, + "approval_perbill": 560975610, + "support_perbill": 22123893, + "approval": 56.097561, + "support": 2.2123893 + }, + { + "time_hours": 217, + "approval_perbill": 560283688, + "support_perbill": 21850899, + "approval": 56.0283688, + "support": 2.1850899 + }, + { + "time_hours": 218, + "approval_perbill": 559595959, + "support_perbill": 21580102, + "approval": 55.9595959, + "support": 2.1580102 + }, + { + "time_hours": 219, + "approval_perbill": 558912386, + "support_perbill": 21311475, + "approval": 55.8912386, + "support": 2.1311475 + }, + { + "time_hours": 220, + "approval_perbill": 558232931, + "support_perbill": 21044992, + "approval": 55.8232931, + "support": 2.1044992 + }, + { + "time_hours": 221, + "approval_perbill": 557557557, + "support_perbill": 20780628, + "approval": 55.7557557, + "support": 2.0780628 + }, + { + "time_hours": 222, + "approval_perbill": 556886227, + "support_perbill": 20518358, + "approval": 55.6886227, + "support": 2.0518358 + }, + { + "time_hours": 223, + "approval_perbill": 556218905, + "support_perbill": 20258156, + "approval": 55.6218905, + "support": 2.0258156 + }, + { + "time_hours": 224, + "approval_perbill": 555555555, + "support_perbill": 19999999, + "approval": 55.5555555, + "support": 1.9999999 + }, + { + "time_hours": 225, + "approval_perbill": 554896142, + "support_perbill": 19743863, + "approval": 55.4896142, + "support": 1.9743863 + }, + { + "time_hours": 226, + "approval_perbill": 554240631, + "support_perbill": 19489723, + "approval": 55.4240631, + "support": 1.9489723 + }, + { + "time_hours": 227, + "approval_perbill": 553588987, + "support_perbill": 19237556, + "approval": 55.3588987, + "support": 1.9237556 + }, + { + "time_hours": 228, + "approval_perbill": 552941176, + "support_perbill": 18987341, + "approval": 55.2941176, + "support": 1.8987341 + }, + { + "time_hours": 229, + "approval_perbill": 552297165, + "support_perbill": 18739053, + "approval": 55.2297165, + "support": 1.8739053 + }, + { + "time_hours": 230, + "approval_perbill": 551656920, + "support_perbill": 18492672, + "approval": 55.165692, + "support": 1.8492672 + }, + { + "time_hours": 231, + "approval_perbill": 551020408, + "support_perbill": 18248174, + "approval": 55.1020408, + "support": 1.8248174 + }, + { + "time_hours": 232, + "approval_perbill": 550387597, + "support_perbill": 18005539, + "approval": 55.0387597, + "support": 1.8005539 + }, + { + "time_hours": 233, + "approval_perbill": 549758454, + "support_perbill": 17764746, + "approval": 54.9758454, + "support": 1.7764746 + }, + { + "time_hours": 234, + "approval_perbill": 549132948, + "support_perbill": 17525772, + "approval": 54.9132948, + "support": 1.7525772 + }, + { + "time_hours": 235, + "approval_perbill": 548511047, + "support_perbill": 17288599, + "approval": 54.8511047, + "support": 1.7288599 + }, + { + "time_hours": 236, + "approval_perbill": 547892720, + "support_perbill": 17053205, + "approval": 54.789272, + "support": 1.7053205 + }, + { + "time_hours": 237, + "approval_perbill": 547277937, + "support_perbill": 16819571, + "approval": 54.7277937, + "support": 1.6819571 + }, + { + "time_hours": 238, + "approval_perbill": 546666666, + "support_perbill": 16587677, + "approval": 54.6666666, + "support": 1.6587677 + }, + { + "time_hours": 239, + "approval_perbill": 546058879, + "support_perbill": 16357503, + "approval": 54.6058879, + "support": 1.6357503 + }, + { + "time_hours": 240, + "approval_perbill": 545454545, + "support_perbill": 16129031, + "approval": 54.5454545, + "support": 1.6129031 + }, + { + "time_hours": 241, + "approval_perbill": 544853635, + "support_perbill": 15902242, + "approval": 54.4853635, + "support": 1.5902242 + }, + { + "time_hours": 242, + "approval_perbill": 544256120, + "support_perbill": 15677117, + "approval": 54.425612, + "support": 1.5677117 + }, + { + "time_hours": 243, + "approval_perbill": 543661971, + "support_perbill": 15453638, + "approval": 54.3661971, + "support": 1.5453638 + }, + { + "time_hours": 244, + "approval_perbill": 543071161, + "support_perbill": 15231787, + "approval": 54.3071161, + "support": 1.5231787 + }, + { + "time_hours": 245, + "approval_perbill": 542483660, + "support_perbill": 15011547, + "approval": 54.248366, + "support": 1.5011547 + }, + { + "time_hours": 246, + "approval_perbill": 541899441, + "support_perbill": 14792899, + "approval": 54.1899441, + "support": 1.4792899 + }, + { + "time_hours": 247, + "approval_perbill": 541318477, + "support_perbill": 14575826, + "approval": 54.1318477, + "support": 1.4575826 + }, + { + "time_hours": 248, + "approval_perbill": 540740740, + "support_perbill": 14360312, + "approval": 54.074074, + "support": 1.4360312 + }, + { + "time_hours": 249, + "approval_perbill": 540166205, + "support_perbill": 14146341, + "approval": 54.0166205, + "support": 1.4146341 + }, + { + "time_hours": 250, + "approval_perbill": 539594843, + "support_perbill": 13933894, + "approval": 53.9594843, + "support": 1.3933894 + }, + { + "time_hours": 251, + "approval_perbill": 539026630, + "support_perbill": 13722957, + "approval": 53.902663, + "support": 1.3722957 + }, + { + "time_hours": 252, + "approval_perbill": 538461538, + "support_perbill": 13513513, + "approval": 53.8461538, + "support": 1.3513513 + }, + { + "time_hours": 253, + "approval_perbill": 537899543, + "support_perbill": 13305546, + "approval": 53.7899543, + "support": 1.3305546 + }, + { + "time_hours": 254, + "approval_perbill": 537340619, + "support_perbill": 13099041, + "approval": 53.7340619, + "support": 1.3099041 + }, + { + "time_hours": 255, + "approval_perbill": 536784741, + "support_perbill": 12893982, + "approval": 53.6784741, + "support": 1.2893982 + }, + { + "time_hours": 256, + "approval_perbill": 536231884, + "support_perbill": 12690355, + "approval": 53.6231884, + "support": 1.2690355 + }, + { + "time_hours": 257, + "approval_perbill": 535682023, + "support_perbill": 12488143, + "approval": 53.5682023, + "support": 1.2488143 + }, + { + "time_hours": 258, + "approval_perbill": 535135135, + "support_perbill": 12287334, + "approval": 53.5135135, + "support": 1.2287334 + }, + { + "time_hours": 259, + "approval_perbill": 534591195, + "support_perbill": 12087911, + "approval": 53.4591195, + "support": 1.2087911 + }, + { + "time_hours": 260, + "approval_perbill": 534050179, + "support_perbill": 11889861, + "approval": 53.4050179, + "support": 1.1889861 + }, + { + "time_hours": 261, + "approval_perbill": 533512064, + "support_perbill": 11693170, + "approval": 53.3512064, + "support": 1.169317 + }, + { + "time_hours": 262, + "approval_perbill": 532976827, + "support_perbill": 11497824, + "approval": 53.2976827, + "support": 1.1497824 + }, + { + "time_hours": 263, + "approval_perbill": 532444444, + "support_perbill": 11303808, + "approval": 53.2444444, + "support": 1.1303808 + }, + { + "time_hours": 264, + "approval_perbill": 531914893, + "support_perbill": 11111110, + "approval": 53.1914893, + "support": 1.111111 + }, + { + "time_hours": 265, + "approval_perbill": 531388152, + "support_perbill": 10919716, + "approval": 53.1388152, + "support": 1.0919716 + }, + { + "time_hours": 266, + "approval_perbill": 530864197, + "support_perbill": 10729613, + "approval": 53.0864197, + "support": 1.0729613 + }, + { + "time_hours": 267, + "approval_perbill": 530343007, + "support_perbill": 10540787, + "approval": 53.0343007, + "support": 1.0540787 + }, + { + "time_hours": 268, + "approval_perbill": 529824561, + "support_perbill": 10353227, + "approval": 52.9824561, + "support": 1.0353227 + }, + { + "time_hours": 269, + "approval_perbill": 529308836, + "support_perbill": 10166919, + "approval": 52.9308836, + "support": 1.0166919 + }, + { + "time_hours": 270, + "approval_perbill": 528795811, + "support_perbill": 9981850, + "approval": 52.8795811, + "support": 0.998185 + }, + { + "time_hours": 271, + "approval_perbill": 528285465, + "support_perbill": 9798009, + "approval": 52.8285465, + "support": 0.9798009 + }, + { + "time_hours": 272, + "approval_perbill": 527777777, + "support_perbill": 9615384, + "approval": 52.7777777, + "support": 0.9615384 + }, + { + "time_hours": 273, + "approval_perbill": 527272727, + "support_perbill": 9433961, + "approval": 52.7272727, + "support": 0.9433961 + }, + { + "time_hours": 274, + "approval_perbill": 526770293, + "support_perbill": 9253730, + "approval": 52.6770293, + "support": 0.925373 + }, + { + "time_hours": 275, + "approval_perbill": 526270456, + "support_perbill": 9074679, + "approval": 52.6270456, + "support": 0.9074679 + }, + { + "time_hours": 276, + "approval_perbill": 525773195, + "support_perbill": 8896796, + "approval": 52.5773195, + "support": 0.8896796 + }, + { + "time_hours": 277, + "approval_perbill": 525278491, + "support_perbill": 8720070, + "approval": 52.5278491, + "support": 0.872007 + }, + { + "time_hours": 278, + "approval_perbill": 524786324, + "support_perbill": 8544489, + "approval": 52.4786324, + "support": 0.8544489 + }, + { + "time_hours": 279, + "approval_perbill": 524296675, + "support_perbill": 8370043, + "approval": 52.4296675, + "support": 0.8370043 + }, + { + "time_hours": 280, + "approval_perbill": 523809523, + "support_perbill": 8196720, + "approval": 52.3809523, + "support": 0.819672 + }, + { + "time_hours": 281, + "approval_perbill": 523324851, + "support_perbill": 8024510, + "approval": 52.3324851, + "support": 0.802451 + }, + { + "time_hours": 282, + "approval_perbill": 522842639, + "support_perbill": 7853402, + "approval": 52.2842639, + "support": 0.7853402 + }, + { + "time_hours": 283, + "approval_perbill": 522362869, + "support_perbill": 7683386, + "approval": 52.2362869, + "support": 0.7683386 + }, + { + "time_hours": 284, + "approval_perbill": 521885521, + "support_perbill": 7514450, + "approval": 52.1885521, + "support": 0.751445 + }, + { + "time_hours": 285, + "approval_perbill": 521410579, + "support_perbill": 7346585, + "approval": 52.1410579, + "support": 0.7346585 + }, + { + "time_hours": 286, + "approval_perbill": 520938023, + "support_perbill": 7179781, + "approval": 52.0938023, + "support": 0.7179781 + }, + { + "time_hours": 287, + "approval_perbill": 520467836, + "support_perbill": 7014027, + "approval": 52.0467836, + "support": 0.7014027 + }, + { + "time_hours": 288, + "approval_perbill": 519999999, + "support_perbill": 6849314, + "approval": 51.9999999, + "support": 0.6849314 + }, + { + "time_hours": 289, + "approval_perbill": 519534497, + "support_perbill": 6685632, + "approval": 51.9534497, + "support": 0.6685632 + }, + { + "time_hours": 290, + "approval_perbill": 519071310, + "support_perbill": 6522971, + "approval": 51.907131, + "support": 0.6522971 + }, + { + "time_hours": 291, + "approval_perbill": 518610421, + "support_perbill": 6361322, + "approval": 51.8610421, + "support": 0.6361322 + }, + { + "time_hours": 292, + "approval_perbill": 518151815, + "support_perbill": 6200676, + "approval": 51.8151815, + "support": 0.6200676 + }, + { + "time_hours": 293, + "approval_perbill": 517695473, + "support_perbill": 6041022, + "approval": 51.7695473, + "support": 0.6041022 + }, + { + "time_hours": 294, + "approval_perbill": 517241379, + "support_perbill": 5882352, + "approval": 51.7241379, + "support": 0.5882352 + }, + { + "time_hours": 295, + "approval_perbill": 516789516, + "support_perbill": 5724657, + "approval": 51.6789516, + "support": 0.5724657 + }, + { + "time_hours": 296, + "approval_perbill": 516339869, + "support_perbill": 5567928, + "approval": 51.6339869, + "support": 0.5567928 + }, + { + "time_hours": 297, + "approval_perbill": 515892420, + "support_perbill": 5412156, + "approval": 51.589242, + "support": 0.5412156 + }, + { + "time_hours": 298, + "approval_perbill": 515447154, + "support_perbill": 5257332, + "approval": 51.5447154, + "support": 0.5257332 + }, + { + "time_hours": 299, + "approval_perbill": 515004055, + "support_perbill": 5103447, + "approval": 51.5004055, + "support": 0.5103447 + }, + { + "time_hours": 300, + "approval_perbill": 514563106, + "support_perbill": 4950494, + "approval": 51.4563106, + "support": 0.4950494 + }, + { + "time_hours": 301, + "approval_perbill": 514124293, + "support_perbill": 4798464, + "approval": 51.4124293, + "support": 0.4798464 + }, + { + "time_hours": 302, + "approval_perbill": 513687600, + "support_perbill": 4647347, + "approval": 51.36876, + "support": 0.4647347 + }, + { + "time_hours": 303, + "approval_perbill": 513253011, + "support_perbill": 4497137, + "approval": 51.3253011, + "support": 0.4497137 + }, + { + "time_hours": 304, + "approval_perbill": 512820512, + "support_perbill": 4347825, + "approval": 51.2820512, + "support": 0.4347825 + }, + { + "time_hours": 305, + "approval_perbill": 512390087, + "support_perbill": 4199403, + "approval": 51.2390087, + "support": 0.4199403 + }, + { + "time_hours": 306, + "approval_perbill": 511961722, + "support_perbill": 4051863, + "approval": 51.1961722, + "support": 0.4051863 + }, + { + "time_hours": 307, + "approval_perbill": 511535401, + "support_perbill": 3905197, + "approval": 51.1535401, + "support": 0.3905197 + }, + { + "time_hours": 308, + "approval_perbill": 511111111, + "support_perbill": 3759398, + "approval": 51.1111111, + "support": 0.3759398 + }, + { + "time_hours": 309, + "approval_perbill": 510688835, + "support_perbill": 3614457, + "approval": 51.0688835, + "support": 0.3614457 + }, + { + "time_hours": 310, + "approval_perbill": 510268562, + "support_perbill": 3470368, + "approval": 51.0268562, + "support": 0.3470368 + }, + { + "time_hours": 311, + "approval_perbill": 509850275, + "support_perbill": 3327122, + "approval": 50.9850275, + "support": 0.3327122 + }, + { + "time_hours": 312, + "approval_perbill": 509433962, + "support_perbill": 3184712, + "approval": 50.9433962, + "support": 0.3184712 + }, + { + "time_hours": 313, + "approval_perbill": 509019607, + "support_perbill": 3043132, + "approval": 50.9019607, + "support": 0.3043132 + }, + { + "time_hours": 314, + "approval_perbill": 508607198, + "support_perbill": 2902374, + "approval": 50.8607198, + "support": 0.2902374 + }, + { + "time_hours": 315, + "approval_perbill": 508196721, + "support_perbill": 2762430, + "approval": 50.8196721, + "support": 0.276243 + }, + { + "time_hours": 316, + "approval_perbill": 507788161, + "support_perbill": 2623294, + "approval": 50.7788161, + "support": 0.2623294 + }, + { + "time_hours": 317, + "approval_perbill": 507381507, + "support_perbill": 2484959, + "approval": 50.7381507, + "support": 0.2484959 + }, + { + "time_hours": 318, + "approval_perbill": 506976744, + "support_perbill": 2347417, + "approval": 50.6976744, + "support": 0.2347417 + }, + { + "time_hours": 319, + "approval_perbill": 506573859, + "support_perbill": 2210662, + "approval": 50.6573859, + "support": 0.2210662 + }, + { + "time_hours": 320, + "approval_perbill": 506172839, + "support_perbill": 2074688, + "approval": 50.6172839, + "support": 0.2074688 + }, + { + "time_hours": 321, + "approval_perbill": 505773671, + "support_perbill": 1939487, + "approval": 50.5773671, + "support": 0.1939487 + }, + { + "time_hours": 322, + "approval_perbill": 505376343, + "support_perbill": 1805053, + "approval": 50.5376343, + "support": 0.1805053 + }, + { + "time_hours": 323, + "approval_perbill": 504980842, + "support_perbill": 1671380, + "approval": 50.4980842, + "support": 0.167138 + }, + { + "time_hours": 324, + "approval_perbill": 504587155, + "support_perbill": 1538461, + "approval": 50.4587155, + "support": 0.1538461 + }, + { + "time_hours": 325, + "approval_perbill": 504195270, + "support_perbill": 1406289, + "approval": 50.419527, + "support": 0.1406289 + }, + { + "time_hours": 326, + "approval_perbill": 503805174, + "support_perbill": 1274859, + "approval": 50.3805174, + "support": 0.1274859 + }, + { + "time_hours": 327, + "approval_perbill": 503416856, + "support_perbill": 1144164, + "approval": 50.3416856, + "support": 0.1144164 + }, + { + "time_hours": 328, + "approval_perbill": 503030302, + "support_perbill": 1014198, + "approval": 50.3030302, + "support": 0.1014198 + }, + { + "time_hours": 329, + "approval_perbill": 502645502, + "support_perbill": 884955, + "approval": 50.2645502, + "support": 0.0884955 + }, + { + "time_hours": 330, + "approval_perbill": 502262443, + "support_perbill": 756429, + "approval": 50.2262443, + "support": 0.0756429 + }, + { + "time_hours": 331, + "approval_perbill": 501881113, + "support_perbill": 628614, + "approval": 50.1881113, + "support": 0.0628614 + }, + { + "time_hours": 332, + "approval_perbill": 501501501, + "support_perbill": 501504, + "approval": 50.1501501, + "support": 0.0501504 + }, + { + "time_hours": 333, + "approval_perbill": 501123595, + "support_perbill": 375093, + "approval": 50.1123595, + "support": 0.0375093 + }, + { + "time_hours": 334, + "approval_perbill": 500747383, + "support_perbill": 249376, + "approval": 50.0747383, + "support": 0.0249376 + }, + { + "time_hours": 335, + "approval_perbill": 500372855, + "support_perbill": 124346, + "approval": 50.0372855, + "support": 0.0124346 + }, + { + "time_hours": 336, + "approval_perbill": 499999999, + "support_perbill": 0, + "approval": 49.9999999, + "support": 0 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/kusama/opengov_admin_lease.json b/components/utilities/charts_data/kusama/opengov_admin_lease.json new file mode 100644 index 000000000000..5f94d3d2fb75 --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_admin_lease.json @@ -0,0 +1,2361 @@ +[ + { + "Time (Hours)": 0, + "Approval (perbill)": 1000000000, + "Support (perbill)": 500000026, + "Approval": 100, + "Support": 50.0000026 + }, + { + "Time (Hours)": 1, + "Approval (perbill)": 997549020, + "Support (perbill)": 418401359, + "Approval": 99.754902, + "Support": 41.8401359 + }, + { + "Time (Hours)": 2, + "Approval (perbill)": 995098040, + "Support (perbill)": 359397443, + "Approval": 99.509804, + "Support": 35.9397443 + }, + { + "Time (Hours)": 3, + "Approval (perbill)": 992647060, + "Support (perbill)": 314744813, + "Approval": 99.264706, + "Support": 31.4744813 + }, + { + "Time (Hours)": 4, + "Approval (perbill)": 990196080, + "Support (perbill)": 279775293, + "Approval": 99.019608, + "Support": 27.9775293 + }, + { + "Time (Hours)": 5, + "Approval (perbill)": 987745099, + "Support (perbill)": 251647242, + "Approval": 98.7745099, + "Support": 25.1647242 + }, + { + "Time (Hours)": 6, + "Approval (perbill)": 985294119, + "Support (perbill)": 228531862, + "Approval": 98.5294119, + "Support": 22.8531862 + }, + { + "Time (Hours)": 7, + "Approval (perbill)": 982843138, + "Support (perbill)": 209198815, + "Approval": 98.2843138, + "Support": 20.9198815 + }, + { + "Time (Hours)": 8, + "Approval (perbill)": 980392158, + "Support (perbill)": 192789972, + "Approval": 98.0392158, + "Support": 19.2789972 + }, + { + "Time (Hours)": 9, + "Approval (perbill)": 977941177, + "Support (perbill)": 178688524, + "Approval": 97.7941177, + "Support": 17.8688524 + }, + { + "Time (Hours)": 10, + "Approval (perbill)": 975490197, + "Support (perbill)": 166439756, + "Approval": 97.5490197, + "Support": 16.6439756 + }, + { + "Time (Hours)": 11, + "Approval (perbill)": 973039216, + "Support (perbill)": 155701053, + "Approval": 97.3039216, + "Support": 15.5701053 + }, + { + "Time (Hours)": 12, + "Approval (perbill)": 970588236, + "Support (perbill)": 146209386, + "Approval": 97.0588236, + "Support": 14.6209386 + }, + { + "Time (Hours)": 13, + "Approval (perbill)": 968137256, + "Support (perbill)": 137759452, + "Approval": 96.8137256, + "Support": 13.7759452 + }, + { + "Time (Hours)": 14, + "Approval (perbill)": 965686276, + "Support (perbill)": 130188679, + "Approval": 96.5686276, + "Support": 13.0188679 + }, + { + "Time (Hours)": 15, + "Approval (perbill)": 963235295, + "Support (perbill)": 123366639, + "Approval": 96.3235295, + "Support": 12.3366639 + }, + { + "Time (Hours)": 16, + "Approval (perbill)": 960784315, + "Support (perbill)": 117187499, + "Approval": 96.0784315, + "Support": 11.7187499 + }, + { + "Time (Hours)": 17, + "Approval (perbill)": 958333334, + "Support (perbill)": 111564465, + "Approval": 95.8333334, + "Support": 11.1564465 + }, + { + "Time (Hours)": 18, + "Approval (perbill)": 955882354, + "Support (perbill)": 106425701, + "Approval": 95.5882354, + "Support": 10.6425701 + }, + { + "Time (Hours)": 19, + "Approval (perbill)": 953431373, + "Support (perbill)": 101711228, + "Approval": 95.3431373, + "Support": 10.1711228 + }, + { + "Time (Hours)": 20, + "Approval (perbill)": 950980393, + "Support (perbill)": 97370582, + "Approval": 95.0980393, + "Support": 9.7370582 + }, + { + "Time (Hours)": 21, + "Approval (perbill)": 948529412, + "Support (perbill)": 93360994, + "Approval": 94.8529412, + "Support": 9.3360994 + }, + { + "Time (Hours)": 22, + "Approval (perbill)": 946078432, + "Support (perbill)": 89645982, + "Approval": 94.6078432, + "Support": 8.9645982 + }, + { + "Time (Hours)": 23, + "Approval (perbill)": 943627452, + "Support (perbill)": 86194234, + "Approval": 94.3627452, + "Support": 8.6194234 + }, + { + "Time (Hours)": 24, + "Approval (perbill)": 941176471, + "Support (perbill)": 82978722, + "Approval": 94.1176471, + "Support": 8.2978722 + }, + { + "Time (Hours)": 25, + "Approval (perbill)": 938725491, + "Support (perbill)": 79975997, + "Approval": 93.8725491, + "Support": 7.9975997 + }, + { + "Time (Hours)": 26, + "Approval (perbill)": 936274511, + "Support (perbill)": 77165614, + "Approval": 93.6274511, + "Support": 7.7165614 + }, + { + "Time (Hours)": 27, + "Approval (perbill)": 933823531, + "Support (perbill)": 74529666, + "Approval": 93.3823531, + "Support": 7.4529666 + }, + { + "Time (Hours)": 28, + "Approval (perbill)": 931372550, + "Support (perbill)": 72052400, + "Approval": 93.137255, + "Support": 7.20524 + }, + { + "Time (Hours)": 29, + "Approval (perbill)": 928921570, + "Support (perbill)": 69719908, + "Approval": 92.892157, + "Support": 6.9719908 + }, + { + "Time (Hours)": 30, + "Approval (perbill)": 926470589, + "Support (perbill)": 67519857, + "Approval": 92.6470589, + "Support": 6.7519857 + }, + { + "Time (Hours)": 31, + "Approval (perbill)": 924019609, + "Support (perbill)": 65441280, + "Approval": 92.4019609, + "Support": 6.544128 + }, + { + "Time (Hours)": 32, + "Approval (perbill)": 921568628, + "Support (perbill)": 63474386, + "Approval": 92.1568628, + "Support": 6.3474386 + }, + { + "Time (Hours)": 33, + "Approval (perbill)": 919117648, + "Support (perbill)": 61610409, + "Approval": 91.9117648, + "Support": 6.1610409 + }, + { + "Time (Hours)": 34, + "Approval (perbill)": 916666667, + "Support (perbill)": 59841478, + "Approval": 91.6666667, + "Support": 5.9841478 + }, + { + "Time (Hours)": 35, + "Approval (perbill)": 914215687, + "Support (perbill)": 58160504, + "Approval": 91.4215687, + "Support": 5.8160504 + }, + { + "Time (Hours)": 36, + "Approval (perbill)": 911764706, + "Support (perbill)": 56561084, + "Approval": 91.1764706, + "Support": 5.6561084 + }, + { + "Time (Hours)": 37, + "Approval (perbill)": 909313726, + "Support (perbill)": 55037426, + "Approval": 90.9313726, + "Support": 5.5037426 + }, + { + "Time (Hours)": 38, + "Approval (perbill)": 906862746, + "Support (perbill)": 53584271, + "Approval": 90.6862746, + "Support": 5.3584271 + }, + { + "Time (Hours)": 39, + "Approval (perbill)": 904411766, + "Support (perbill)": 52196835, + "Approval": 90.4411766, + "Support": 5.2196835 + }, + { + "Time (Hours)": 40, + "Approval (perbill)": 901960785, + "Support (perbill)": 50870759, + "Approval": 90.1960785, + "Support": 5.0870759 + }, + { + "Time (Hours)": 41, + "Approval (perbill)": 899509805, + "Support (perbill)": 49602061, + "Approval": 89.9509805, + "Support": 4.9602061 + }, + { + "Time (Hours)": 42, + "Approval (perbill)": 897058824, + "Support (perbill)": 48387095, + "Approval": 89.7058824, + "Support": 4.8387095 + }, + { + "Time (Hours)": 43, + "Approval (perbill)": 894607844, + "Support (perbill)": 47222519, + "Approval": 89.4607844, + "Support": 4.7222519 + }, + { + "Time (Hours)": 44, + "Approval (perbill)": 892156864, + "Support (perbill)": 46105262, + "Approval": 89.2156864, + "Support": 4.6105262 + }, + { + "Time (Hours)": 45, + "Approval (perbill)": 889705883, + "Support (perbill)": 45032496, + "Approval": 88.9705883, + "Support": 4.5032496 + }, + { + "Time (Hours)": 46, + "Approval (perbill)": 887254903, + "Support (perbill)": 44001617, + "Approval": 88.7254903, + "Support": 4.4001617 + }, + { + "Time (Hours)": 47, + "Approval (perbill)": 884803922, + "Support (perbill)": 43010218, + "Approval": 88.4803922, + "Support": 4.3010218 + }, + { + "Time (Hours)": 48, + "Approval (perbill)": 882352942, + "Support (perbill)": 42056074, + "Approval": 88.2352942, + "Support": 4.2056074 + }, + { + "Time (Hours)": 49, + "Approval (perbill)": 879901962, + "Support (perbill)": 41137122, + "Approval": 87.9901962, + "Support": 4.1137122 + }, + { + "Time (Hours)": 50, + "Approval (perbill)": 877450982, + "Support (perbill)": 40251453, + "Approval": 87.7450982, + "Support": 4.0251453 + }, + { + "Time (Hours)": 51, + "Approval (perbill)": 875000001, + "Support (perbill)": 39397289, + "Approval": 87.5000001, + "Support": 3.9397289 + }, + { + "Time (Hours)": 52, + "Approval (perbill)": 872549021, + "Support (perbill)": 38572980, + "Approval": 87.2549021, + "Support": 3.857298 + }, + { + "Time (Hours)": 53, + "Approval (perbill)": 870098040, + "Support (perbill)": 37776985, + "Approval": 87.009804, + "Support": 3.7776985 + }, + { + "Time (Hours)": 54, + "Approval (perbill)": 867647060, + "Support (perbill)": 37007873, + "Approval": 86.764706, + "Support": 3.7007873 + }, + { + "Time (Hours)": 55, + "Approval (perbill)": 865196079, + "Support (perbill)": 36264302, + "Approval": 86.5196079, + "Support": 3.6264302 + }, + { + "Time (Hours)": 56, + "Approval (perbill)": 862745099, + "Support (perbill)": 35545023, + "Approval": 86.2745099, + "Support": 3.5545023 + }, + { + "Time (Hours)": 57, + "Approval (perbill)": 860294118, + "Support (perbill)": 34848862, + "Approval": 86.0294118, + "Support": 3.4848862 + }, + { + "Time (Hours)": 58, + "Approval (perbill)": 857843138, + "Support (perbill)": 34174724, + "Approval": 85.7843138, + "Support": 3.4174724 + }, + { + "Time (Hours)": 59, + "Approval (perbill)": 855392157, + "Support (perbill)": 33521580, + "Approval": 85.5392157, + "Support": 3.352158 + }, + { + "Time (Hours)": 60, + "Approval (perbill)": 852941177, + "Support (perbill)": 32888464, + "Approval": 85.2941177, + "Support": 3.2888464 + }, + { + "Time (Hours)": 61, + "Approval (perbill)": 850490197, + "Support (perbill)": 32274469, + "Approval": 85.0490197, + "Support": 3.2274469 + }, + { + "Time (Hours)": 62, + "Approval (perbill)": 848039217, + "Support (perbill)": 31678741, + "Approval": 84.8039217, + "Support": 3.1678741 + }, + { + "Time (Hours)": 63, + "Approval (perbill)": 845588236, + "Support (perbill)": 31100477, + "Approval": 84.5588236, + "Support": 3.1100477 + }, + { + "Time (Hours)": 64, + "Approval (perbill)": 843137256, + "Support (perbill)": 30538921, + "Approval": 84.3137256, + "Support": 3.0538921 + }, + { + "Time (Hours)": 65, + "Approval (perbill)": 840686276, + "Support (perbill)": 29993358, + "Approval": 84.0686276, + "Support": 2.9993358 + }, + { + "Time (Hours)": 66, + "Approval (perbill)": 838235295, + "Support (perbill)": 29463116, + "Approval": 83.8235295, + "Support": 2.9463116 + }, + { + "Time (Hours)": 67, + "Approval (perbill)": 835784315, + "Support (perbill)": 28947556, + "Approval": 83.5784315, + "Support": 2.8947556 + }, + { + "Time (Hours)": 68, + "Approval (perbill)": 833333334, + "Support (perbill)": 28446079, + "Approval": 83.3333334, + "Support": 2.8446079 + }, + { + "Time (Hours)": 69, + "Approval (perbill)": 830882354, + "Support (perbill)": 27958114, + "Approval": 83.0882354, + "Support": 2.7958114 + }, + { + "Time (Hours)": 70, + "Approval (perbill)": 828431373, + "Support (perbill)": 27483123, + "Approval": 82.8431373, + "Support": 2.7483123 + }, + { + "Time (Hours)": 71, + "Approval (perbill)": 825980393, + "Support (perbill)": 27020596, + "Approval": 82.5980393, + "Support": 2.7020596 + }, + { + "Time (Hours)": 72, + "Approval (perbill)": 823529412, + "Support (perbill)": 26570047, + "Approval": 82.3529412, + "Support": 2.6570047 + }, + { + "Time (Hours)": 73, + "Approval (perbill)": 821078432, + "Support (perbill)": 26131019, + "Approval": 82.1078432, + "Support": 2.6131019 + }, + { + "Time (Hours)": 74, + "Approval (perbill)": 818627452, + "Support (perbill)": 25703073, + "Approval": 81.8627452, + "Support": 2.5703073 + }, + { + "Time (Hours)": 75, + "Approval (perbill)": 816176472, + "Support (perbill)": 25285796, + "Approval": 81.6176472, + "Support": 2.5285796 + }, + { + "Time (Hours)": 76, + "Approval (perbill)": 813725491, + "Support (perbill)": 24878795, + "Approval": 81.3725491, + "Support": 2.4878795 + }, + { + "Time (Hours)": 77, + "Approval (perbill)": 811274511, + "Support (perbill)": 24481693, + "Approval": 81.1274511, + "Support": 2.4481693 + }, + { + "Time (Hours)": 78, + "Approval (perbill)": 808823530, + "Support (perbill)": 24094134, + "Approval": 80.882353, + "Support": 2.4094134 + }, + { + "Time (Hours)": 79, + "Approval (perbill)": 806372550, + "Support (perbill)": 23715779, + "Approval": 80.637255, + "Support": 2.3715779 + }, + { + "Time (Hours)": 80, + "Approval (perbill)": 803921569, + "Support (perbill)": 23346303, + "Approval": 80.3921569, + "Support": 2.3346303 + }, + { + "Time (Hours)": 81, + "Approval (perbill)": 801470589, + "Support (perbill)": 22985397, + "Approval": 80.1470589, + "Support": 2.2985397 + }, + { + "Time (Hours)": 82, + "Approval (perbill)": 799019608, + "Support (perbill)": 22632766, + "Approval": 79.9019608, + "Support": 2.2632766 + }, + { + "Time (Hours)": 83, + "Approval (perbill)": 796568628, + "Support (perbill)": 22288130, + "Approval": 79.6568628, + "Support": 2.228813 + }, + { + "Time (Hours)": 84, + "Approval (perbill)": 794117648, + "Support (perbill)": 21951219, + "Approval": 79.4117648, + "Support": 2.1951219 + }, + { + "Time (Hours)": 85, + "Approval (perbill)": 791666668, + "Support (perbill)": 21621776, + "Approval": 79.1666668, + "Support": 2.1621776 + }, + { + "Time (Hours)": 86, + "Approval (perbill)": 789215688, + "Support (perbill)": 21299556, + "Approval": 78.9215688, + "Support": 2.1299556 + }, + { + "Time (Hours)": 87, + "Approval (perbill)": 786764707, + "Support (perbill)": 20984324, + "Approval": 78.6764707, + "Support": 2.0984324 + }, + { + "Time (Hours)": 88, + "Approval (perbill)": 784313727, + "Support (perbill)": 20675855, + "Approval": 78.4313727, + "Support": 2.0675855 + }, + { + "Time (Hours)": 89, + "Approval (perbill)": 781862746, + "Support (perbill)": 20373934, + "Approval": 78.1862746, + "Support": 2.0373934 + }, + { + "Time (Hours)": 90, + "Approval (perbill)": 779411766, + "Support (perbill)": 20078354, + "Approval": 77.9411766, + "Support": 2.0078354 + }, + { + "Time (Hours)": 91, + "Approval (perbill)": 776960785, + "Support (perbill)": 19788917, + "Approval": 77.6960785, + "Support": 1.9788917 + }, + { + "Time (Hours)": 92, + "Approval (perbill)": 774509805, + "Support (perbill)": 19505435, + "Approval": 77.4509805, + "Support": 1.9505435 + }, + { + "Time (Hours)": 93, + "Approval (perbill)": 772058824, + "Support (perbill)": 19227725, + "Approval": 77.2058824, + "Support": 1.9227725 + }, + { + "Time (Hours)": 94, + "Approval (perbill)": 769607844, + "Support (perbill)": 18955613, + "Approval": 76.9607844, + "Support": 1.8955613 + }, + { + "Time (Hours)": 95, + "Approval (perbill)": 767156863, + "Support (perbill)": 18688931, + "Approval": 76.7156863, + "Support": 1.8688931 + }, + { + "Time (Hours)": 96, + "Approval (perbill)": 764705883, + "Support (perbill)": 18427518, + "Approval": 76.4705883, + "Support": 1.8427518 + }, + { + "Time (Hours)": 97, + "Approval (perbill)": 762254903, + "Support (perbill)": 18171219, + "Approval": 76.2254903, + "Support": 1.8171219 + }, + { + "Time (Hours)": 98, + "Approval (perbill)": 759803923, + "Support (perbill)": 17919887, + "Approval": 75.9803923, + "Support": 1.7919887 + }, + { + "Time (Hours)": 99, + "Approval (perbill)": 757352942, + "Support (perbill)": 17673377, + "Approval": 75.7352942, + "Support": 1.7673377 + }, + { + "Time (Hours)": 100, + "Approval (perbill)": 754901962, + "Support (perbill)": 17431553, + "Approval": 75.4901962, + "Support": 1.7431553 + }, + { + "Time (Hours)": 101, + "Approval (perbill)": 752450981, + "Support (perbill)": 17194282, + "Approval": 75.2450981, + "Support": 1.7194282 + }, + { + "Time (Hours)": 102, + "Approval (perbill)": 750000001, + "Support (perbill)": 16961437, + "Approval": 75.0000001, + "Support": 1.6961437 + }, + { + "Time (Hours)": 103, + "Approval (perbill)": 747549020, + "Support (perbill)": 16732895, + "Approval": 74.754902, + "Support": 1.6732895 + }, + { + "Time (Hours)": 104, + "Approval (perbill)": 745098040, + "Support (perbill)": 16508538, + "Approval": 74.509804, + "Support": 1.6508538 + }, + { + "Time (Hours)": 105, + "Approval (perbill)": 742647059, + "Support (perbill)": 16288252, + "Approval": 74.2647059, + "Support": 1.6288252 + }, + { + "Time (Hours)": 106, + "Approval (perbill)": 740196079, + "Support (perbill)": 16071927, + "Approval": 74.0196079, + "Support": 1.6071927 + }, + { + "Time (Hours)": 107, + "Approval (perbill)": 737745099, + "Support (perbill)": 15859457, + "Approval": 73.7745099, + "Support": 1.5859457 + }, + { + "Time (Hours)": 108, + "Approval (perbill)": 735294118, + "Support (perbill)": 15650741, + "Approval": 73.5294118, + "Support": 1.5650741 + }, + { + "Time (Hours)": 109, + "Approval (perbill)": 732843138, + "Support (perbill)": 15445679, + "Approval": 73.2843138, + "Support": 1.5445679 + }, + { + "Time (Hours)": 110, + "Approval (perbill)": 730392158, + "Support (perbill)": 15244176, + "Approval": 73.0392158, + "Support": 1.5244176 + }, + { + "Time (Hours)": 111, + "Approval (perbill)": 727941178, + "Support (perbill)": 15046141, + "Approval": 72.7941178, + "Support": 1.5046141 + }, + { + "Time (Hours)": 112, + "Approval (perbill)": 725490197, + "Support (perbill)": 14851485, + "Approval": 72.5490197, + "Support": 1.4851485 + }, + { + "Time (Hours)": 113, + "Approval (perbill)": 723039217, + "Support (perbill)": 14660121, + "Approval": 72.3039217, + "Support": 1.4660121 + }, + { + "Time (Hours)": 114, + "Approval (perbill)": 720588236, + "Support (perbill)": 14471968, + "Approval": 72.0588236, + "Support": 1.4471968 + }, + { + "Time (Hours)": 115, + "Approval (perbill)": 718137256, + "Support (perbill)": 14286945, + "Approval": 71.8137256, + "Support": 1.4286945 + }, + { + "Time (Hours)": 116, + "Approval (perbill)": 715686275, + "Support (perbill)": 14104975, + "Approval": 71.5686275, + "Support": 1.4104975 + }, + { + "Time (Hours)": 117, + "Approval (perbill)": 713235295, + "Support (perbill)": 13925982, + "Approval": 71.3235295, + "Support": 1.3925982 + }, + { + "Time (Hours)": 118, + "Approval (perbill)": 710784314, + "Support (perbill)": 13749894, + "Approval": 71.0784314, + "Support": 1.3749894 + }, + { + "Time (Hours)": 119, + "Approval (perbill)": 708333334, + "Support (perbill)": 13576642, + "Approval": 70.8333334, + "Support": 1.3576642 + }, + { + "Time (Hours)": 120, + "Approval (perbill)": 705882353, + "Support (perbill)": 13406156, + "Approval": 70.5882353, + "Support": 1.3406156 + }, + { + "Time (Hours)": 121, + "Approval (perbill)": 703431373, + "Support (perbill)": 13238372, + "Approval": 70.3431373, + "Support": 1.3238372 + }, + { + "Time (Hours)": 122, + "Approval (perbill)": 700980393, + "Support (perbill)": 13073226, + "Approval": 70.0980393, + "Support": 1.3073226 + }, + { + "Time (Hours)": 123, + "Approval (perbill)": 698529413, + "Support (perbill)": 12910655, + "Approval": 69.8529413, + "Support": 1.2910655 + }, + { + "Time (Hours)": 124, + "Approval (perbill)": 696078432, + "Support (perbill)": 12750601, + "Approval": 69.6078432, + "Support": 1.2750601 + }, + { + "Time (Hours)": 125, + "Approval (perbill)": 693627452, + "Support (perbill)": 12593005, + "Approval": 69.3627452, + "Support": 1.2593005 + }, + { + "Time (Hours)": 126, + "Approval (perbill)": 691176471, + "Support (perbill)": 12437810, + "Approval": 69.1176471, + "Support": 1.243781 + }, + { + "Time (Hours)": 127, + "Approval (perbill)": 688725491, + "Support (perbill)": 12284964, + "Approval": 68.8725491, + "Support": 1.2284964 + }, + { + "Time (Hours)": 128, + "Approval (perbill)": 686274511, + "Support (perbill)": 12134411, + "Approval": 68.6274511, + "Support": 1.2134411 + }, + { + "Time (Hours)": 129, + "Approval (perbill)": 683823530, + "Support (perbill)": 11986103, + "Approval": 68.382353, + "Support": 1.1986103 + }, + { + "Time (Hours)": 130, + "Approval (perbill)": 681372550, + "Support (perbill)": 11839987, + "Approval": 68.137255, + "Support": 1.1839987 + }, + { + "Time (Hours)": 131, + "Approval (perbill)": 678921569, + "Support (perbill)": 11696017, + "Approval": 67.8921569, + "Support": 1.1696017 + }, + { + "Time (Hours)": 132, + "Approval (perbill)": 676470589, + "Support (perbill)": 11554145, + "Approval": 67.6470589, + "Support": 1.1554145 + }, + { + "Time (Hours)": 133, + "Approval (perbill)": 674019609, + "Support (perbill)": 11414326, + "Approval": 67.4019609, + "Support": 1.1414326 + }, + { + "Time (Hours)": 134, + "Approval (perbill)": 671568629, + "Support (perbill)": 11276516, + "Approval": 67.1568629, + "Support": 1.1276516 + }, + { + "Time (Hours)": 135, + "Approval (perbill)": 669117648, + "Support (perbill)": 11140671, + "Approval": 66.9117648, + "Support": 1.1140671 + }, + { + "Time (Hours)": 136, + "Approval (perbill)": 666666668, + "Support (perbill)": 11006750, + "Approval": 66.6666668, + "Support": 1.100675 + }, + { + "Time (Hours)": 137, + "Approval (perbill)": 664215687, + "Support (perbill)": 10874713, + "Approval": 66.4215687, + "Support": 1.0874713 + }, + { + "Time (Hours)": 138, + "Approval (perbill)": 661764707, + "Support (perbill)": 10744519, + "Approval": 66.1764707, + "Support": 1.0744519 + }, + { + "Time (Hours)": 139, + "Approval (perbill)": 659313726, + "Support (perbill)": 10616130, + "Approval": 65.9313726, + "Support": 1.061613 + }, + { + "Time (Hours)": 140, + "Approval (perbill)": 656862746, + "Support (perbill)": 10489510, + "Approval": 65.6862746, + "Support": 1.048951 + }, + { + "Time (Hours)": 141, + "Approval (perbill)": 654411765, + "Support (perbill)": 10364622, + "Approval": 65.4411765, + "Support": 1.0364622 + }, + { + "Time (Hours)": 142, + "Approval (perbill)": 651960785, + "Support (perbill)": 10241430, + "Approval": 65.1960785, + "Support": 1.024143 + }, + { + "Time (Hours)": 143, + "Approval (perbill)": 649509804, + "Support (perbill)": 10119900, + "Approval": 64.9509804, + "Support": 1.01199 + }, + { + "Time (Hours)": 144, + "Approval (perbill)": 647058824, + "Support (perbill)": 10000000, + "Approval": 64.7058824, + "Support": 1 + }, + { + "Time (Hours)": 145, + "Approval (perbill)": 644607844, + "Support (perbill)": 9881695, + "Approval": 64.4607844, + "Support": 0.9881695 + }, + { + "Time (Hours)": 146, + "Approval (perbill)": 642156864, + "Support (perbill)": 9764955, + "Approval": 64.2156864, + "Support": 0.9764955 + }, + { + "Time (Hours)": 147, + "Approval (perbill)": 639705883, + "Support (perbill)": 9649749, + "Approval": 63.9705883, + "Support": 0.9649749 + }, + { + "Time (Hours)": 148, + "Approval (perbill)": 637254903, + "Support (perbill)": 9536047, + "Approval": 63.7254903, + "Support": 0.9536047 + }, + { + "Time (Hours)": 149, + "Approval (perbill)": 634803923, + "Support (perbill)": 9423820, + "Approval": 63.4803923, + "Support": 0.942382 + }, + { + "Time (Hours)": 150, + "Approval (perbill)": 632352942, + "Support (perbill)": 9313038, + "Approval": 63.2352942, + "Support": 0.9313038 + }, + { + "Time (Hours)": 151, + "Approval (perbill)": 629901962, + "Support (perbill)": 9203674, + "Approval": 62.9901962, + "Support": 0.9203674 + }, + { + "Time (Hours)": 152, + "Approval (perbill)": 627450981, + "Support (perbill)": 9095702, + "Approval": 62.7450981, + "Support": 0.9095702 + }, + { + "Time (Hours)": 153, + "Approval (perbill)": 625000001, + "Support (perbill)": 8989095, + "Approval": 62.5000001, + "Support": 0.8989095 + }, + { + "Time (Hours)": 154, + "Approval (perbill)": 622549020, + "Support (perbill)": 8883826, + "Approval": 62.254902, + "Support": 0.8883826 + }, + { + "Time (Hours)": 155, + "Approval (perbill)": 620098040, + "Support (perbill)": 8779872, + "Approval": 62.009804, + "Support": 0.8779872 + }, + { + "Time (Hours)": 156, + "Approval (perbill)": 617647059, + "Support (perbill)": 8677207, + "Approval": 61.7647059, + "Support": 0.8677207 + }, + { + "Time (Hours)": 157, + "Approval (perbill)": 615196079, + "Support (perbill)": 8575808, + "Approval": 61.5196079, + "Support": 0.8575808 + }, + { + "Time (Hours)": 158, + "Approval (perbill)": 612745099, + "Support (perbill)": 8475652, + "Approval": 61.2745099, + "Support": 0.8475652 + }, + { + "Time (Hours)": 159, + "Approval (perbill)": 610294119, + "Support (perbill)": 8376715, + "Approval": 61.0294119, + "Support": 0.8376715 + }, + { + "Time (Hours)": 160, + "Approval (perbill)": 607843138, + "Support (perbill)": 8278976, + "Approval": 60.7843138, + "Support": 0.8278976 + }, + { + "Time (Hours)": 161, + "Approval (perbill)": 605392158, + "Support (perbill)": 8182413, + "Approval": 60.5392158, + "Support": 0.8182413 + }, + { + "Time (Hours)": 162, + "Approval (perbill)": 602941177, + "Support (perbill)": 8087005, + "Approval": 60.2941177, + "Support": 0.8087005 + }, + { + "Time (Hours)": 163, + "Approval (perbill)": 600490197, + "Support (perbill)": 7992731, + "Approval": 60.0490197, + "Support": 0.7992731 + }, + { + "Time (Hours)": 164, + "Approval (perbill)": 598039216, + "Support (perbill)": 7899571, + "Approval": 59.8039216, + "Support": 0.7899571 + }, + { + "Time (Hours)": 165, + "Approval (perbill)": 595588236, + "Support (perbill)": 7807506, + "Approval": 59.5588236, + "Support": 0.7807506 + }, + { + "Time (Hours)": 166, + "Approval (perbill)": 593137255, + "Support (perbill)": 7716516, + "Approval": 59.3137255, + "Support": 0.7716516 + }, + { + "Time (Hours)": 167, + "Approval (perbill)": 590686275, + "Support (perbill)": 7626583, + "Approval": 59.0686275, + "Support": 0.7626583 + }, + { + "Time (Hours)": 168, + "Approval (perbill)": 588235295, + "Support (perbill)": 7537688, + "Approval": 58.8235295, + "Support": 0.7537688 + }, + { + "Time (Hours)": 169, + "Approval (perbill)": 585784315, + "Support (perbill)": 7449814, + "Approval": 58.5784315, + "Support": 0.7449814 + }, + { + "Time (Hours)": 170, + "Approval (perbill)": 583333335, + "Support (perbill)": 7362942, + "Approval": 58.3333335, + "Support": 0.7362942 + }, + { + "Time (Hours)": 171, + "Approval (perbill)": 580882354, + "Support (perbill)": 7277057, + "Approval": 58.0882354, + "Support": 0.7277057 + }, + { + "Time (Hours)": 172, + "Approval (perbill)": 578431374, + "Support (perbill)": 7192141, + "Approval": 57.8431374, + "Support": 0.7192141 + }, + { + "Time (Hours)": 173, + "Approval (perbill)": 575980393, + "Support (perbill)": 7108178, + "Approval": 57.5980393, + "Support": 0.7108178 + }, + { + "Time (Hours)": 174, + "Approval (perbill)": 573529413, + "Support (perbill)": 7025151, + "Approval": 57.3529413, + "Support": 0.7025151 + }, + { + "Time (Hours)": 175, + "Approval (perbill)": 571078432, + "Support (perbill)": 6943047, + "Approval": 57.1078432, + "Support": 0.6943047 + }, + { + "Time (Hours)": 176, + "Approval (perbill)": 568627452, + "Support (perbill)": 6861848, + "Approval": 56.8627452, + "Support": 0.6861848 + }, + { + "Time (Hours)": 177, + "Approval (perbill)": 566176471, + "Support (perbill)": 6781540, + "Approval": 56.6176471, + "Support": 0.678154 + }, + { + "Time (Hours)": 178, + "Approval (perbill)": 563725491, + "Support (perbill)": 6702109, + "Approval": 56.3725491, + "Support": 0.6702109 + }, + { + "Time (Hours)": 179, + "Approval (perbill)": 561274510, + "Support (perbill)": 6623541, + "Approval": 56.127451, + "Support": 0.6623541 + }, + { + "Time (Hours)": 180, + "Approval (perbill)": 558823530, + "Support (perbill)": 6545820, + "Approval": 55.882353, + "Support": 0.654582 + }, + { + "Time (Hours)": 181, + "Approval (perbill)": 556372550, + "Support (perbill)": 6468935, + "Approval": 55.637255, + "Support": 0.6468935 + }, + { + "Time (Hours)": 182, + "Approval (perbill)": 553921570, + "Support (perbill)": 6392871, + "Approval": 55.392157, + "Support": 0.6392871 + }, + { + "Time (Hours)": 183, + "Approval (perbill)": 551470589, + "Support (perbill)": 6317615, + "Approval": 55.1470589, + "Support": 0.6317615 + }, + { + "Time (Hours)": 184, + "Approval (perbill)": 549019609, + "Support (perbill)": 6243154, + "Approval": 54.9019609, + "Support": 0.6243154 + }, + { + "Time (Hours)": 185, + "Approval (perbill)": 546568628, + "Support (perbill)": 6169476, + "Approval": 54.6568628, + "Support": 0.6169476 + }, + { + "Time (Hours)": 186, + "Approval (perbill)": 544117648, + "Support (perbill)": 6096569, + "Approval": 54.4117648, + "Support": 0.6096569 + }, + { + "Time (Hours)": 187, + "Approval (perbill)": 541666667, + "Support (perbill)": 6024421, + "Approval": 54.1666667, + "Support": 0.6024421 + }, + { + "Time (Hours)": 188, + "Approval (perbill)": 539215687, + "Support (perbill)": 5953019, + "Approval": 53.9215687, + "Support": 0.5953019 + }, + { + "Time (Hours)": 189, + "Approval (perbill)": 536764706, + "Support (perbill)": 5882353, + "Approval": 53.6764706, + "Support": 0.5882353 + }, + { + "Time (Hours)": 190, + "Approval (perbill)": 534313726, + "Support (perbill)": 5812410, + "Approval": 53.4313726, + "Support": 0.581241 + }, + { + "Time (Hours)": 191, + "Approval (perbill)": 531862746, + "Support (perbill)": 5743181, + "Approval": 53.1862746, + "Support": 0.5743181 + }, + { + "Time (Hours)": 192, + "Approval (perbill)": 529411765, + "Support (perbill)": 5674653, + "Approval": 52.9411765, + "Support": 0.5674653 + }, + { + "Time (Hours)": 193, + "Approval (perbill)": 526960785, + "Support (perbill)": 5606817, + "Approval": 52.6960785, + "Support": 0.5606817 + }, + { + "Time (Hours)": 194, + "Approval (perbill)": 524509805, + "Support (perbill)": 5539662, + "Approval": 52.4509805, + "Support": 0.5539662 + }, + { + "Time (Hours)": 195, + "Approval (perbill)": 522058825, + "Support (perbill)": 5473177, + "Approval": 52.2058825, + "Support": 0.5473177 + }, + { + "Time (Hours)": 196, + "Approval (perbill)": 519607844, + "Support (perbill)": 5407354, + "Approval": 51.9607844, + "Support": 0.5407354 + }, + { + "Time (Hours)": 197, + "Approval (perbill)": 517156864, + "Support (perbill)": 5342181, + "Approval": 51.7156864, + "Support": 0.5342181 + }, + { + "Time (Hours)": 198, + "Approval (perbill)": 514705883, + "Support (perbill)": 5277650, + "Approval": 51.4705883, + "Support": 0.527765 + }, + { + "Time (Hours)": 199, + "Approval (perbill)": 512254903, + "Support (perbill)": 5213751, + "Approval": 51.2254903, + "Support": 0.5213751 + }, + { + "Time (Hours)": 200, + "Approval (perbill)": 509803922, + "Support (perbill)": 5150474, + "Approval": 50.9803922, + "Support": 0.5150474 + }, + { + "Time (Hours)": 201, + "Approval (perbill)": 507352942, + "Support (perbill)": 5087812, + "Approval": 50.7352942, + "Support": 0.5087812 + }, + { + "Time (Hours)": 202, + "Approval (perbill)": 504901961, + "Support (perbill)": 5025754, + "Approval": 50.4901961, + "Support": 0.5025754 + }, + { + "Time (Hours)": 203, + "Approval (perbill)": 502450981, + "Support (perbill)": 4964292, + "Approval": 50.2450981, + "Support": 0.4964292 + }, + { + "Time (Hours)": 204, + "Approval (perbill)": 500000000, + "Support (perbill)": 4903417, + "Approval": 50, + "Support": 0.4903417 + }, + { + "Time (Hours)": 205, + "Approval (perbill)": 500000000, + "Support (perbill)": 4843122, + "Approval": 50, + "Support": 0.4843122 + }, + { + "Time (Hours)": 206, + "Approval (perbill)": 500000000, + "Support (perbill)": 4783398, + "Approval": 50, + "Support": 0.4783398 + }, + { + "Time (Hours)": 207, + "Approval (perbill)": 500000000, + "Support (perbill)": 4724236, + "Approval": 50, + "Support": 0.4724236 + }, + { + "Time (Hours)": 208, + "Approval (perbill)": 500000000, + "Support (perbill)": 4665630, + "Approval": 50, + "Support": 0.466563 + }, + { + "Time (Hours)": 209, + "Approval (perbill)": 500000000, + "Support (perbill)": 4607570, + "Approval": 50, + "Support": 0.460757 + }, + { + "Time (Hours)": 210, + "Approval (perbill)": 500000000, + "Support (perbill)": 4550050, + "Approval": 50, + "Support": 0.455005 + }, + { + "Time (Hours)": 211, + "Approval (perbill)": 500000000, + "Support (perbill)": 4493062, + "Approval": 50, + "Support": 0.4493062 + }, + { + "Time (Hours)": 212, + "Approval (perbill)": 500000000, + "Support (perbill)": 4436599, + "Approval": 50, + "Support": 0.4436599 + }, + { + "Time (Hours)": 213, + "Approval (perbill)": 500000000, + "Support (perbill)": 4380654, + "Approval": 50, + "Support": 0.4380654 + }, + { + "Time (Hours)": 214, + "Approval (perbill)": 500000000, + "Support (perbill)": 4325218, + "Approval": 50, + "Support": 0.4325218 + }, + { + "Time (Hours)": 215, + "Approval (perbill)": 500000000, + "Support (perbill)": 4270287, + "Approval": 50, + "Support": 0.4270287 + }, + { + "Time (Hours)": 216, + "Approval (perbill)": 500000000, + "Support (perbill)": 4215851, + "Approval": 50, + "Support": 0.4215851 + }, + { + "Time (Hours)": 217, + "Approval (perbill)": 500000000, + "Support (perbill)": 4161906, + "Approval": 50, + "Support": 0.4161906 + }, + { + "Time (Hours)": 218, + "Approval (perbill)": 500000000, + "Support (perbill)": 4108444, + "Approval": 50, + "Support": 0.4108444 + }, + { + "Time (Hours)": 219, + "Approval (perbill)": 500000000, + "Support (perbill)": 4055459, + "Approval": 50, + "Support": 0.4055459 + }, + { + "Time (Hours)": 220, + "Approval (perbill)": 500000000, + "Support (perbill)": 4002944, + "Approval": 50, + "Support": 0.4002944 + }, + { + "Time (Hours)": 221, + "Approval (perbill)": 500000000, + "Support (perbill)": 3950894, + "Approval": 50, + "Support": 0.3950894 + }, + { + "Time (Hours)": 222, + "Approval (perbill)": 500000000, + "Support (perbill)": 3899302, + "Approval": 50, + "Support": 0.3899302 + }, + { + "Time (Hours)": 223, + "Approval (perbill)": 500000000, + "Support (perbill)": 3848162, + "Approval": 50, + "Support": 0.3848162 + }, + { + "Time (Hours)": 224, + "Approval (perbill)": 500000000, + "Support (perbill)": 3797468, + "Approval": 50, + "Support": 0.3797468 + }, + { + "Time (Hours)": 225, + "Approval (perbill)": 500000000, + "Support (perbill)": 3747215, + "Approval": 50, + "Support": 0.3747215 + }, + { + "Time (Hours)": 226, + "Approval (perbill)": 500000000, + "Support (perbill)": 3697396, + "Approval": 50, + "Support": 0.3697396 + }, + { + "Time (Hours)": 227, + "Approval (perbill)": 500000000, + "Support (perbill)": 3648006, + "Approval": 50, + "Support": 0.3648006 + }, + { + "Time (Hours)": 228, + "Approval (perbill)": 500000000, + "Support (perbill)": 3599040, + "Approval": 50, + "Support": 0.359904 + }, + { + "Time (Hours)": 229, + "Approval (perbill)": 500000000, + "Support (perbill)": 3550492, + "Approval": 50, + "Support": 0.3550492 + }, + { + "Time (Hours)": 230, + "Approval (perbill)": 500000000, + "Support (perbill)": 3502357, + "Approval": 50, + "Support": 0.3502357 + }, + { + "Time (Hours)": 231, + "Approval (perbill)": 500000000, + "Support (perbill)": 3454629, + "Approval": 50, + "Support": 0.3454629 + }, + { + "Time (Hours)": 232, + "Approval (perbill)": 500000000, + "Support (perbill)": 3407304, + "Approval": 50, + "Support": 0.3407304 + }, + { + "Time (Hours)": 233, + "Approval (perbill)": 500000000, + "Support (perbill)": 3360376, + "Approval": 50, + "Support": 0.3360376 + }, + { + "Time (Hours)": 234, + "Approval (perbill)": 500000000, + "Support (perbill)": 3313840, + "Approval": 50, + "Support": 0.331384 + }, + { + "Time (Hours)": 235, + "Approval (perbill)": 500000000, + "Support (perbill)": 3267692, + "Approval": 50, + "Support": 0.3267692 + }, + { + "Time (Hours)": 236, + "Approval (perbill)": 500000000, + "Support (perbill)": 3221926, + "Approval": 50, + "Support": 0.3221926 + }, + { + "Time (Hours)": 237, + "Approval (perbill)": 500000000, + "Support (perbill)": 3176538, + "Approval": 50, + "Support": 0.3176538 + }, + { + "Time (Hours)": 238, + "Approval (perbill)": 500000000, + "Support (perbill)": 3131524, + "Approval": 50, + "Support": 0.3131524 + }, + { + "Time (Hours)": 239, + "Approval (perbill)": 500000000, + "Support (perbill)": 3086878, + "Approval": 50, + "Support": 0.3086878 + }, + { + "Time (Hours)": 240, + "Approval (perbill)": 500000000, + "Support (perbill)": 3042596, + "Approval": 50, + "Support": 0.3042596 + }, + { + "Time (Hours)": 241, + "Approval (perbill)": 500000000, + "Support (perbill)": 2998674, + "Approval": 50, + "Support": 0.2998674 + }, + { + "Time (Hours)": 242, + "Approval (perbill)": 500000000, + "Support (perbill)": 2955107, + "Approval": 50, + "Support": 0.2955107 + }, + { + "Time (Hours)": 243, + "Approval (perbill)": 500000000, + "Support (perbill)": 2911892, + "Approval": 50, + "Support": 0.2911892 + }, + { + "Time (Hours)": 244, + "Approval (perbill)": 500000000, + "Support (perbill)": 2869023, + "Approval": 50, + "Support": 0.2869023 + }, + { + "Time (Hours)": 245, + "Approval (perbill)": 500000000, + "Support (perbill)": 2826496, + "Approval": 50, + "Support": 0.2826496 + }, + { + "Time (Hours)": 246, + "Approval (perbill)": 500000000, + "Support (perbill)": 2784309, + "Approval": 50, + "Support": 0.2784309 + }, + { + "Time (Hours)": 247, + "Approval (perbill)": 500000000, + "Support (perbill)": 2742455, + "Approval": 50, + "Support": 0.2742455 + }, + { + "Time (Hours)": 248, + "Approval (perbill)": 500000000, + "Support (perbill)": 2700933, + "Approval": 50, + "Support": 0.2700933 + }, + { + "Time (Hours)": 249, + "Approval (perbill)": 500000000, + "Support (perbill)": 2659737, + "Approval": 50, + "Support": 0.2659737 + }, + { + "Time (Hours)": 250, + "Approval (perbill)": 500000000, + "Support (perbill)": 2618864, + "Approval": 50, + "Support": 0.2618864 + }, + { + "Time (Hours)": 251, + "Approval (perbill)": 500000000, + "Support (perbill)": 2578310, + "Approval": 50, + "Support": 0.257831 + }, + { + "Time (Hours)": 252, + "Approval (perbill)": 500000000, + "Support (perbill)": 2538071, + "Approval": 50, + "Support": 0.2538071 + }, + { + "Time (Hours)": 253, + "Approval (perbill)": 500000000, + "Support (perbill)": 2498144, + "Approval": 50, + "Support": 0.2498144 + }, + { + "Time (Hours)": 254, + "Approval (perbill)": 500000000, + "Support (perbill)": 2458525, + "Approval": 50, + "Support": 0.2458525 + }, + { + "Time (Hours)": 255, + "Approval (perbill)": 500000000, + "Support (perbill)": 2419210, + "Approval": 50, + "Support": 0.241921 + }, + { + "Time (Hours)": 256, + "Approval (perbill)": 500000000, + "Support (perbill)": 2380197, + "Approval": 50, + "Support": 0.2380197 + }, + { + "Time (Hours)": 257, + "Approval (perbill)": 500000000, + "Support (perbill)": 2341481, + "Approval": 50, + "Support": 0.2341481 + }, + { + "Time (Hours)": 258, + "Approval (perbill)": 500000000, + "Support (perbill)": 2303059, + "Approval": 50, + "Support": 0.2303059 + }, + { + "Time (Hours)": 259, + "Approval (perbill)": 500000000, + "Support (perbill)": 2264928, + "Approval": 50, + "Support": 0.2264928 + }, + { + "Time (Hours)": 260, + "Approval (perbill)": 500000000, + "Support (perbill)": 2227084, + "Approval": 50, + "Support": 0.2227084 + }, + { + "Time (Hours)": 261, + "Approval (perbill)": 500000000, + "Support (perbill)": 2189525, + "Approval": 50, + "Support": 0.2189525 + }, + { + "Time (Hours)": 262, + "Approval (perbill)": 500000000, + "Support (perbill)": 2152247, + "Approval": 50, + "Support": 0.2152247 + }, + { + "Time (Hours)": 263, + "Approval (perbill)": 500000000, + "Support (perbill)": 2115247, + "Approval": 50, + "Support": 0.2115247 + }, + { + "Time (Hours)": 264, + "Approval (perbill)": 500000000, + "Support (perbill)": 2078522, + "Approval": 50, + "Support": 0.2078522 + }, + { + "Time (Hours)": 265, + "Approval (perbill)": 500000000, + "Support (perbill)": 2042068, + "Approval": 50, + "Support": 0.2042068 + }, + { + "Time (Hours)": 266, + "Approval (perbill)": 500000000, + "Support (perbill)": 2005884, + "Approval": 50, + "Support": 0.2005884 + }, + { + "Time (Hours)": 267, + "Approval (perbill)": 500000000, + "Support (perbill)": 1969965, + "Approval": 50, + "Support": 0.1969965 + }, + { + "Time (Hours)": 268, + "Approval (perbill)": 500000000, + "Support (perbill)": 1934309, + "Approval": 50, + "Support": 0.1934309 + }, + { + "Time (Hours)": 269, + "Approval (perbill)": 500000000, + "Support (perbill)": 1898913, + "Approval": 50, + "Support": 0.1898913 + }, + { + "Time (Hours)": 270, + "Approval (perbill)": 500000000, + "Support (perbill)": 1863775, + "Approval": 50, + "Support": 0.1863775 + }, + { + "Time (Hours)": 271, + "Approval (perbill)": 500000000, + "Support (perbill)": 1828891, + "Approval": 50, + "Support": 0.1828891 + }, + { + "Time (Hours)": 272, + "Approval (perbill)": 500000000, + "Support (perbill)": 1794258, + "Approval": 50, + "Support": 0.1794258 + }, + { + "Time (Hours)": 273, + "Approval (perbill)": 500000000, + "Support (perbill)": 1759875, + "Approval": 50, + "Support": 0.1759875 + }, + { + "Time (Hours)": 274, + "Approval (perbill)": 500000000, + "Support (perbill)": 1725737, + "Approval": 50, + "Support": 0.1725737 + }, + { + "Time (Hours)": 275, + "Approval (perbill)": 500000000, + "Support (perbill)": 1691844, + "Approval": 50, + "Support": 0.1691844 + }, + { + "Time (Hours)": 276, + "Approval (perbill)": 500000000, + "Support (perbill)": 1658191, + "Approval": 50, + "Support": 0.1658191 + }, + { + "Time (Hours)": 277, + "Approval (perbill)": 500000000, + "Support (perbill)": 1624777, + "Approval": 50, + "Support": 0.1624777 + }, + { + "Time (Hours)": 278, + "Approval (perbill)": 500000000, + "Support (perbill)": 1591599, + "Approval": 50, + "Support": 0.1591599 + }, + { + "Time (Hours)": 279, + "Approval (perbill)": 500000000, + "Support (perbill)": 1558654, + "Approval": 50, + "Support": 0.1558654 + }, + { + "Time (Hours)": 280, + "Approval (perbill)": 500000000, + "Support (perbill)": 1525941, + "Approval": 50, + "Support": 0.1525941 + }, + { + "Time (Hours)": 281, + "Approval (perbill)": 500000000, + "Support (perbill)": 1493456, + "Approval": 50, + "Support": 0.1493456 + }, + { + "Time (Hours)": 282, + "Approval (perbill)": 500000000, + "Support (perbill)": 1461197, + "Approval": 50, + "Support": 0.1461197 + }, + { + "Time (Hours)": 283, + "Approval (perbill)": 500000000, + "Support (perbill)": 1429162, + "Approval": 50, + "Support": 0.1429162 + }, + { + "Time (Hours)": 284, + "Approval (perbill)": 500000000, + "Support (perbill)": 1397348, + "Approval": 50, + "Support": 0.1397348 + }, + { + "Time (Hours)": 285, + "Approval (perbill)": 500000000, + "Support (perbill)": 1365754, + "Approval": 50, + "Support": 0.1365754 + }, + { + "Time (Hours)": 286, + "Approval (perbill)": 500000000, + "Support (perbill)": 1334377, + "Approval": 50, + "Support": 0.1334377 + }, + { + "Time (Hours)": 287, + "Approval (perbill)": 500000000, + "Support (perbill)": 1303214, + "Approval": 50, + "Support": 0.1303214 + }, + { + "Time (Hours)": 288, + "Approval (perbill)": 500000000, + "Support (perbill)": 1272264, + "Approval": 50, + "Support": 0.1272264 + }, + { + "Time (Hours)": 289, + "Approval (perbill)": 500000000, + "Support (perbill)": 1241525, + "Approval": 50, + "Support": 0.1241525 + }, + { + "Time (Hours)": 290, + "Approval (perbill)": 500000000, + "Support (perbill)": 1210994, + "Approval": 50, + "Support": 0.1210994 + }, + { + "Time (Hours)": 291, + "Approval (perbill)": 500000000, + "Support (perbill)": 1180668, + "Approval": 50, + "Support": 0.1180668 + }, + { + "Time (Hours)": 292, + "Approval (perbill)": 500000000, + "Support (perbill)": 1150547, + "Approval": 50, + "Support": 0.1150547 + }, + { + "Time (Hours)": 293, + "Approval (perbill)": 500000000, + "Support (perbill)": 1120628, + "Approval": 50, + "Support": 0.1120628 + }, + { + "Time (Hours)": 294, + "Approval (perbill)": 500000000, + "Support (perbill)": 1090909, + "Approval": 50, + "Support": 0.1090909 + }, + { + "Time (Hours)": 295, + "Approval (perbill)": 500000000, + "Support (perbill)": 1061388, + "Approval": 50, + "Support": 0.1061388 + }, + { + "Time (Hours)": 296, + "Approval (perbill)": 500000000, + "Support (perbill)": 1032063, + "Approval": 50, + "Support": 0.1032063 + }, + { + "Time (Hours)": 297, + "Approval (perbill)": 500000000, + "Support (perbill)": 1002932, + "Approval": 50, + "Support": 0.1002932 + }, + { + "Time (Hours)": 298, + "Approval (perbill)": 500000000, + "Support (perbill)": 973993, + "Approval": 50, + "Support": 0.0973993 + }, + { + "Time (Hours)": 299, + "Approval (perbill)": 500000000, + "Support (perbill)": 945244, + "Approval": 50, + "Support": 0.0945244 + }, + { + "Time (Hours)": 300, + "Approval (perbill)": 500000000, + "Support (perbill)": 916684, + "Approval": 50, + "Support": 0.0916684 + }, + { + "Time (Hours)": 301, + "Approval (perbill)": 500000000, + "Support (perbill)": 888310, + "Approval": 50, + "Support": 0.088831 + }, + { + "Time (Hours)": 302, + "Approval (perbill)": 500000000, + "Support (perbill)": 860121, + "Approval": 50, + "Support": 0.0860121 + }, + { + "Time (Hours)": 303, + "Approval (perbill)": 500000000, + "Support (perbill)": 832114, + "Approval": 50, + "Support": 0.0832114 + }, + { + "Time (Hours)": 304, + "Approval (perbill)": 500000000, + "Support (perbill)": 804289, + "Approval": 50, + "Support": 0.0804289 + }, + { + "Time (Hours)": 305, + "Approval (perbill)": 500000000, + "Support (perbill)": 776644, + "Approval": 50, + "Support": 0.0776644 + }, + { + "Time (Hours)": 306, + "Approval (perbill)": 500000000, + "Support (perbill)": 749176, + "Approval": 50, + "Support": 0.0749176 + }, + { + "Time (Hours)": 307, + "Approval (perbill)": 500000000, + "Support (perbill)": 721884, + "Approval": 50, + "Support": 0.0721884 + }, + { + "Time (Hours)": 308, + "Approval (perbill)": 500000000, + "Support (perbill)": 694766, + "Approval": 50, + "Support": 0.0694766 + }, + { + "Time (Hours)": 309, + "Approval (perbill)": 500000000, + "Support (perbill)": 667821, + "Approval": 50, + "Support": 0.0667821 + }, + { + "Time (Hours)": 310, + "Approval (perbill)": 500000000, + "Support (perbill)": 641047, + "Approval": 50, + "Support": 0.0641047 + }, + { + "Time (Hours)": 311, + "Approval (perbill)": 500000000, + "Support (perbill)": 614442, + "Approval": 50, + "Support": 0.0614442 + }, + { + "Time (Hours)": 312, + "Approval (perbill)": 500000000, + "Support (perbill)": 588005, + "Approval": 50, + "Support": 0.0588005 + }, + { + "Time (Hours)": 313, + "Approval (perbill)": 500000000, + "Support (perbill)": 561734, + "Approval": 50, + "Support": 0.0561734 + }, + { + "Time (Hours)": 314, + "Approval (perbill)": 500000000, + "Support (perbill)": 535627, + "Approval": 50, + "Support": 0.0535627 + }, + { + "Time (Hours)": 315, + "Approval (perbill)": 500000000, + "Support (perbill)": 509684, + "Approval": 50, + "Support": 0.0509684 + }, + { + "Time (Hours)": 316, + "Approval (perbill)": 500000000, + "Support (perbill)": 483902, + "Approval": 50, + "Support": 0.0483902 + }, + { + "Time (Hours)": 317, + "Approval (perbill)": 500000000, + "Support (perbill)": 458280, + "Approval": 50, + "Support": 0.045828 + }, + { + "Time (Hours)": 318, + "Approval (perbill)": 500000000, + "Support (perbill)": 432817, + "Approval": 50, + "Support": 0.0432817 + }, + { + "Time (Hours)": 319, + "Approval (perbill)": 500000000, + "Support (perbill)": 407511, + "Approval": 50, + "Support": 0.0407511 + }, + { + "Time (Hours)": 320, + "Approval (perbill)": 500000000, + "Support (perbill)": 382360, + "Approval": 50, + "Support": 0.038236 + }, + { + "Time (Hours)": 321, + "Approval (perbill)": 500000000, + "Support (perbill)": 357364, + "Approval": 50, + "Support": 0.0357364 + }, + { + "Time (Hours)": 322, + "Approval (perbill)": 500000000, + "Support (perbill)": 332520, + "Approval": 50, + "Support": 0.033252 + }, + { + "Time (Hours)": 323, + "Approval (perbill)": 500000000, + "Support (perbill)": 307828, + "Approval": 50, + "Support": 0.0307828 + }, + { + "Time (Hours)": 324, + "Approval (perbill)": 500000000, + "Support (perbill)": 283286, + "Approval": 50, + "Support": 0.0283286 + }, + { + "Time (Hours)": 325, + "Approval (perbill)": 500000000, + "Support (perbill)": 258892, + "Approval": 50, + "Support": 0.0258892 + }, + { + "Time (Hours)": 326, + "Approval (perbill)": 500000000, + "Support (perbill)": 234646, + "Approval": 50, + "Support": 0.0234646 + }, + { + "Time (Hours)": 327, + "Approval (perbill)": 500000000, + "Support (perbill)": 210546, + "Approval": 50, + "Support": 0.0210546 + }, + { + "Time (Hours)": 328, + "Approval (perbill)": 500000000, + "Support (perbill)": 186590, + "Approval": 50, + "Support": 0.018659 + }, + { + "Time (Hours)": 329, + "Approval (perbill)": 500000000, + "Support (perbill)": 162778, + "Approval": 50, + "Support": 0.0162778 + }, + { + "Time (Hours)": 330, + "Approval (perbill)": 500000000, + "Support (perbill)": 139108, + "Approval": 50, + "Support": 0.0139108 + }, + { + "Time (Hours)": 331, + "Approval (perbill)": 500000000, + "Support (perbill)": 115578, + "Approval": 50, + "Support": 0.0115578 + }, + { + "Time (Hours)": 332, + "Approval (perbill)": 500000000, + "Support (perbill)": 92188, + "Approval": 50, + "Support": 0.0092188 + }, + { + "Time (Hours)": 333, + "Approval (perbill)": 500000000, + "Support (perbill)": 68937, + "Approval": 50, + "Support": 0.0068937 + }, + { + "Time (Hours)": 334, + "Approval (perbill)": 500000000, + "Support (perbill)": 45822, + "Approval": 50, + "Support": 0.0045822 + }, + { + "Time (Hours)": 335, + "Approval (perbill)": 500000000, + "Support (perbill)": 22844, + "Approval": 50, + "Support": 0.0022844 + }, + { + "Time (Hours)": 336, + "Approval (perbill)": 500000000, + "Support (perbill)": 0, + "Approval": 50, + "Support": 0 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/kusama/opengov_admin_staking.json b/components/utilities/charts_data/kusama/opengov_admin_staking.json new file mode 100644 index 000000000000..9c589d040233 --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_admin_staking.json @@ -0,0 +1,2361 @@ +[ + { + "time_hours": 0, + "approval_perbill": 1000000000, + "support_perbill": 500000026, + "approval": 100, + "support": 50.0000026 + }, + { + "time_hours": 1, + "approval_perbill": 997549020, + "support_perbill": 418401359, + "approval": 99.754902, + "support": 41.8401359 + }, + { + "time_hours": 2, + "approval_perbill": 995098040, + "support_perbill": 359397443, + "approval": 99.509804, + "support": 35.9397443 + }, + { + "time_hours": 3, + "approval_perbill": 992647060, + "support_perbill": 314744813, + "approval": 99.264706, + "support": 31.4744813 + }, + { + "time_hours": 4, + "approval_perbill": 990196080, + "support_perbill": 279775293, + "approval": 99.019608, + "support": 27.9775293 + }, + { + "time_hours": 5, + "approval_perbill": 987745099, + "support_perbill": 251647242, + "approval": 98.7745099, + "support": 25.1647242 + }, + { + "time_hours": 6, + "approval_perbill": 985294119, + "support_perbill": 228531862, + "approval": 98.5294119, + "support": 22.8531862 + }, + { + "time_hours": 7, + "approval_perbill": 982843138, + "support_perbill": 209198815, + "approval": 98.2843138, + "support": 20.9198815 + }, + { + "time_hours": 8, + "approval_perbill": 980392158, + "support_perbill": 192789972, + "approval": 98.0392158, + "support": 19.2789972 + }, + { + "time_hours": 9, + "approval_perbill": 977941177, + "support_perbill": 178688524, + "approval": 97.7941177, + "support": 17.8688524 + }, + { + "time_hours": 10, + "approval_perbill": 975490197, + "support_perbill": 166439756, + "approval": 97.5490197, + "support": 16.6439756 + }, + { + "time_hours": 11, + "approval_perbill": 973039216, + "support_perbill": 155701053, + "approval": 97.3039216, + "support": 15.5701053 + }, + { + "time_hours": 12, + "approval_perbill": 970588236, + "support_perbill": 146209386, + "approval": 97.0588236, + "support": 14.6209386 + }, + { + "time_hours": 13, + "approval_perbill": 968137256, + "support_perbill": 137759452, + "approval": 96.8137256, + "support": 13.7759452 + }, + { + "time_hours": 14, + "approval_perbill": 965686276, + "support_perbill": 130188679, + "approval": 96.5686276, + "support": 13.0188679 + }, + { + "time_hours": 15, + "approval_perbill": 963235295, + "support_perbill": 123366639, + "approval": 96.3235295, + "support": 12.3366639 + }, + { + "time_hours": 16, + "approval_perbill": 960784315, + "support_perbill": 117187499, + "approval": 96.0784315, + "support": 11.7187499 + }, + { + "time_hours": 17, + "approval_perbill": 958333334, + "support_perbill": 111564465, + "approval": 95.8333334, + "support": 11.1564465 + }, + { + "time_hours": 18, + "approval_perbill": 955882354, + "support_perbill": 106425701, + "approval": 95.5882354, + "support": 10.6425701 + }, + { + "time_hours": 19, + "approval_perbill": 953431373, + "support_perbill": 101711228, + "approval": 95.3431373, + "support": 10.1711228 + }, + { + "time_hours": 20, + "approval_perbill": 950980393, + "support_perbill": 97370582, + "approval": 95.0980393, + "support": 9.7370582 + }, + { + "time_hours": 21, + "approval_perbill": 948529412, + "support_perbill": 93360994, + "approval": 94.8529412, + "support": 9.3360994 + }, + { + "time_hours": 22, + "approval_perbill": 946078432, + "support_perbill": 89645982, + "approval": 94.6078432, + "support": 8.9645982 + }, + { + "time_hours": 23, + "approval_perbill": 943627452, + "support_perbill": 86194234, + "approval": 94.3627452, + "support": 8.6194234 + }, + { + "time_hours": 24, + "approval_perbill": 941176471, + "support_perbill": 82978722, + "approval": 94.1176471, + "support": 8.2978722 + }, + { + "time_hours": 25, + "approval_perbill": 938725491, + "support_perbill": 79975997, + "approval": 93.8725491, + "support": 7.9975997 + }, + { + "time_hours": 26, + "approval_perbill": 936274511, + "support_perbill": 77165614, + "approval": 93.6274511, + "support": 7.7165614 + }, + { + "time_hours": 27, + "approval_perbill": 933823531, + "support_perbill": 74529666, + "approval": 93.3823531, + "support": 7.4529666 + }, + { + "time_hours": 28, + "approval_perbill": 931372550, + "support_perbill": 72052400, + "approval": 93.137255, + "support": 7.20524 + }, + { + "time_hours": 29, + "approval_perbill": 928921570, + "support_perbill": 69719908, + "approval": 92.892157, + "support": 6.9719908 + }, + { + "time_hours": 30, + "approval_perbill": 926470589, + "support_perbill": 67519857, + "approval": 92.6470589, + "support": 6.7519857 + }, + { + "time_hours": 31, + "approval_perbill": 924019609, + "support_perbill": 65441280, + "approval": 92.4019609, + "support": 6.544128 + }, + { + "time_hours": 32, + "approval_perbill": 921568628, + "support_perbill": 63474386, + "approval": 92.1568628, + "support": 6.3474386 + }, + { + "time_hours": 33, + "approval_perbill": 919117648, + "support_perbill": 61610409, + "approval": 91.9117648, + "support": 6.1610409 + }, + { + "time_hours": 34, + "approval_perbill": 916666667, + "support_perbill": 59841478, + "approval": 91.6666667, + "support": 5.9841478 + }, + { + "time_hours": 35, + "approval_perbill": 914215687, + "support_perbill": 58160504, + "approval": 91.4215687, + "support": 5.8160504 + }, + { + "time_hours": 36, + "approval_perbill": 911764706, + "support_perbill": 56561084, + "approval": 91.1764706, + "support": 5.6561084 + }, + { + "time_hours": 37, + "approval_perbill": 909313726, + "support_perbill": 55037426, + "approval": 90.9313726, + "support": 5.5037426 + }, + { + "time_hours": 38, + "approval_perbill": 906862746, + "support_perbill": 53584271, + "approval": 90.6862746, + "support": 5.3584271 + }, + { + "time_hours": 39, + "approval_perbill": 904411766, + "support_perbill": 52196835, + "approval": 90.4411766, + "support": 5.2196835 + }, + { + "time_hours": 40, + "approval_perbill": 901960785, + "support_perbill": 50870759, + "approval": 90.1960785, + "support": 5.0870759 + }, + { + "time_hours": 41, + "approval_perbill": 899509805, + "support_perbill": 49602061, + "approval": 89.9509805, + "support": 4.9602061 + }, + { + "time_hours": 42, + "approval_perbill": 897058824, + "support_perbill": 48387095, + "approval": 89.7058824, + "support": 4.8387095 + }, + { + "time_hours": 43, + "approval_perbill": 894607844, + "support_perbill": 47222519, + "approval": 89.4607844, + "support": 4.7222519 + }, + { + "time_hours": 44, + "approval_perbill": 892156864, + "support_perbill": 46105262, + "approval": 89.2156864, + "support": 4.6105262 + }, + { + "time_hours": 45, + "approval_perbill": 889705883, + "support_perbill": 45032496, + "approval": 88.9705883, + "support": 4.5032496 + }, + { + "time_hours": 46, + "approval_perbill": 887254903, + "support_perbill": 44001617, + "approval": 88.7254903, + "support": 4.4001617 + }, + { + "time_hours": 47, + "approval_perbill": 884803922, + "support_perbill": 43010218, + "approval": 88.4803922, + "support": 4.3010218 + }, + { + "time_hours": 48, + "approval_perbill": 882352942, + "support_perbill": 42056074, + "approval": 88.2352942, + "support": 4.2056074 + }, + { + "time_hours": 49, + "approval_perbill": 879901962, + "support_perbill": 41137122, + "approval": 87.9901962, + "support": 4.1137122 + }, + { + "time_hours": 50, + "approval_perbill": 877450982, + "support_perbill": 40251453, + "approval": 87.7450982, + "support": 4.0251453 + }, + { + "time_hours": 51, + "approval_perbill": 875000001, + "support_perbill": 39397289, + "approval": 87.5000001, + "support": 3.9397289 + }, + { + "time_hours": 52, + "approval_perbill": 872549021, + "support_perbill": 38572980, + "approval": 87.2549021, + "support": 3.857298 + }, + { + "time_hours": 53, + "approval_perbill": 870098040, + "support_perbill": 37776985, + "approval": 87.009804, + "support": 3.7776985 + }, + { + "time_hours": 54, + "approval_perbill": 867647060, + "support_perbill": 37007873, + "approval": 86.764706, + "support": 3.7007873 + }, + { + "time_hours": 55, + "approval_perbill": 865196079, + "support_perbill": 36264302, + "approval": 86.5196079, + "support": 3.6264302 + }, + { + "time_hours": 56, + "approval_perbill": 862745099, + "support_perbill": 35545023, + "approval": 86.2745099, + "support": 3.5545023 + }, + { + "time_hours": 57, + "approval_perbill": 860294118, + "support_perbill": 34848862, + "approval": 86.0294118, + "support": 3.4848862 + }, + { + "time_hours": 58, + "approval_perbill": 857843138, + "support_perbill": 34174724, + "approval": 85.7843138, + "support": 3.4174724 + }, + { + "time_hours": 59, + "approval_perbill": 855392157, + "support_perbill": 33521580, + "approval": 85.5392157, + "support": 3.352158 + }, + { + "time_hours": 60, + "approval_perbill": 852941177, + "support_perbill": 32888464, + "approval": 85.2941177, + "support": 3.2888464 + }, + { + "time_hours": 61, + "approval_perbill": 850490197, + "support_perbill": 32274469, + "approval": 85.0490197, + "support": 3.2274469 + }, + { + "time_hours": 62, + "approval_perbill": 848039217, + "support_perbill": 31678741, + "approval": 84.8039217, + "support": 3.1678741 + }, + { + "time_hours": 63, + "approval_perbill": 845588236, + "support_perbill": 31100477, + "approval": 84.5588236, + "support": 3.1100477 + }, + { + "time_hours": 64, + "approval_perbill": 843137256, + "support_perbill": 30538921, + "approval": 84.3137256, + "support": 3.0538921 + }, + { + "time_hours": 65, + "approval_perbill": 840686276, + "support_perbill": 29993358, + "approval": 84.0686276, + "support": 2.9993358 + }, + { + "time_hours": 66, + "approval_perbill": 838235295, + "support_perbill": 29463116, + "approval": 83.8235295, + "support": 2.9463116 + }, + { + "time_hours": 67, + "approval_perbill": 835784315, + "support_perbill": 28947556, + "approval": 83.5784315, + "support": 2.8947556 + }, + { + "time_hours": 68, + "approval_perbill": 833333334, + "support_perbill": 28446079, + "approval": 83.3333334, + "support": 2.8446079 + }, + { + "time_hours": 69, + "approval_perbill": 830882354, + "support_perbill": 27958114, + "approval": 83.0882354, + "support": 2.7958114 + }, + { + "time_hours": 70, + "approval_perbill": 828431373, + "support_perbill": 27483123, + "approval": 82.8431373, + "support": 2.7483123 + }, + { + "time_hours": 71, + "approval_perbill": 825980393, + "support_perbill": 27020596, + "approval": 82.5980393, + "support": 2.7020596 + }, + { + "time_hours": 72, + "approval_perbill": 823529412, + "support_perbill": 26570047, + "approval": 82.3529412, + "support": 2.6570047 + }, + { + "time_hours": 73, + "approval_perbill": 821078432, + "support_perbill": 26131019, + "approval": 82.1078432, + "support": 2.6131019 + }, + { + "time_hours": 74, + "approval_perbill": 818627452, + "support_perbill": 25703073, + "approval": 81.8627452, + "support": 2.5703073 + }, + { + "time_hours": 75, + "approval_perbill": 816176472, + "support_perbill": 25285796, + "approval": 81.6176472, + "support": 2.5285796 + }, + { + "time_hours": 76, + "approval_perbill": 813725491, + "support_perbill": 24878795, + "approval": 81.3725491, + "support": 2.4878795 + }, + { + "time_hours": 77, + "approval_perbill": 811274511, + "support_perbill": 24481693, + "approval": 81.1274511, + "support": 2.4481693 + }, + { + "time_hours": 78, + "approval_perbill": 808823530, + "support_perbill": 24094134, + "approval": 80.882353, + "support": 2.4094134 + }, + { + "time_hours": 79, + "approval_perbill": 806372550, + "support_perbill": 23715779, + "approval": 80.637255, + "support": 2.3715779 + }, + { + "time_hours": 80, + "approval_perbill": 803921569, + "support_perbill": 23346303, + "approval": 80.3921569, + "support": 2.3346303 + }, + { + "time_hours": 81, + "approval_perbill": 801470589, + "support_perbill": 22985397, + "approval": 80.1470589, + "support": 2.2985397 + }, + { + "time_hours": 82, + "approval_perbill": 799019608, + "support_perbill": 22632766, + "approval": 79.9019608, + "support": 2.2632766 + }, + { + "time_hours": 83, + "approval_perbill": 796568628, + "support_perbill": 22288130, + "approval": 79.6568628, + "support": 2.228813 + }, + { + "time_hours": 84, + "approval_perbill": 794117648, + "support_perbill": 21951219, + "approval": 79.4117648, + "support": 2.1951219 + }, + { + "time_hours": 85, + "approval_perbill": 791666668, + "support_perbill": 21621776, + "approval": 79.1666668, + "support": 2.1621776 + }, + { + "time_hours": 86, + "approval_perbill": 789215688, + "support_perbill": 21299556, + "approval": 78.9215688, + "support": 2.1299556 + }, + { + "time_hours": 87, + "approval_perbill": 786764707, + "support_perbill": 20984324, + "approval": 78.6764707, + "support": 2.0984324 + }, + { + "time_hours": 88, + "approval_perbill": 784313727, + "support_perbill": 20675855, + "approval": 78.4313727, + "support": 2.0675855 + }, + { + "time_hours": 89, + "approval_perbill": 781862746, + "support_perbill": 20373934, + "approval": 78.1862746, + "support": 2.0373934 + }, + { + "time_hours": 90, + "approval_perbill": 779411766, + "support_perbill": 20078354, + "approval": 77.9411766, + "support": 2.0078354 + }, + { + "time_hours": 91, + "approval_perbill": 776960785, + "support_perbill": 19788917, + "approval": 77.6960785, + "support": 1.9788917 + }, + { + "time_hours": 92, + "approval_perbill": 774509805, + "support_perbill": 19505435, + "approval": 77.4509805, + "support": 1.9505435 + }, + { + "time_hours": 93, + "approval_perbill": 772058824, + "support_perbill": 19227725, + "approval": 77.2058824, + "support": 1.9227725 + }, + { + "time_hours": 94, + "approval_perbill": 769607844, + "support_perbill": 18955613, + "approval": 76.9607844, + "support": 1.8955613 + }, + { + "time_hours": 95, + "approval_perbill": 767156863, + "support_perbill": 18688931, + "approval": 76.7156863, + "support": 1.8688931 + }, + { + "time_hours": 96, + "approval_perbill": 764705883, + "support_perbill": 18427518, + "approval": 76.4705883, + "support": 1.8427518 + }, + { + "time_hours": 97, + "approval_perbill": 762254903, + "support_perbill": 18171219, + "approval": 76.2254903, + "support": 1.8171219 + }, + { + "time_hours": 98, + "approval_perbill": 759803923, + "support_perbill": 17919887, + "approval": 75.9803923, + "support": 1.7919887 + }, + { + "time_hours": 99, + "approval_perbill": 757352942, + "support_perbill": 17673377, + "approval": 75.7352942, + "support": 1.7673377 + }, + { + "time_hours": 100, + "approval_perbill": 754901962, + "support_perbill": 17431553, + "approval": 75.4901962, + "support": 1.7431553 + }, + { + "time_hours": 101, + "approval_perbill": 752450981, + "support_perbill": 17194282, + "approval": 75.2450981, + "support": 1.7194282 + }, + { + "time_hours": 102, + "approval_perbill": 750000001, + "support_perbill": 16961437, + "approval": 75.0000001, + "support": 1.6961437 + }, + { + "time_hours": 103, + "approval_perbill": 747549020, + "support_perbill": 16732895, + "approval": 74.754902, + "support": 1.6732895 + }, + { + "time_hours": 104, + "approval_perbill": 745098040, + "support_perbill": 16508538, + "approval": 74.509804, + "support": 1.6508538 + }, + { + "time_hours": 105, + "approval_perbill": 742647059, + "support_perbill": 16288252, + "approval": 74.2647059, + "support": 1.6288252 + }, + { + "time_hours": 106, + "approval_perbill": 740196079, + "support_perbill": 16071927, + "approval": 74.0196079, + "support": 1.6071927 + }, + { + "time_hours": 107, + "approval_perbill": 737745099, + "support_perbill": 15859457, + "approval": 73.7745099, + "support": 1.5859457 + }, + { + "time_hours": 108, + "approval_perbill": 735294118, + "support_perbill": 15650741, + "approval": 73.5294118, + "support": 1.5650741 + }, + { + "time_hours": 109, + "approval_perbill": 732843138, + "support_perbill": 15445679, + "approval": 73.2843138, + "support": 1.5445679 + }, + { + "time_hours": 110, + "approval_perbill": 730392158, + "support_perbill": 15244176, + "approval": 73.0392158, + "support": 1.5244176 + }, + { + "time_hours": 111, + "approval_perbill": 727941178, + "support_perbill": 15046141, + "approval": 72.7941178, + "support": 1.5046141 + }, + { + "time_hours": 112, + "approval_perbill": 725490197, + "support_perbill": 14851485, + "approval": 72.5490197, + "support": 1.4851485 + }, + { + "time_hours": 113, + "approval_perbill": 723039217, + "support_perbill": 14660121, + "approval": 72.3039217, + "support": 1.4660121 + }, + { + "time_hours": 114, + "approval_perbill": 720588236, + "support_perbill": 14471968, + "approval": 72.0588236, + "support": 1.4471968 + }, + { + "time_hours": 115, + "approval_perbill": 718137256, + "support_perbill": 14286945, + "approval": 71.8137256, + "support": 1.4286945 + }, + { + "time_hours": 116, + "approval_perbill": 715686275, + "support_perbill": 14104975, + "approval": 71.5686275, + "support": 1.4104975 + }, + { + "time_hours": 117, + "approval_perbill": 713235295, + "support_perbill": 13925982, + "approval": 71.3235295, + "support": 1.3925982 + }, + { + "time_hours": 118, + "approval_perbill": 710784314, + "support_perbill": 13749894, + "approval": 71.0784314, + "support": 1.3749894 + }, + { + "time_hours": 119, + "approval_perbill": 708333334, + "support_perbill": 13576642, + "approval": 70.8333334, + "support": 1.3576642 + }, + { + "time_hours": 120, + "approval_perbill": 705882353, + "support_perbill": 13406156, + "approval": 70.5882353, + "support": 1.3406156 + }, + { + "time_hours": 121, + "approval_perbill": 703431373, + "support_perbill": 13238372, + "approval": 70.3431373, + "support": 1.3238372 + }, + { + "time_hours": 122, + "approval_perbill": 700980393, + "support_perbill": 13073226, + "approval": 70.0980393, + "support": 1.3073226 + }, + { + "time_hours": 123, + "approval_perbill": 698529413, + "support_perbill": 12910655, + "approval": 69.8529413, + "support": 1.2910655 + }, + { + "time_hours": 124, + "approval_perbill": 696078432, + "support_perbill": 12750601, + "approval": 69.6078432, + "support": 1.2750601 + }, + { + "time_hours": 125, + "approval_perbill": 693627452, + "support_perbill": 12593005, + "approval": 69.3627452, + "support": 1.2593005 + }, + { + "time_hours": 126, + "approval_perbill": 691176471, + "support_perbill": 12437810, + "approval": 69.1176471, + "support": 1.243781 + }, + { + "time_hours": 127, + "approval_perbill": 688725491, + "support_perbill": 12284964, + "approval": 68.8725491, + "support": 1.2284964 + }, + { + "time_hours": 128, + "approval_perbill": 686274511, + "support_perbill": 12134411, + "approval": 68.6274511, + "support": 1.2134411 + }, + { + "time_hours": 129, + "approval_perbill": 683823530, + "support_perbill": 11986103, + "approval": 68.382353, + "support": 1.1986103 + }, + { + "time_hours": 130, + "approval_perbill": 681372550, + "support_perbill": 11839987, + "approval": 68.137255, + "support": 1.1839987 + }, + { + "time_hours": 131, + "approval_perbill": 678921569, + "support_perbill": 11696017, + "approval": 67.8921569, + "support": 1.1696017 + }, + { + "time_hours": 132, + "approval_perbill": 676470589, + "support_perbill": 11554145, + "approval": 67.6470589, + "support": 1.1554145 + }, + { + "time_hours": 133, + "approval_perbill": 674019609, + "support_perbill": 11414326, + "approval": 67.4019609, + "support": 1.1414326 + }, + { + "time_hours": 134, + "approval_perbill": 671568629, + "support_perbill": 11276516, + "approval": 67.1568629, + "support": 1.1276516 + }, + { + "time_hours": 135, + "approval_perbill": 669117648, + "support_perbill": 11140671, + "approval": 66.9117648, + "support": 1.1140671 + }, + { + "time_hours": 136, + "approval_perbill": 666666668, + "support_perbill": 11006750, + "approval": 66.6666668, + "support": 1.100675 + }, + { + "time_hours": 137, + "approval_perbill": 664215687, + "support_perbill": 10874713, + "approval": 66.4215687, + "support": 1.0874713 + }, + { + "time_hours": 138, + "approval_perbill": 661764707, + "support_perbill": 10744519, + "approval": 66.1764707, + "support": 1.0744519 + }, + { + "time_hours": 139, + "approval_perbill": 659313726, + "support_perbill": 10616130, + "approval": 65.9313726, + "support": 1.061613 + }, + { + "time_hours": 140, + "approval_perbill": 656862746, + "support_perbill": 10489510, + "approval": 65.6862746, + "support": 1.048951 + }, + { + "time_hours": 141, + "approval_perbill": 654411765, + "support_perbill": 10364622, + "approval": 65.4411765, + "support": 1.0364622 + }, + { + "time_hours": 142, + "approval_perbill": 651960785, + "support_perbill": 10241430, + "approval": 65.1960785, + "support": 1.024143 + }, + { + "time_hours": 143, + "approval_perbill": 649509804, + "support_perbill": 10119900, + "approval": 64.9509804, + "support": 1.01199 + }, + { + "time_hours": 144, + "approval_perbill": 647058824, + "support_perbill": 10000000, + "approval": 64.7058824, + "support": 1 + }, + { + "time_hours": 145, + "approval_perbill": 644607844, + "support_perbill": 9881695, + "approval": 64.4607844, + "support": 0.9881695 + }, + { + "time_hours": 146, + "approval_perbill": 642156864, + "support_perbill": 9764955, + "approval": 64.2156864, + "support": 0.9764955 + }, + { + "time_hours": 147, + "approval_perbill": 639705883, + "support_perbill": 9649749, + "approval": 63.9705883, + "support": 0.9649749 + }, + { + "time_hours": 148, + "approval_perbill": 637254903, + "support_perbill": 9536047, + "approval": 63.7254903, + "support": 0.9536047 + }, + { + "time_hours": 149, + "approval_perbill": 634803923, + "support_perbill": 9423820, + "approval": 63.4803923, + "support": 0.942382 + }, + { + "time_hours": 150, + "approval_perbill": 632352942, + "support_perbill": 9313038, + "approval": 63.2352942, + "support": 0.9313038 + }, + { + "time_hours": 151, + "approval_perbill": 629901962, + "support_perbill": 9203674, + "approval": 62.9901962, + "support": 0.9203674 + }, + { + "time_hours": 152, + "approval_perbill": 627450981, + "support_perbill": 9095702, + "approval": 62.7450981, + "support": 0.9095702 + }, + { + "time_hours": 153, + "approval_perbill": 625000001, + "support_perbill": 8989095, + "approval": 62.5000001, + "support": 0.8989095 + }, + { + "time_hours": 154, + "approval_perbill": 622549020, + "support_perbill": 8883826, + "approval": 62.254902, + "support": 0.8883826 + }, + { + "time_hours": 155, + "approval_perbill": 620098040, + "support_perbill": 8779872, + "approval": 62.009804, + "support": 0.8779872 + }, + { + "time_hours": 156, + "approval_perbill": 617647059, + "support_perbill": 8677207, + "approval": 61.7647059, + "support": 0.8677207 + }, + { + "time_hours": 157, + "approval_perbill": 615196079, + "support_perbill": 8575808, + "approval": 61.5196079, + "support": 0.8575808 + }, + { + "time_hours": 158, + "approval_perbill": 612745099, + "support_perbill": 8475652, + "approval": 61.2745099, + "support": 0.8475652 + }, + { + "time_hours": 159, + "approval_perbill": 610294119, + "support_perbill": 8376715, + "approval": 61.0294119, + "support": 0.8376715 + }, + { + "time_hours": 160, + "approval_perbill": 607843138, + "support_perbill": 8278976, + "approval": 60.7843138, + "support": 0.8278976 + }, + { + "time_hours": 161, + "approval_perbill": 605392158, + "support_perbill": 8182413, + "approval": 60.5392158, + "support": 0.8182413 + }, + { + "time_hours": 162, + "approval_perbill": 602941177, + "support_perbill": 8087005, + "approval": 60.2941177, + "support": 0.8087005 + }, + { + "time_hours": 163, + "approval_perbill": 600490197, + "support_perbill": 7992731, + "approval": 60.0490197, + "support": 0.7992731 + }, + { + "time_hours": 164, + "approval_perbill": 598039216, + "support_perbill": 7899571, + "approval": 59.8039216, + "support": 0.7899571 + }, + { + "time_hours": 165, + "approval_perbill": 595588236, + "support_perbill": 7807506, + "approval": 59.5588236, + "support": 0.7807506 + }, + { + "time_hours": 166, + "approval_perbill": 593137255, + "support_perbill": 7716516, + "approval": 59.3137255, + "support": 0.7716516 + }, + { + "time_hours": 167, + "approval_perbill": 590686275, + "support_perbill": 7626583, + "approval": 59.0686275, + "support": 0.7626583 + }, + { + "time_hours": 168, + "approval_perbill": 588235295, + "support_perbill": 7537688, + "approval": 58.8235295, + "support": 0.7537688 + }, + { + "time_hours": 169, + "approval_perbill": 585784315, + "support_perbill": 7449814, + "approval": 58.5784315, + "support": 0.7449814 + }, + { + "time_hours": 170, + "approval_perbill": 583333335, + "support_perbill": 7362942, + "approval": 58.3333335, + "support": 0.7362942 + }, + { + "time_hours": 171, + "approval_perbill": 580882354, + "support_perbill": 7277057, + "approval": 58.0882354, + "support": 0.7277057 + }, + { + "time_hours": 172, + "approval_perbill": 578431374, + "support_perbill": 7192141, + "approval": 57.8431374, + "support": 0.7192141 + }, + { + "time_hours": 173, + "approval_perbill": 575980393, + "support_perbill": 7108178, + "approval": 57.5980393, + "support": 0.7108178 + }, + { + "time_hours": 174, + "approval_perbill": 573529413, + "support_perbill": 7025151, + "approval": 57.3529413, + "support": 0.7025151 + }, + { + "time_hours": 175, + "approval_perbill": 571078432, + "support_perbill": 6943047, + "approval": 57.1078432, + "support": 0.6943047 + }, + { + "time_hours": 176, + "approval_perbill": 568627452, + "support_perbill": 6861848, + "approval": 56.8627452, + "support": 0.6861848 + }, + { + "time_hours": 177, + "approval_perbill": 566176471, + "support_perbill": 6781540, + "approval": 56.6176471, + "support": 0.678154 + }, + { + "time_hours": 178, + "approval_perbill": 563725491, + "support_perbill": 6702109, + "approval": 56.3725491, + "support": 0.6702109 + }, + { + "time_hours": 179, + "approval_perbill": 561274510, + "support_perbill": 6623541, + "approval": 56.127451, + "support": 0.6623541 + }, + { + "time_hours": 180, + "approval_perbill": 558823530, + "support_perbill": 6545820, + "approval": 55.882353, + "support": 0.654582 + }, + { + "time_hours": 181, + "approval_perbill": 556372550, + "support_perbill": 6468935, + "approval": 55.637255, + "support": 0.6468935 + }, + { + "time_hours": 182, + "approval_perbill": 553921570, + "support_perbill": 6392871, + "approval": 55.392157, + "support": 0.6392871 + }, + { + "time_hours": 183, + "approval_perbill": 551470589, + "support_perbill": 6317615, + "approval": 55.1470589, + "support": 0.6317615 + }, + { + "time_hours": 184, + "approval_perbill": 549019609, + "support_perbill": 6243154, + "approval": 54.9019609, + "support": 0.6243154 + }, + { + "time_hours": 185, + "approval_perbill": 546568628, + "support_perbill": 6169476, + "approval": 54.6568628, + "support": 0.6169476 + }, + { + "time_hours": 186, + "approval_perbill": 544117648, + "support_perbill": 6096569, + "approval": 54.4117648, + "support": 0.6096569 + }, + { + "time_hours": 187, + "approval_perbill": 541666667, + "support_perbill": 6024421, + "approval": 54.1666667, + "support": 0.6024421 + }, + { + "time_hours": 188, + "approval_perbill": 539215687, + "support_perbill": 5953019, + "approval": 53.9215687, + "support": 0.5953019 + }, + { + "time_hours": 189, + "approval_perbill": 536764706, + "support_perbill": 5882353, + "approval": 53.6764706, + "support": 0.5882353 + }, + { + "time_hours": 190, + "approval_perbill": 534313726, + "support_perbill": 5812410, + "approval": 53.4313726, + "support": 0.581241 + }, + { + "time_hours": 191, + "approval_perbill": 531862746, + "support_perbill": 5743181, + "approval": 53.1862746, + "support": 0.5743181 + }, + { + "time_hours": 192, + "approval_perbill": 529411765, + "support_perbill": 5674653, + "approval": 52.9411765, + "support": 0.5674653 + }, + { + "time_hours": 193, + "approval_perbill": 526960785, + "support_perbill": 5606817, + "approval": 52.6960785, + "support": 0.5606817 + }, + { + "time_hours": 194, + "approval_perbill": 524509805, + "support_perbill": 5539662, + "approval": 52.4509805, + "support": 0.5539662 + }, + { + "time_hours": 195, + "approval_perbill": 522058825, + "support_perbill": 5473177, + "approval": 52.2058825, + "support": 0.5473177 + }, + { + "time_hours": 196, + "approval_perbill": 519607844, + "support_perbill": 5407354, + "approval": 51.9607844, + "support": 0.5407354 + }, + { + "time_hours": 197, + "approval_perbill": 517156864, + "support_perbill": 5342181, + "approval": 51.7156864, + "support": 0.5342181 + }, + { + "time_hours": 198, + "approval_perbill": 514705883, + "support_perbill": 5277650, + "approval": 51.4705883, + "support": 0.527765 + }, + { + "time_hours": 199, + "approval_perbill": 512254903, + "support_perbill": 5213751, + "approval": 51.2254903, + "support": 0.5213751 + }, + { + "time_hours": 200, + "approval_perbill": 509803922, + "support_perbill": 5150474, + "approval": 50.9803922, + "support": 0.5150474 + }, + { + "time_hours": 201, + "approval_perbill": 507352942, + "support_perbill": 5087812, + "approval": 50.7352942, + "support": 0.5087812 + }, + { + "time_hours": 202, + "approval_perbill": 504901961, + "support_perbill": 5025754, + "approval": 50.4901961, + "support": 0.5025754 + }, + { + "time_hours": 203, + "approval_perbill": 502450981, + "support_perbill": 4964292, + "approval": 50.2450981, + "support": 0.4964292 + }, + { + "time_hours": 204, + "approval_perbill": 500000000, + "support_perbill": 4903417, + "approval": 50, + "support": 0.4903417 + }, + { + "time_hours": 205, + "approval_perbill": 500000000, + "support_perbill": 4843122, + "approval": 50, + "support": 0.4843122 + }, + { + "time_hours": 206, + "approval_perbill": 500000000, + "support_perbill": 4783398, + "approval": 50, + "support": 0.4783398 + }, + { + "time_hours": 207, + "approval_perbill": 500000000, + "support_perbill": 4724236, + "approval": 50, + "support": 0.4724236 + }, + { + "time_hours": 208, + "approval_perbill": 500000000, + "support_perbill": 4665630, + "approval": 50, + "support": 0.466563 + }, + { + "time_hours": 209, + "approval_perbill": 500000000, + "support_perbill": 4607570, + "approval": 50, + "support": 0.460757 + }, + { + "time_hours": 210, + "approval_perbill": 500000000, + "support_perbill": 4550050, + "approval": 50, + "support": 0.455005 + }, + { + "time_hours": 211, + "approval_perbill": 500000000, + "support_perbill": 4493062, + "approval": 50, + "support": 0.4493062 + }, + { + "time_hours": 212, + "approval_perbill": 500000000, + "support_perbill": 4436599, + "approval": 50, + "support": 0.4436599 + }, + { + "time_hours": 213, + "approval_perbill": 500000000, + "support_perbill": 4380654, + "approval": 50, + "support": 0.4380654 + }, + { + "time_hours": 214, + "approval_perbill": 500000000, + "support_perbill": 4325218, + "approval": 50, + "support": 0.4325218 + }, + { + "time_hours": 215, + "approval_perbill": 500000000, + "support_perbill": 4270287, + "approval": 50, + "support": 0.4270287 + }, + { + "time_hours": 216, + "approval_perbill": 500000000, + "support_perbill": 4215851, + "approval": 50, + "support": 0.4215851 + }, + { + "time_hours": 217, + "approval_perbill": 500000000, + "support_perbill": 4161906, + "approval": 50, + "support": 0.4161906 + }, + { + "time_hours": 218, + "approval_perbill": 500000000, + "support_perbill": 4108444, + "approval": 50, + "support": 0.4108444 + }, + { + "time_hours": 219, + "approval_perbill": 500000000, + "support_perbill": 4055459, + "approval": 50, + "support": 0.4055459 + }, + { + "time_hours": 220, + "approval_perbill": 500000000, + "support_perbill": 4002944, + "approval": 50, + "support": 0.4002944 + }, + { + "time_hours": 221, + "approval_perbill": 500000000, + "support_perbill": 3950894, + "approval": 50, + "support": 0.3950894 + }, + { + "time_hours": 222, + "approval_perbill": 500000000, + "support_perbill": 3899302, + "approval": 50, + "support": 0.3899302 + }, + { + "time_hours": 223, + "approval_perbill": 500000000, + "support_perbill": 3848162, + "approval": 50, + "support": 0.3848162 + }, + { + "time_hours": 224, + "approval_perbill": 500000000, + "support_perbill": 3797468, + "approval": 50, + "support": 0.3797468 + }, + { + "time_hours": 225, + "approval_perbill": 500000000, + "support_perbill": 3747215, + "approval": 50, + "support": 0.3747215 + }, + { + "time_hours": 226, + "approval_perbill": 500000000, + "support_perbill": 3697396, + "approval": 50, + "support": 0.3697396 + }, + { + "time_hours": 227, + "approval_perbill": 500000000, + "support_perbill": 3648006, + "approval": 50, + "support": 0.3648006 + }, + { + "time_hours": 228, + "approval_perbill": 500000000, + "support_perbill": 3599040, + "approval": 50, + "support": 0.359904 + }, + { + "time_hours": 229, + "approval_perbill": 500000000, + "support_perbill": 3550492, + "approval": 50, + "support": 0.3550492 + }, + { + "time_hours": 230, + "approval_perbill": 500000000, + "support_perbill": 3502357, + "approval": 50, + "support": 0.3502357 + }, + { + "time_hours": 231, + "approval_perbill": 500000000, + "support_perbill": 3454629, + "approval": 50, + "support": 0.3454629 + }, + { + "time_hours": 232, + "approval_perbill": 500000000, + "support_perbill": 3407304, + "approval": 50, + "support": 0.3407304 + }, + { + "time_hours": 233, + "approval_perbill": 500000000, + "support_perbill": 3360376, + "approval": 50, + "support": 0.3360376 + }, + { + "time_hours": 234, + "approval_perbill": 500000000, + "support_perbill": 3313840, + "approval": 50, + "support": 0.331384 + }, + { + "time_hours": 235, + "approval_perbill": 500000000, + "support_perbill": 3267692, + "approval": 50, + "support": 0.3267692 + }, + { + "time_hours": 236, + "approval_perbill": 500000000, + "support_perbill": 3221926, + "approval": 50, + "support": 0.3221926 + }, + { + "time_hours": 237, + "approval_perbill": 500000000, + "support_perbill": 3176538, + "approval": 50, + "support": 0.3176538 + }, + { + "time_hours": 238, + "approval_perbill": 500000000, + "support_perbill": 3131524, + "approval": 50, + "support": 0.3131524 + }, + { + "time_hours": 239, + "approval_perbill": 500000000, + "support_perbill": 3086878, + "approval": 50, + "support": 0.3086878 + }, + { + "time_hours": 240, + "approval_perbill": 500000000, + "support_perbill": 3042596, + "approval": 50, + "support": 0.3042596 + }, + { + "time_hours": 241, + "approval_perbill": 500000000, + "support_perbill": 2998674, + "approval": 50, + "support": 0.2998674 + }, + { + "time_hours": 242, + "approval_perbill": 500000000, + "support_perbill": 2955107, + "approval": 50, + "support": 0.2955107 + }, + { + "time_hours": 243, + "approval_perbill": 500000000, + "support_perbill": 2911892, + "approval": 50, + "support": 0.2911892 + }, + { + "time_hours": 244, + "approval_perbill": 500000000, + "support_perbill": 2869023, + "approval": 50, + "support": 0.2869023 + }, + { + "time_hours": 245, + "approval_perbill": 500000000, + "support_perbill": 2826496, + "approval": 50, + "support": 0.2826496 + }, + { + "time_hours": 246, + "approval_perbill": 500000000, + "support_perbill": 2784309, + "approval": 50, + "support": 0.2784309 + }, + { + "time_hours": 247, + "approval_perbill": 500000000, + "support_perbill": 2742455, + "approval": 50, + "support": 0.2742455 + }, + { + "time_hours": 248, + "approval_perbill": 500000000, + "support_perbill": 2700933, + "approval": 50, + "support": 0.2700933 + }, + { + "time_hours": 249, + "approval_perbill": 500000000, + "support_perbill": 2659737, + "approval": 50, + "support": 0.2659737 + }, + { + "time_hours": 250, + "approval_perbill": 500000000, + "support_perbill": 2618864, + "approval": 50, + "support": 0.2618864 + }, + { + "time_hours": 251, + "approval_perbill": 500000000, + "support_perbill": 2578310, + "approval": 50, + "support": 0.257831 + }, + { + "time_hours": 252, + "approval_perbill": 500000000, + "support_perbill": 2538071, + "approval": 50, + "support": 0.2538071 + }, + { + "time_hours": 253, + "approval_perbill": 500000000, + "support_perbill": 2498144, + "approval": 50, + "support": 0.2498144 + }, + { + "time_hours": 254, + "approval_perbill": 500000000, + "support_perbill": 2458525, + "approval": 50, + "support": 0.2458525 + }, + { + "time_hours": 255, + "approval_perbill": 500000000, + "support_perbill": 2419210, + "approval": 50, + "support": 0.241921 + }, + { + "time_hours": 256, + "approval_perbill": 500000000, + "support_perbill": 2380197, + "approval": 50, + "support": 0.2380197 + }, + { + "time_hours": 257, + "approval_perbill": 500000000, + "support_perbill": 2341481, + "approval": 50, + "support": 0.2341481 + }, + { + "time_hours": 258, + "approval_perbill": 500000000, + "support_perbill": 2303059, + "approval": 50, + "support": 0.2303059 + }, + { + "time_hours": 259, + "approval_perbill": 500000000, + "support_perbill": 2264928, + "approval": 50, + "support": 0.2264928 + }, + { + "time_hours": 260, + "approval_perbill": 500000000, + "support_perbill": 2227084, + "approval": 50, + "support": 0.2227084 + }, + { + "time_hours": 261, + "approval_perbill": 500000000, + "support_perbill": 2189525, + "approval": 50, + "support": 0.2189525 + }, + { + "time_hours": 262, + "approval_perbill": 500000000, + "support_perbill": 2152247, + "approval": 50, + "support": 0.2152247 + }, + { + "time_hours": 263, + "approval_perbill": 500000000, + "support_perbill": 2115247, + "approval": 50, + "support": 0.2115247 + }, + { + "time_hours": 264, + "approval_perbill": 500000000, + "support_perbill": 2078522, + "approval": 50, + "support": 0.2078522 + }, + { + "time_hours": 265, + "approval_perbill": 500000000, + "support_perbill": 2042068, + "approval": 50, + "support": 0.2042068 + }, + { + "time_hours": 266, + "approval_perbill": 500000000, + "support_perbill": 2005884, + "approval": 50, + "support": 0.2005884 + }, + { + "time_hours": 267, + "approval_perbill": 500000000, + "support_perbill": 1969965, + "approval": 50, + "support": 0.1969965 + }, + { + "time_hours": 268, + "approval_perbill": 500000000, + "support_perbill": 1934309, + "approval": 50, + "support": 0.1934309 + }, + { + "time_hours": 269, + "approval_perbill": 500000000, + "support_perbill": 1898913, + "approval": 50, + "support": 0.1898913 + }, + { + "time_hours": 270, + "approval_perbill": 500000000, + "support_perbill": 1863775, + "approval": 50, + "support": 0.1863775 + }, + { + "time_hours": 271, + "approval_perbill": 500000000, + "support_perbill": 1828891, + "approval": 50, + "support": 0.1828891 + }, + { + "time_hours": 272, + "approval_perbill": 500000000, + "support_perbill": 1794258, + "approval": 50, + "support": 0.1794258 + }, + { + "time_hours": 273, + "approval_perbill": 500000000, + "support_perbill": 1759875, + "approval": 50, + "support": 0.1759875 + }, + { + "time_hours": 274, + "approval_perbill": 500000000, + "support_perbill": 1725737, + "approval": 50, + "support": 0.1725737 + }, + { + "time_hours": 275, + "approval_perbill": 500000000, + "support_perbill": 1691844, + "approval": 50, + "support": 0.1691844 + }, + { + "time_hours": 276, + "approval_perbill": 500000000, + "support_perbill": 1658191, + "approval": 50, + "support": 0.1658191 + }, + { + "time_hours": 277, + "approval_perbill": 500000000, + "support_perbill": 1624777, + "approval": 50, + "support": 0.1624777 + }, + { + "time_hours": 278, + "approval_perbill": 500000000, + "support_perbill": 1591599, + "approval": 50, + "support": 0.1591599 + }, + { + "time_hours": 279, + "approval_perbill": 500000000, + "support_perbill": 1558654, + "approval": 50, + "support": 0.1558654 + }, + { + "time_hours": 280, + "approval_perbill": 500000000, + "support_perbill": 1525941, + "approval": 50, + "support": 0.1525941 + }, + { + "time_hours": 281, + "approval_perbill": 500000000, + "support_perbill": 1493456, + "approval": 50, + "support": 0.1493456 + }, + { + "time_hours": 282, + "approval_perbill": 500000000, + "support_perbill": 1461197, + "approval": 50, + "support": 0.1461197 + }, + { + "time_hours": 283, + "approval_perbill": 500000000, + "support_perbill": 1429162, + "approval": 50, + "support": 0.1429162 + }, + { + "time_hours": 284, + "approval_perbill": 500000000, + "support_perbill": 1397348, + "approval": 50, + "support": 0.1397348 + }, + { + "time_hours": 285, + "approval_perbill": 500000000, + "support_perbill": 1365754, + "approval": 50, + "support": 0.1365754 + }, + { + "time_hours": 286, + "approval_perbill": 500000000, + "support_perbill": 1334377, + "approval": 50, + "support": 0.1334377 + }, + { + "time_hours": 287, + "approval_perbill": 500000000, + "support_perbill": 1303214, + "approval": 50, + "support": 0.1303214 + }, + { + "time_hours": 288, + "approval_perbill": 500000000, + "support_perbill": 1272264, + "approval": 50, + "support": 0.1272264 + }, + { + "time_hours": 289, + "approval_perbill": 500000000, + "support_perbill": 1241525, + "approval": 50, + "support": 0.1241525 + }, + { + "time_hours": 290, + "approval_perbill": 500000000, + "support_perbill": 1210994, + "approval": 50, + "support": 0.1210994 + }, + { + "time_hours": 291, + "approval_perbill": 500000000, + "support_perbill": 1180668, + "approval": 50, + "support": 0.1180668 + }, + { + "time_hours": 292, + "approval_perbill": 500000000, + "support_perbill": 1150547, + "approval": 50, + "support": 0.1150547 + }, + { + "time_hours": 293, + "approval_perbill": 500000000, + "support_perbill": 1120628, + "approval": 50, + "support": 0.1120628 + }, + { + "time_hours": 294, + "approval_perbill": 500000000, + "support_perbill": 1090909, + "approval": 50, + "support": 0.1090909 + }, + { + "time_hours": 295, + "approval_perbill": 500000000, + "support_perbill": 1061388, + "approval": 50, + "support": 0.1061388 + }, + { + "time_hours": 296, + "approval_perbill": 500000000, + "support_perbill": 1032063, + "approval": 50, + "support": 0.1032063 + }, + { + "time_hours": 297, + "approval_perbill": 500000000, + "support_perbill": 1002932, + "approval": 50, + "support": 0.1002932 + }, + { + "time_hours": 298, + "approval_perbill": 500000000, + "support_perbill": 973993, + "approval": 50, + "support": 0.0973993 + }, + { + "time_hours": 299, + "approval_perbill": 500000000, + "support_perbill": 945244, + "approval": 50, + "support": 0.0945244 + }, + { + "time_hours": 300, + "approval_perbill": 500000000, + "support_perbill": 916684, + "approval": 50, + "support": 0.0916684 + }, + { + "time_hours": 301, + "approval_perbill": 500000000, + "support_perbill": 888310, + "approval": 50, + "support": 0.088831 + }, + { + "time_hours": 302, + "approval_perbill": 500000000, + "support_perbill": 860121, + "approval": 50, + "support": 0.0860121 + }, + { + "time_hours": 303, + "approval_perbill": 500000000, + "support_perbill": 832114, + "approval": 50, + "support": 0.0832114 + }, + { + "time_hours": 304, + "approval_perbill": 500000000, + "support_perbill": 804289, + "approval": 50, + "support": 0.0804289 + }, + { + "time_hours": 305, + "approval_perbill": 500000000, + "support_perbill": 776644, + "approval": 50, + "support": 0.0776644 + }, + { + "time_hours": 306, + "approval_perbill": 500000000, + "support_perbill": 749176, + "approval": 50, + "support": 0.0749176 + }, + { + "time_hours": 307, + "approval_perbill": 500000000, + "support_perbill": 721884, + "approval": 50, + "support": 0.0721884 + }, + { + "time_hours": 308, + "approval_perbill": 500000000, + "support_perbill": 694766, + "approval": 50, + "support": 0.0694766 + }, + { + "time_hours": 309, + "approval_perbill": 500000000, + "support_perbill": 667821, + "approval": 50, + "support": 0.0667821 + }, + { + "time_hours": 310, + "approval_perbill": 500000000, + "support_perbill": 641047, + "approval": 50, + "support": 0.0641047 + }, + { + "time_hours": 311, + "approval_perbill": 500000000, + "support_perbill": 614442, + "approval": 50, + "support": 0.0614442 + }, + { + "time_hours": 312, + "approval_perbill": 500000000, + "support_perbill": 588005, + "approval": 50, + "support": 0.0588005 + }, + { + "time_hours": 313, + "approval_perbill": 500000000, + "support_perbill": 561734, + "approval": 50, + "support": 0.0561734 + }, + { + "time_hours": 314, + "approval_perbill": 500000000, + "support_perbill": 535627, + "approval": 50, + "support": 0.0535627 + }, + { + "time_hours": 315, + "approval_perbill": 500000000, + "support_perbill": 509684, + "approval": 50, + "support": 0.0509684 + }, + { + "time_hours": 316, + "approval_perbill": 500000000, + "support_perbill": 483902, + "approval": 50, + "support": 0.0483902 + }, + { + "time_hours": 317, + "approval_perbill": 500000000, + "support_perbill": 458280, + "approval": 50, + "support": 0.045828 + }, + { + "time_hours": 318, + "approval_perbill": 500000000, + "support_perbill": 432817, + "approval": 50, + "support": 0.0432817 + }, + { + "time_hours": 319, + "approval_perbill": 500000000, + "support_perbill": 407511, + "approval": 50, + "support": 0.0407511 + }, + { + "time_hours": 320, + "approval_perbill": 500000000, + "support_perbill": 382360, + "approval": 50, + "support": 0.038236 + }, + { + "time_hours": 321, + "approval_perbill": 500000000, + "support_perbill": 357364, + "approval": 50, + "support": 0.0357364 + }, + { + "time_hours": 322, + "approval_perbill": 500000000, + "support_perbill": 332520, + "approval": 50, + "support": 0.033252 + }, + { + "time_hours": 323, + "approval_perbill": 500000000, + "support_perbill": 307828, + "approval": 50, + "support": 0.0307828 + }, + { + "time_hours": 324, + "approval_perbill": 500000000, + "support_perbill": 283286, + "approval": 50, + "support": 0.0283286 + }, + { + "time_hours": 325, + "approval_perbill": 500000000, + "support_perbill": 258892, + "approval": 50, + "support": 0.0258892 + }, + { + "time_hours": 326, + "approval_perbill": 500000000, + "support_perbill": 234646, + "approval": 50, + "support": 0.0234646 + }, + { + "time_hours": 327, + "approval_perbill": 500000000, + "support_perbill": 210546, + "approval": 50, + "support": 0.0210546 + }, + { + "time_hours": 328, + "approval_perbill": 500000000, + "support_perbill": 186590, + "approval": 50, + "support": 0.018659 + }, + { + "time_hours": 329, + "approval_perbill": 500000000, + "support_perbill": 162778, + "approval": 50, + "support": 0.0162778 + }, + { + "time_hours": 330, + "approval_perbill": 500000000, + "support_perbill": 139108, + "approval": 50, + "support": 0.0139108 + }, + { + "time_hours": 331, + "approval_perbill": 500000000, + "support_perbill": 115578, + "approval": 50, + "support": 0.0115578 + }, + { + "time_hours": 332, + "approval_perbill": 500000000, + "support_perbill": 92188, + "approval": 50, + "support": 0.0092188 + }, + { + "time_hours": 333, + "approval_perbill": 500000000, + "support_perbill": 68937, + "approval": 50, + "support": 0.0068937 + }, + { + "time_hours": 334, + "approval_perbill": 500000000, + "support_perbill": 45822, + "approval": 50, + "support": 0.0045822 + }, + { + "time_hours": 335, + "approval_perbill": 500000000, + "support_perbill": 22844, + "approval": 50, + "support": 0.0022844 + }, + { + "time_hours": 336, + "approval_perbill": 500000000, + "support_perbill": 0, + "approval": 50, + "support": 0 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/kusama/opengov_big_spender.json b/components/utilities/charts_data/kusama/opengov_big_spender.json new file mode 100644 index 000000000000..16bb1b174cb9 --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_big_spender.json @@ -0,0 +1,2361 @@ +[ + { + "time_hours": 0, + "approval_perbill": 1000000000, + "support_perbill": 500000008, + "approval": 100, + "support": 50.0000008 + }, + { + "time_hours": 1, + "approval_perbill": 998511905, + "support_perbill": 472363240, + "approval": 99.8511905, + "support": 47.236324 + }, + { + "time_hours": 2, + "approval_perbill": 997023810, + "support_perbill": 447481262, + "approval": 99.702381, + "support": 44.7481262 + }, + { + "time_hours": 3, + "approval_perbill": 995535715, + "support_perbill": 424961730, + "approval": 99.5535715, + "support": 42.496173 + }, + { + "time_hours": 4, + "approval_perbill": 994047620, + "support_perbill": 404483449, + "approval": 99.404762, + "support": 40.4483449 + }, + { + "time_hours": 5, + "approval_perbill": 992559524, + "support_perbill": 385780901, + "approval": 99.2559524, + "support": 38.5780901 + }, + { + "time_hours": 6, + "approval_perbill": 991071429, + "support_perbill": 368632725, + "approval": 99.1071429, + "support": 36.8632725 + }, + { + "time_hours": 7, + "approval_perbill": 989583334, + "support_perbill": 352852868, + "approval": 98.9583334, + "support": 35.2852868 + }, + { + "time_hours": 8, + "approval_perbill": 988095239, + "support_perbill": 338283846, + "approval": 98.8095239, + "support": 33.8283846 + }, + { + "time_hours": 9, + "approval_perbill": 986607143, + "support_perbill": 324791433, + "approval": 98.6607143, + "support": 32.4791433 + }, + { + "time_hours": 10, + "approval_perbill": 985119048, + "support_perbill": 312260553, + "approval": 98.5119048, + "support": 31.2260553 + }, + { + "time_hours": 11, + "approval_perbill": 983630953, + "support_perbill": 300591949, + "approval": 98.3630953, + "support": 30.0591949 + }, + { + "time_hours": 12, + "approval_perbill": 982142858, + "support_perbill": 289699587, + "approval": 98.2142858, + "support": 28.9699587 + }, + { + "time_hours": 13, + "approval_perbill": 980654762, + "support_perbill": 279508494, + "approval": 98.0654762, + "support": 27.9508494 + }, + { + "time_hours": 14, + "approval_perbill": 979166667, + "support_perbill": 269953067, + "approval": 97.9166667, + "support": 26.9953067 + }, + { + "time_hours": 15, + "approval_perbill": 977678572, + "support_perbill": 260975623, + "approval": 97.7678572, + "support": 26.0975623 + }, + { + "time_hours": 16, + "approval_perbill": 976190477, + "support_perbill": 252525267, + "approval": 97.6190477, + "support": 25.2525267 + }, + { + "time_hours": 17, + "approval_perbill": 974702381, + "support_perbill": 244556897, + "approval": 97.4702381, + "support": 24.4556897 + }, + { + "time_hours": 18, + "approval_perbill": 973214286, + "support_perbill": 237030426, + "approval": 97.3214286, + "support": 23.7030426 + }, + { + "time_hours": 19, + "approval_perbill": 971726191, + "support_perbill": 229910079, + "approval": 97.1726191, + "support": 22.9910079 + }, + { + "time_hours": 20, + "approval_perbill": 970238096, + "support_perbill": 223163855, + "approval": 97.0238096, + "support": 22.3163855 + }, + { + "time_hours": 21, + "approval_perbill": 968750000, + "support_perbill": 216763018, + "approval": 96.875, + "support": 21.6763018 + }, + { + "time_hours": 22, + "approval_perbill": 967261905, + "support_perbill": 210681709, + "approval": 96.7261905, + "support": 21.0681709 + }, + { + "time_hours": 23, + "approval_perbill": 965773810, + "support_perbill": 204896583, + "approval": 96.577381, + "support": 20.4896583 + }, + { + "time_hours": 24, + "approval_perbill": 964285715, + "support_perbill": 199386516, + "approval": 96.4285715, + "support": 19.9386516 + }, + { + "time_hours": 25, + "approval_perbill": 962797620, + "support_perbill": 194132348, + "approval": 96.279762, + "support": 19.4132348 + }, + { + "time_hours": 26, + "approval_perbill": 961309524, + "support_perbill": 189116654, + "approval": 96.1309524, + "support": 18.9116654 + }, + { + "time_hours": 27, + "approval_perbill": 959821429, + "support_perbill": 184323563, + "approval": 95.9821429, + "support": 18.4323563 + }, + { + "time_hours": 28, + "approval_perbill": 958333334, + "support_perbill": 179738574, + "approval": 95.8333334, + "support": 17.9738574 + }, + { + "time_hours": 29, + "approval_perbill": 956845239, + "support_perbill": 175348424, + "approval": 95.6845239, + "support": 17.5348424 + }, + { + "time_hours": 30, + "approval_perbill": 955357143, + "support_perbill": 171140951, + "approval": 95.5357143, + "support": 17.1140951 + }, + { + "time_hours": 31, + "approval_perbill": 953869048, + "support_perbill": 167104986, + "approval": 95.3869048, + "support": 16.7104986 + }, + { + "time_hours": 32, + "approval_perbill": 952380953, + "support_perbill": 163230251, + "approval": 95.2380953, + "support": 16.3230251 + }, + { + "time_hours": 33, + "approval_perbill": 950892858, + "support_perbill": 159507276, + "approval": 95.0892858, + "support": 15.9507276 + }, + { + "time_hours": 34, + "approval_perbill": 949404762, + "support_perbill": 155927313, + "approval": 94.9404762, + "support": 15.5927313 + }, + { + "time_hours": 35, + "approval_perbill": 947916667, + "support_perbill": 152482280, + "approval": 94.7916667, + "support": 15.248228 + }, + { + "time_hours": 36, + "approval_perbill": 946428572, + "support_perbill": 149164688, + "approval": 94.6428572, + "support": 14.9164688 + }, + { + "time_hours": 37, + "approval_perbill": 944940477, + "support_perbill": 145967595, + "approval": 94.4940477, + "support": 14.5967595 + }, + { + "time_hours": 38, + "approval_perbill": 943452381, + "support_perbill": 142884551, + "approval": 94.3452381, + "support": 14.2884551 + }, + { + "time_hours": 39, + "approval_perbill": 941964286, + "support_perbill": 139909563, + "approval": 94.1964286, + "support": 13.9909563 + }, + { + "time_hours": 40, + "approval_perbill": 940476191, + "support_perbill": 137037046, + "approval": 94.0476191, + "support": 13.7037046 + }, + { + "time_hours": 41, + "approval_perbill": 938988096, + "support_perbill": 134261797, + "approval": 93.8988096, + "support": 13.4261797 + }, + { + "time_hours": 42, + "approval_perbill": 937500000, + "support_perbill": 131578956, + "approval": 93.75, + "support": 13.1578956 + }, + { + "time_hours": 43, + "approval_perbill": 936011905, + "support_perbill": 128983985, + "approval": 93.6011905, + "support": 12.8983985 + }, + { + "time_hours": 44, + "approval_perbill": 934523810, + "support_perbill": 126472636, + "approval": 93.452381, + "support": 12.6472636 + }, + { + "time_hours": 45, + "approval_perbill": 933035715, + "support_perbill": 124040929, + "approval": 93.3035715, + "support": 12.4040929 + }, + { + "time_hours": 46, + "approval_perbill": 931547620, + "support_perbill": 121685138, + "approval": 93.154762, + "support": 12.1685138 + }, + { + "time_hours": 47, + "approval_perbill": 930059524, + "support_perbill": 119401760, + "approval": 93.0059524, + "support": 11.940176 + }, + { + "time_hours": 48, + "approval_perbill": 928571429, + "support_perbill": 117187509, + "approval": 92.8571429, + "support": 11.7187509 + }, + { + "time_hours": 49, + "approval_perbill": 927083334, + "support_perbill": 115039290, + "approval": 92.7083334, + "support": 11.503929 + }, + { + "time_hours": 50, + "approval_perbill": 925595239, + "support_perbill": 112954195, + "approval": 92.5595239, + "support": 11.2954195 + }, + { + "time_hours": 51, + "approval_perbill": 924107143, + "support_perbill": 110929480, + "approval": 92.4107143, + "support": 11.092948 + }, + { + "time_hours": 52, + "approval_perbill": 922619048, + "support_perbill": 108962562, + "approval": 92.2619048, + "support": 10.8962562 + }, + { + "time_hours": 53, + "approval_perbill": 921130953, + "support_perbill": 107050999, + "approval": 92.1130953, + "support": 10.7050999 + }, + { + "time_hours": 54, + "approval_perbill": 919642858, + "support_perbill": 105192488, + "approval": 91.9642858, + "support": 10.5192488 + }, + { + "time_hours": 55, + "approval_perbill": 918154762, + "support_perbill": 103384849, + "approval": 91.8154762, + "support": 10.3384849 + }, + { + "time_hours": 56, + "approval_perbill": 916666667, + "support_perbill": 101626024, + "approval": 91.6666667, + "support": 10.1626024 + }, + { + "time_hours": 57, + "approval_perbill": 915178572, + "support_perbill": 99914060, + "approval": 91.5178572, + "support": 9.991406 + }, + { + "time_hours": 58, + "approval_perbill": 913690477, + "support_perbill": 98247109, + "approval": 91.3690477, + "support": 9.8247109 + }, + { + "time_hours": 59, + "approval_perbill": 912202381, + "support_perbill": 96623420, + "approval": 91.2202381, + "support": 9.662342 + }, + { + "time_hours": 60, + "approval_perbill": 910714286, + "support_perbill": 95041329, + "approval": 91.0714286, + "support": 9.5041329 + }, + { + "time_hours": 61, + "approval_perbill": 909226191, + "support_perbill": 93499259, + "approval": 90.9226191, + "support": 9.3499259 + }, + { + "time_hours": 62, + "approval_perbill": 907738096, + "support_perbill": 91995709, + "approval": 90.7738096, + "support": 9.1995709 + }, + { + "time_hours": 63, + "approval_perbill": 906250000, + "support_perbill": 90529254, + "approval": 90.625, + "support": 9.0529254 + }, + { + "time_hours": 64, + "approval_perbill": 904761905, + "support_perbill": 89098539, + "approval": 90.4761905, + "support": 8.9098539 + }, + { + "time_hours": 65, + "approval_perbill": 903273810, + "support_perbill": 87702272, + "approval": 90.327381, + "support": 8.7702272 + }, + { + "time_hours": 66, + "approval_perbill": 901785715, + "support_perbill": 86339224, + "approval": 90.1785715, + "support": 8.6339224 + }, + { + "time_hours": 67, + "approval_perbill": 900297620, + "support_perbill": 85008223, + "approval": 90.029762, + "support": 8.5008223 + }, + { + "time_hours": 68, + "approval_perbill": 898809524, + "support_perbill": 83708152, + "approval": 89.8809524, + "support": 8.3708152 + }, + { + "time_hours": 69, + "approval_perbill": 897321429, + "support_perbill": 82437946, + "approval": 89.7321429, + "support": 8.2437946 + }, + { + "time_hours": 70, + "approval_perbill": 895833334, + "support_perbill": 81196587, + "approval": 89.5833334, + "support": 8.1196587 + }, + { + "time_hours": 71, + "approval_perbill": 894345239, + "support_perbill": 79983104, + "approval": 89.4345239, + "support": 7.9983104 + }, + { + "time_hours": 72, + "approval_perbill": 892857143, + "support_perbill": 78796567, + "approval": 89.2857143, + "support": 7.8796567 + }, + { + "time_hours": 73, + "approval_perbill": 891369048, + "support_perbill": 77636090, + "approval": 89.1369048, + "support": 7.763609 + }, + { + "time_hours": 74, + "approval_perbill": 889880953, + "support_perbill": 76500823, + "approval": 88.9880953, + "support": 7.6500823 + }, + { + "time_hours": 75, + "approval_perbill": 888392858, + "support_perbill": 75389954, + "approval": 88.8392858, + "support": 7.5389954 + }, + { + "time_hours": 76, + "approval_perbill": 886904762, + "support_perbill": 74302703, + "approval": 88.6904762, + "support": 7.4302703 + }, + { + "time_hours": 77, + "approval_perbill": 885416667, + "support_perbill": 73238327, + "approval": 88.5416667, + "support": 7.3238327 + }, + { + "time_hours": 78, + "approval_perbill": 883928572, + "support_perbill": 72196110, + "approval": 88.3928572, + "support": 7.219611 + }, + { + "time_hours": 79, + "approval_perbill": 882440477, + "support_perbill": 71175368, + "approval": 88.2440477, + "support": 7.1175368 + }, + { + "time_hours": 80, + "approval_perbill": 880952381, + "support_perbill": 70175444, + "approval": 88.0952381, + "support": 7.0175444 + }, + { + "time_hours": 81, + "approval_perbill": 879464286, + "support_perbill": 69195707, + "approval": 87.9464286, + "support": 6.9195707 + }, + { + "time_hours": 82, + "approval_perbill": 877976191, + "support_perbill": 68235552, + "approval": 87.7976191, + "support": 6.8235552 + }, + { + "time_hours": 83, + "approval_perbill": 876488096, + "support_perbill": 67294398, + "approval": 87.6488096, + "support": 6.7294398 + }, + { + "time_hours": 84, + "approval_perbill": 875000000, + "support_perbill": 66371686, + "approval": 87.5, + "support": 6.6371686 + }, + { + "time_hours": 85, + "approval_perbill": 873511905, + "support_perbill": 65466880, + "approval": 87.3511905, + "support": 6.546688 + }, + { + "time_hours": 86, + "approval_perbill": 872023810, + "support_perbill": 64579464, + "approval": 87.202381, + "support": 6.4579464 + }, + { + "time_hours": 87, + "approval_perbill": 870535715, + "support_perbill": 63708939, + "approval": 87.0535715, + "support": 6.3708939 + }, + { + "time_hours": 88, + "approval_perbill": 869047620, + "support_perbill": 62854830, + "approval": 86.904762, + "support": 6.285483 + }, + { + "time_hours": 89, + "approval_perbill": 867559524, + "support_perbill": 62016676, + "approval": 86.7559524, + "support": 6.2016676 + }, + { + "time_hours": 90, + "approval_perbill": 866071429, + "support_perbill": 61194035, + "approval": 86.6071429, + "support": 6.1194035 + }, + { + "time_hours": 91, + "approval_perbill": 864583334, + "support_perbill": 60386478, + "approval": 86.4583334, + "support": 6.0386478 + }, + { + "time_hours": 92, + "approval_perbill": 863095239, + "support_perbill": 59593596, + "approval": 86.3095239, + "support": 5.9593596 + }, + { + "time_hours": 93, + "approval_perbill": 861607143, + "support_perbill": 58814991, + "approval": 86.1607143, + "support": 5.8814991 + }, + { + "time_hours": 94, + "approval_perbill": 860119048, + "support_perbill": 58050283, + "approval": 86.0119048, + "support": 5.8050283 + }, + { + "time_hours": 95, + "approval_perbill": 858630953, + "support_perbill": 57299101, + "approval": 85.8630953, + "support": 5.7299101 + }, + { + "time_hours": 96, + "approval_perbill": 857142858, + "support_perbill": 56561090, + "approval": 85.7142858, + "support": 5.656109 + }, + { + "time_hours": 97, + "approval_perbill": 855654762, + "support_perbill": 55835907, + "approval": 85.5654762, + "support": 5.5835907 + }, + { + "time_hours": 98, + "approval_perbill": 854166667, + "support_perbill": 55123221, + "approval": 85.4166667, + "support": 5.5123221 + }, + { + "time_hours": 99, + "approval_perbill": 852678572, + "support_perbill": 54422710, + "approval": 85.2678572, + "support": 5.442271 + }, + { + "time_hours": 100, + "approval_perbill": 851190477, + "support_perbill": 53734066, + "approval": 85.1190477, + "support": 5.3734066 + }, + { + "time_hours": 101, + "approval_perbill": 849702381, + "support_perbill": 53056989, + "approval": 84.9702381, + "support": 5.3056989 + }, + { + "time_hours": 102, + "approval_perbill": 848214286, + "support_perbill": 52391191, + "approval": 84.8214286, + "support": 5.2391191 + }, + { + "time_hours": 103, + "approval_perbill": 846726191, + "support_perbill": 51736392, + "approval": 84.6726191, + "support": 5.1736392 + }, + { + "time_hours": 104, + "approval_perbill": 845238096, + "support_perbill": 51092322, + "approval": 84.5238096, + "support": 5.1092322 + }, + { + "time_hours": 105, + "approval_perbill": 843750000, + "support_perbill": 50458719, + "approval": 84.375, + "support": 5.0458719 + }, + { + "time_hours": 106, + "approval_perbill": 842261905, + "support_perbill": 49835330, + "approval": 84.2261905, + "support": 4.983533 + }, + { + "time_hours": 107, + "approval_perbill": 840773810, + "support_perbill": 49221911, + "approval": 84.077381, + "support": 4.9221911 + }, + { + "time_hours": 108, + "approval_perbill": 839285715, + "support_perbill": 48618223, + "approval": 83.9285715, + "support": 4.8618223 + }, + { + "time_hours": 109, + "approval_perbill": 837797620, + "support_perbill": 48024037, + "approval": 83.779762, + "support": 4.8024037 + }, + { + "time_hours": 110, + "approval_perbill": 836309524, + "support_perbill": 47439130, + "approval": 83.6309524, + "support": 4.743913 + }, + { + "time_hours": 111, + "approval_perbill": 834821429, + "support_perbill": 46863288, + "approval": 83.4821429, + "support": 4.6863288 + }, + { + "time_hours": 112, + "approval_perbill": 833333334, + "support_perbill": 46296300, + "approval": 83.3333334, + "support": 4.62963 + }, + { + "time_hours": 113, + "approval_perbill": 831845239, + "support_perbill": 45737964, + "approval": 83.1845239, + "support": 4.5737964 + }, + { + "time_hours": 114, + "approval_perbill": 830357143, + "support_perbill": 45188083, + "approval": 83.0357143, + "support": 4.5188083 + }, + { + "time_hours": 115, + "approval_perbill": 828869048, + "support_perbill": 44646468, + "approval": 82.8869048, + "support": 4.4646468 + }, + { + "time_hours": 116, + "approval_perbill": 827380953, + "support_perbill": 44112932, + "approval": 82.7380953, + "support": 4.4112932 + }, + { + "time_hours": 117, + "approval_perbill": 825892858, + "support_perbill": 43587297, + "approval": 82.5892858, + "support": 4.3587297 + }, + { + "time_hours": 118, + "approval_perbill": 824404762, + "support_perbill": 43069388, + "approval": 82.4404762, + "support": 4.3069388 + }, + { + "time_hours": 119, + "approval_perbill": 822916667, + "support_perbill": 42559037, + "approval": 82.2916667, + "support": 4.2559037 + }, + { + "time_hours": 120, + "approval_perbill": 821428572, + "support_perbill": 42056078, + "approval": 82.1428572, + "support": 4.2056078 + }, + { + "time_hours": 121, + "approval_perbill": 819940477, + "support_perbill": 41560353, + "approval": 81.9940477, + "support": 4.1560353 + }, + { + "time_hours": 122, + "approval_perbill": 818452381, + "support_perbill": 41071706, + "approval": 81.8452381, + "support": 4.1071706 + }, + { + "time_hours": 123, + "approval_perbill": 816964286, + "support_perbill": 40589987, + "approval": 81.6964286, + "support": 4.0589987 + }, + { + "time_hours": 124, + "approval_perbill": 815476191, + "support_perbill": 40115050, + "approval": 81.5476191, + "support": 4.011505 + }, + { + "time_hours": 125, + "approval_perbill": 813988096, + "support_perbill": 39646752, + "approval": 81.3988096, + "support": 3.9646752 + }, + { + "time_hours": 126, + "approval_perbill": 812500000, + "support_perbill": 39184956, + "approval": 81.25, + "support": 3.9184956 + }, + { + "time_hours": 127, + "approval_perbill": 811011905, + "support_perbill": 38729526, + "approval": 81.1011905, + "support": 3.8729526 + }, + { + "time_hours": 128, + "approval_perbill": 809523810, + "support_perbill": 38280333, + "approval": 80.952381, + "support": 3.8280333 + }, + { + "time_hours": 129, + "approval_perbill": 808035715, + "support_perbill": 37837248, + "approval": 80.8035715, + "support": 3.7837248 + }, + { + "time_hours": 130, + "approval_perbill": 806547620, + "support_perbill": 37400148, + "approval": 80.654762, + "support": 3.7400148 + }, + { + "time_hours": 131, + "approval_perbill": 805059524, + "support_perbill": 36968913, + "approval": 80.5059524, + "support": 3.6968913 + }, + { + "time_hours": 132, + "approval_perbill": 803571429, + "support_perbill": 36543425, + "approval": 80.3571429, + "support": 3.6543425 + }, + { + "time_hours": 133, + "approval_perbill": 802083334, + "support_perbill": 36123570, + "approval": 80.2083334, + "support": 3.612357 + }, + { + "time_hours": 134, + "approval_perbill": 800595239, + "support_perbill": 35709238, + "approval": 80.0595239, + "support": 3.5709238 + }, + { + "time_hours": 135, + "approval_perbill": 799107143, + "support_perbill": 35300319, + "approval": 79.9107143, + "support": 3.5300319 + }, + { + "time_hours": 136, + "approval_perbill": 797619048, + "support_perbill": 34896708, + "approval": 79.7619048, + "support": 3.4896708 + }, + { + "time_hours": 137, + "approval_perbill": 796130953, + "support_perbill": 34498304, + "approval": 79.6130953, + "support": 3.4498304 + }, + { + "time_hours": 138, + "approval_perbill": 794642858, + "support_perbill": 34105005, + "approval": 79.4642858, + "support": 3.4105005 + }, + { + "time_hours": 139, + "approval_perbill": 793154762, + "support_perbill": 33716714, + "approval": 79.3154762, + "support": 3.3716714 + }, + { + "time_hours": 140, + "approval_perbill": 791666667, + "support_perbill": 33333336, + "approval": 79.1666667, + "support": 3.3333336 + }, + { + "time_hours": 141, + "approval_perbill": 790178572, + "support_perbill": 32954778, + "approval": 79.0178572, + "support": 3.2954778 + }, + { + "time_hours": 142, + "approval_perbill": 788690477, + "support_perbill": 32580951, + "approval": 78.8690477, + "support": 3.2580951 + }, + { + "time_hours": 143, + "approval_perbill": 787202381, + "support_perbill": 32211765, + "approval": 78.7202381, + "support": 3.2211765 + }, + { + "time_hours": 144, + "approval_perbill": 785714286, + "support_perbill": 31847136, + "approval": 78.5714286, + "support": 3.1847136 + }, + { + "time_hours": 145, + "approval_perbill": 784226191, + "support_perbill": 31486979, + "approval": 78.4226191, + "support": 3.1486979 + }, + { + "time_hours": 146, + "approval_perbill": 782738096, + "support_perbill": 31131212, + "approval": 78.2738096, + "support": 3.1131212 + }, + { + "time_hours": 147, + "approval_perbill": 781250000, + "support_perbill": 30779756, + "approval": 78.125, + "support": 3.0779756 + }, + { + "time_hours": 148, + "approval_perbill": 779761905, + "support_perbill": 30432533, + "approval": 77.9761905, + "support": 3.0432533 + }, + { + "time_hours": 149, + "approval_perbill": 778273810, + "support_perbill": 30089466, + "approval": 77.827381, + "support": 3.0089466 + }, + { + "time_hours": 150, + "approval_perbill": 776785715, + "support_perbill": 29750482, + "approval": 77.6785715, + "support": 2.9750482 + }, + { + "time_hours": 151, + "approval_perbill": 775297620, + "support_perbill": 29415508, + "approval": 77.529762, + "support": 2.9415508 + }, + { + "time_hours": 152, + "approval_perbill": 773809524, + "support_perbill": 29084473, + "approval": 77.3809524, + "support": 2.9084473 + }, + { + "time_hours": 153, + "approval_perbill": 772321429, + "support_perbill": 28757309, + "approval": 77.2321429, + "support": 2.8757309 + }, + { + "time_hours": 154, + "approval_perbill": 770833334, + "support_perbill": 28433948, + "approval": 77.0833334, + "support": 2.8433948 + }, + { + "time_hours": 155, + "approval_perbill": 769345239, + "support_perbill": 28114323, + "approval": 76.9345239, + "support": 2.8114323 + }, + { + "time_hours": 156, + "approval_perbill": 767857143, + "support_perbill": 27798371, + "approval": 76.7857143, + "support": 2.7798371 + }, + { + "time_hours": 157, + "approval_perbill": 766369048, + "support_perbill": 27486029, + "approval": 76.6369048, + "support": 2.7486029 + }, + { + "time_hours": 158, + "approval_perbill": 764880953, + "support_perbill": 27177234, + "approval": 76.4880953, + "support": 2.7177234 + }, + { + "time_hours": 159, + "approval_perbill": 763392858, + "support_perbill": 26871928, + "approval": 76.3392858, + "support": 2.6871928 + }, + { + "time_hours": 160, + "approval_perbill": 761904762, + "support_perbill": 26570050, + "approval": 76.1904762, + "support": 2.657005 + }, + { + "time_hours": 161, + "approval_perbill": 760416667, + "support_perbill": 26271544, + "approval": 76.0416667, + "support": 2.6271544 + }, + { + "time_hours": 162, + "approval_perbill": 758928572, + "support_perbill": 25976354, + "approval": 75.8928572, + "support": 2.5976354 + }, + { + "time_hours": 163, + "approval_perbill": 757440477, + "support_perbill": 25684425, + "approval": 75.7440477, + "support": 2.5684425 + }, + { + "time_hours": 164, + "approval_perbill": 755952381, + "support_perbill": 25395702, + "approval": 75.5952381, + "support": 2.5395702 + }, + { + "time_hours": 165, + "approval_perbill": 754464286, + "support_perbill": 25110134, + "approval": 75.4464286, + "support": 2.5110134 + }, + { + "time_hours": 166, + "approval_perbill": 752976191, + "support_perbill": 24827668, + "approval": 75.2976191, + "support": 2.4827668 + }, + { + "time_hours": 167, + "approval_perbill": 751488096, + "support_perbill": 24548256, + "approval": 75.1488096, + "support": 2.4548256 + }, + { + "time_hours": 168, + "approval_perbill": 750000000, + "support_perbill": 24271846, + "approval": 75, + "support": 2.4271846 + }, + { + "time_hours": 169, + "approval_perbill": 748511905, + "support_perbill": 23998392, + "approval": 74.8511905, + "support": 2.3998392 + }, + { + "time_hours": 170, + "approval_perbill": 747023810, + "support_perbill": 23727846, + "approval": 74.702381, + "support": 2.3727846 + }, + { + "time_hours": 171, + "approval_perbill": 745535715, + "support_perbill": 23460162, + "approval": 74.5535715, + "support": 2.3460162 + }, + { + "time_hours": 172, + "approval_perbill": 744047620, + "support_perbill": 23195295, + "approval": 74.404762, + "support": 2.3195295 + }, + { + "time_hours": 173, + "approval_perbill": 742559524, + "support_perbill": 22933200, + "approval": 74.2559524, + "support": 2.29332 + }, + { + "time_hours": 174, + "approval_perbill": 741071429, + "support_perbill": 22673834, + "approval": 74.1071429, + "support": 2.2673834 + }, + { + "time_hours": 175, + "approval_perbill": 739583334, + "support_perbill": 22417155, + "approval": 73.9583334, + "support": 2.2417155 + }, + { + "time_hours": 176, + "approval_perbill": 738095239, + "support_perbill": 22163122, + "approval": 73.8095239, + "support": 2.2163122 + }, + { + "time_hours": 177, + "approval_perbill": 736607143, + "support_perbill": 21911693, + "approval": 73.6607143, + "support": 2.1911693 + }, + { + "time_hours": 178, + "approval_perbill": 735119048, + "support_perbill": 21662829, + "approval": 73.5119048, + "support": 2.1662829 + }, + { + "time_hours": 179, + "approval_perbill": 733630953, + "support_perbill": 21416491, + "approval": 73.3630953, + "support": 2.1416491 + }, + { + "time_hours": 180, + "approval_perbill": 732142858, + "support_perbill": 21172640, + "approval": 73.2142858, + "support": 2.117264 + }, + { + "time_hours": 181, + "approval_perbill": 730654762, + "support_perbill": 20931239, + "approval": 73.0654762, + "support": 2.0931239 + }, + { + "time_hours": 182, + "approval_perbill": 729166667, + "support_perbill": 20692251, + "approval": 72.9166667, + "support": 2.0692251 + }, + { + "time_hours": 183, + "approval_perbill": 727678572, + "support_perbill": 20455641, + "approval": 72.7678572, + "support": 2.0455641 + }, + { + "time_hours": 184, + "approval_perbill": 726190477, + "support_perbill": 20221372, + "approval": 72.6190477, + "support": 2.0221372 + }, + { + "time_hours": 185, + "approval_perbill": 724702381, + "support_perbill": 19989411, + "approval": 72.4702381, + "support": 1.9989411 + }, + { + "time_hours": 186, + "approval_perbill": 723214286, + "support_perbill": 19759723, + "approval": 72.3214286, + "support": 1.9759723 + }, + { + "time_hours": 187, + "approval_perbill": 721726191, + "support_perbill": 19532275, + "approval": 72.1726191, + "support": 1.9532275 + }, + { + "time_hours": 188, + "approval_perbill": 720238096, + "support_perbill": 19307035, + "approval": 72.0238096, + "support": 1.9307035 + }, + { + "time_hours": 189, + "approval_perbill": 718750000, + "support_perbill": 19083971, + "approval": 71.875, + "support": 1.9083971 + }, + { + "time_hours": 190, + "approval_perbill": 717261905, + "support_perbill": 18863050, + "approval": 71.7261905, + "support": 1.886305 + }, + { + "time_hours": 191, + "approval_perbill": 715773810, + "support_perbill": 18644243, + "approval": 71.577381, + "support": 1.8644243 + }, + { + "time_hours": 192, + "approval_perbill": 714285715, + "support_perbill": 18427520, + "approval": 71.4285715, + "support": 1.842752 + }, + { + "time_hours": 193, + "approval_perbill": 712797620, + "support_perbill": 18212849, + "approval": 71.279762, + "support": 1.8212849 + }, + { + "time_hours": 194, + "approval_perbill": 711309524, + "support_perbill": 18000204, + "approval": 71.1309524, + "support": 1.8000204 + }, + { + "time_hours": 195, + "approval_perbill": 709821429, + "support_perbill": 17789554, + "approval": 70.9821429, + "support": 1.7789554 + }, + { + "time_hours": 196, + "approval_perbill": 708333334, + "support_perbill": 17580873, + "approval": 70.8333334, + "support": 1.7580873 + }, + { + "time_hours": 197, + "approval_perbill": 706845239, + "support_perbill": 17374132, + "approval": 70.6845239, + "support": 1.7374132 + }, + { + "time_hours": 198, + "approval_perbill": 705357143, + "support_perbill": 17169305, + "approval": 70.5357143, + "support": 1.7169305 + }, + { + "time_hours": 199, + "approval_perbill": 703869048, + "support_perbill": 16966366, + "approval": 70.3869048, + "support": 1.6966366 + }, + { + "time_hours": 200, + "approval_perbill": 702380953, + "support_perbill": 16765287, + "approval": 70.2380953, + "support": 1.6765287 + }, + { + "time_hours": 201, + "approval_perbill": 700892858, + "support_perbill": 16566044, + "approval": 70.0892858, + "support": 1.6566044 + }, + { + "time_hours": 202, + "approval_perbill": 699404762, + "support_perbill": 16368612, + "approval": 69.9404762, + "support": 1.6368612 + }, + { + "time_hours": 203, + "approval_perbill": 697916667, + "support_perbill": 16172967, + "approval": 69.7916667, + "support": 1.6172967 + }, + { + "time_hours": 204, + "approval_perbill": 696428572, + "support_perbill": 15979083, + "approval": 69.6428572, + "support": 1.5979083 + }, + { + "time_hours": 205, + "approval_perbill": 694940477, + "support_perbill": 15786938, + "approval": 69.4940477, + "support": 1.5786938 + }, + { + "time_hours": 206, + "approval_perbill": 693452381, + "support_perbill": 15596507, + "approval": 69.3452381, + "support": 1.5596507 + }, + { + "time_hours": 207, + "approval_perbill": 691964286, + "support_perbill": 15407769, + "approval": 69.1964286, + "support": 1.5407769 + }, + { + "time_hours": 208, + "approval_perbill": 690476191, + "support_perbill": 15220701, + "approval": 69.0476191, + "support": 1.5220701 + }, + { + "time_hours": 209, + "approval_perbill": 688988096, + "support_perbill": 15035280, + "approval": 68.8988096, + "support": 1.503528 + }, + { + "time_hours": 210, + "approval_perbill": 687500000, + "support_perbill": 14851486, + "approval": 68.75, + "support": 1.4851486 + }, + { + "time_hours": 211, + "approval_perbill": 686011905, + "support_perbill": 14669296, + "approval": 68.6011905, + "support": 1.4669296 + }, + { + "time_hours": 212, + "approval_perbill": 684523810, + "support_perbill": 14488690, + "approval": 68.452381, + "support": 1.448869 + }, + { + "time_hours": 213, + "approval_perbill": 683035715, + "support_perbill": 14309648, + "approval": 68.3035715, + "support": 1.4309648 + }, + { + "time_hours": 214, + "approval_perbill": 681547620, + "support_perbill": 14132148, + "approval": 68.154762, + "support": 1.4132148 + }, + { + "time_hours": 215, + "approval_perbill": 680059524, + "support_perbill": 13956171, + "approval": 68.0059524, + "support": 1.3956171 + }, + { + "time_hours": 216, + "approval_perbill": 678571429, + "support_perbill": 13781699, + "approval": 67.8571429, + "support": 1.3781699 + }, + { + "time_hours": 217, + "approval_perbill": 677083334, + "support_perbill": 13608710, + "approval": 67.7083334, + "support": 1.360871 + }, + { + "time_hours": 218, + "approval_perbill": 675595239, + "support_perbill": 13437188, + "approval": 67.5595239, + "support": 1.3437188 + }, + { + "time_hours": 219, + "approval_perbill": 674107143, + "support_perbill": 13267112, + "approval": 67.4107143, + "support": 1.3267112 + }, + { + "time_hours": 220, + "approval_perbill": 672619048, + "support_perbill": 13098465, + "approval": 67.2619048, + "support": 1.3098465 + }, + { + "time_hours": 221, + "approval_perbill": 671130953, + "support_perbill": 12931229, + "approval": 67.1130953, + "support": 1.2931229 + }, + { + "time_hours": 222, + "approval_perbill": 669642858, + "support_perbill": 12765386, + "approval": 66.9642858, + "support": 1.2765386 + }, + { + "time_hours": 223, + "approval_perbill": 668154762, + "support_perbill": 12600919, + "approval": 66.8154762, + "support": 1.2600919 + }, + { + "time_hours": 224, + "approval_perbill": 666666667, + "support_perbill": 12437812, + "approval": 66.6666667, + "support": 1.2437812 + }, + { + "time_hours": 225, + "approval_perbill": 665178572, + "support_perbill": 12276046, + "approval": 66.5178572, + "support": 1.2276046 + }, + { + "time_hours": 226, + "approval_perbill": 663690477, + "support_perbill": 12115605, + "approval": 66.3690477, + "support": 1.2115605 + }, + { + "time_hours": 227, + "approval_perbill": 662202381, + "support_perbill": 11956475, + "approval": 66.2202381, + "support": 1.1956475 + }, + { + "time_hours": 228, + "approval_perbill": 660714286, + "support_perbill": 11798637, + "approval": 66.0714286, + "support": 1.1798637 + }, + { + "time_hours": 229, + "approval_perbill": 659226191, + "support_perbill": 11642077, + "approval": 65.9226191, + "support": 1.1642077 + }, + { + "time_hours": 230, + "approval_perbill": 657738096, + "support_perbill": 11486780, + "approval": 65.7738096, + "support": 1.148678 + }, + { + "time_hours": 231, + "approval_perbill": 656250000, + "support_perbill": 11332729, + "approval": 65.625, + "support": 1.1332729 + }, + { + "time_hours": 232, + "approval_perbill": 654761905, + "support_perbill": 11179911, + "approval": 65.4761905, + "support": 1.1179911 + }, + { + "time_hours": 233, + "approval_perbill": 653273810, + "support_perbill": 11028310, + "approval": 65.327381, + "support": 1.102831 + }, + { + "time_hours": 234, + "approval_perbill": 651785715, + "support_perbill": 10877912, + "approval": 65.1785715, + "support": 1.0877912 + }, + { + "time_hours": 235, + "approval_perbill": 650297620, + "support_perbill": 10728702, + "approval": 65.029762, + "support": 1.0728702 + }, + { + "time_hours": 236, + "approval_perbill": 648809524, + "support_perbill": 10580667, + "approval": 64.8809524, + "support": 1.0580667 + }, + { + "time_hours": 237, + "approval_perbill": 647321429, + "support_perbill": 10433793, + "approval": 64.7321429, + "support": 1.0433793 + }, + { + "time_hours": 238, + "approval_perbill": 645833334, + "support_perbill": 10288066, + "approval": 64.5833334, + "support": 1.0288066 + }, + { + "time_hours": 239, + "approval_perbill": 644345239, + "support_perbill": 10143473, + "approval": 64.4345239, + "support": 1.0143473 + }, + { + "time_hours": 240, + "approval_perbill": 642857143, + "support_perbill": 10000000, + "approval": 64.2857143, + "support": 1 + }, + { + "time_hours": 241, + "approval_perbill": 641369048, + "support_perbill": 9857635, + "approval": 64.1369048, + "support": 0.9857635 + }, + { + "time_hours": 242, + "approval_perbill": 639880953, + "support_perbill": 9716365, + "approval": 63.9880953, + "support": 0.9716365 + }, + { + "time_hours": 243, + "approval_perbill": 638392858, + "support_perbill": 9576177, + "approval": 63.8392858, + "support": 0.9576177 + }, + { + "time_hours": 244, + "approval_perbill": 636904762, + "support_perbill": 9437059, + "approval": 63.6904762, + "support": 0.9437059 + }, + { + "time_hours": 245, + "approval_perbill": 635416667, + "support_perbill": 9298999, + "approval": 63.5416667, + "support": 0.9298999 + }, + { + "time_hours": 246, + "approval_perbill": 633928572, + "support_perbill": 9161984, + "approval": 63.3928572, + "support": 0.9161984 + }, + { + "time_hours": 247, + "approval_perbill": 632440477, + "support_perbill": 9026003, + "approval": 63.2440477, + "support": 0.9026003 + }, + { + "time_hours": 248, + "approval_perbill": 630952381, + "support_perbill": 8891045, + "approval": 63.0952381, + "support": 0.8891045 + }, + { + "time_hours": 249, + "approval_perbill": 629464286, + "support_perbill": 8757097, + "approval": 62.9464286, + "support": 0.8757097 + }, + { + "time_hours": 250, + "approval_perbill": 627976191, + "support_perbill": 8624148, + "approval": 62.7976191, + "support": 0.8624148 + }, + { + "time_hours": 251, + "approval_perbill": 626488096, + "support_perbill": 8492187, + "approval": 62.6488096, + "support": 0.8492187 + }, + { + "time_hours": 252, + "approval_perbill": 625000000, + "support_perbill": 8361204, + "approval": 62.5, + "support": 0.8361204 + }, + { + "time_hours": 253, + "approval_perbill": 623511905, + "support_perbill": 8231187, + "approval": 62.3511905, + "support": 0.8231187 + }, + { + "time_hours": 254, + "approval_perbill": 622023810, + "support_perbill": 8102127, + "approval": 62.202381, + "support": 0.8102127 + }, + { + "time_hours": 255, + "approval_perbill": 620535715, + "support_perbill": 7974011, + "approval": 62.0535715, + "support": 0.7974011 + }, + { + "time_hours": 256, + "approval_perbill": 619047620, + "support_perbill": 7846830, + "approval": 61.904762, + "support": 0.784683 + }, + { + "time_hours": 257, + "approval_perbill": 617559524, + "support_perbill": 7720574, + "approval": 61.7559524, + "support": 0.7720574 + }, + { + "time_hours": 258, + "approval_perbill": 616071429, + "support_perbill": 7595233, + "approval": 61.6071429, + "support": 0.7595233 + }, + { + "time_hours": 259, + "approval_perbill": 614583334, + "support_perbill": 7470796, + "approval": 61.4583334, + "support": 0.7470796 + }, + { + "time_hours": 260, + "approval_perbill": 613095239, + "support_perbill": 7347255, + "approval": 61.3095239, + "support": 0.7347255 + }, + { + "time_hours": 261, + "approval_perbill": 611607143, + "support_perbill": 7224598, + "approval": 61.1607143, + "support": 0.7224598 + }, + { + "time_hours": 262, + "approval_perbill": 610119048, + "support_perbill": 7102818, + "approval": 61.0119048, + "support": 0.7102818 + }, + { + "time_hours": 263, + "approval_perbill": 608630953, + "support_perbill": 6981905, + "approval": 60.8630953, + "support": 0.6981905 + }, + { + "time_hours": 264, + "approval_perbill": 607142858, + "support_perbill": 6861848, + "approval": 60.7142858, + "support": 0.6861848 + }, + { + "time_hours": 265, + "approval_perbill": 605654762, + "support_perbill": 6742640, + "approval": 60.5654762, + "support": 0.674264 + }, + { + "time_hours": 266, + "approval_perbill": 604166667, + "support_perbill": 6624271, + "approval": 60.4166667, + "support": 0.6624271 + }, + { + "time_hours": 267, + "approval_perbill": 602678572, + "support_perbill": 6506733, + "approval": 60.2678572, + "support": 0.6506733 + }, + { + "time_hours": 268, + "approval_perbill": 601190477, + "support_perbill": 6390017, + "approval": 60.1190477, + "support": 0.6390017 + }, + { + "time_hours": 269, + "approval_perbill": 599702381, + "support_perbill": 6274113, + "approval": 59.9702381, + "support": 0.6274113 + }, + { + "time_hours": 270, + "approval_perbill": 598214286, + "support_perbill": 6159015, + "approval": 59.8214286, + "support": 0.6159015 + }, + { + "time_hours": 271, + "approval_perbill": 596726191, + "support_perbill": 6044712, + "approval": 59.6726191, + "support": 0.6044712 + }, + { + "time_hours": 272, + "approval_perbill": 595238096, + "support_perbill": 5931198, + "approval": 59.5238096, + "support": 0.5931198 + }, + { + "time_hours": 273, + "approval_perbill": 593750000, + "support_perbill": 5818464, + "approval": 59.375, + "support": 0.5818464 + }, + { + "time_hours": 274, + "approval_perbill": 592261905, + "support_perbill": 5706502, + "approval": 59.2261905, + "support": 0.5706502 + }, + { + "time_hours": 275, + "approval_perbill": 590773810, + "support_perbill": 5595304, + "approval": 59.077381, + "support": 0.5595304 + }, + { + "time_hours": 276, + "approval_perbill": 589285715, + "support_perbill": 5484862, + "approval": 58.9285715, + "support": 0.5484862 + }, + { + "time_hours": 277, + "approval_perbill": 587797620, + "support_perbill": 5375169, + "approval": 58.779762, + "support": 0.5375169 + }, + { + "time_hours": 278, + "approval_perbill": 586309524, + "support_perbill": 5266216, + "approval": 58.6309524, + "support": 0.5266216 + }, + { + "time_hours": 279, + "approval_perbill": 584821429, + "support_perbill": 5157998, + "approval": 58.4821429, + "support": 0.5157998 + }, + { + "time_hours": 280, + "approval_perbill": 583333334, + "support_perbill": 5050505, + "approval": 58.3333334, + "support": 0.5050505 + }, + { + "time_hours": 281, + "approval_perbill": 581845239, + "support_perbill": 4943731, + "approval": 58.1845239, + "support": 0.4943731 + }, + { + "time_hours": 282, + "approval_perbill": 580357143, + "support_perbill": 4837669, + "approval": 58.0357143, + "support": 0.4837669 + }, + { + "time_hours": 283, + "approval_perbill": 578869048, + "support_perbill": 4732312, + "approval": 57.8869048, + "support": 0.4732312 + }, + { + "time_hours": 284, + "approval_perbill": 577380953, + "support_perbill": 4627652, + "approval": 57.7380953, + "support": 0.4627652 + }, + { + "time_hours": 285, + "approval_perbill": 575892858, + "support_perbill": 4523683, + "approval": 57.5892858, + "support": 0.4523683 + }, + { + "time_hours": 286, + "approval_perbill": 574404762, + "support_perbill": 4420397, + "approval": 57.4404762, + "support": 0.4420397 + }, + { + "time_hours": 287, + "approval_perbill": 572916667, + "support_perbill": 4317789, + "approval": 57.2916667, + "support": 0.4317789 + }, + { + "time_hours": 288, + "approval_perbill": 571428572, + "support_perbill": 4215851, + "approval": 57.1428572, + "support": 0.4215851 + }, + { + "time_hours": 289, + "approval_perbill": 569940477, + "support_perbill": 4114578, + "approval": 56.9940477, + "support": 0.4114578 + }, + { + "time_hours": 290, + "approval_perbill": 568452381, + "support_perbill": 4013961, + "approval": 56.8452381, + "support": 0.4013961 + }, + { + "time_hours": 291, + "approval_perbill": 566964286, + "support_perbill": 3913996, + "approval": 56.6964286, + "support": 0.3913996 + }, + { + "time_hours": 292, + "approval_perbill": 565476191, + "support_perbill": 3814676, + "approval": 56.5476191, + "support": 0.3814676 + }, + { + "time_hours": 293, + "approval_perbill": 563988096, + "support_perbill": 3715994, + "approval": 56.3988096, + "support": 0.3715994 + }, + { + "time_hours": 294, + "approval_perbill": 562500000, + "support_perbill": 3617945, + "approval": 56.25, + "support": 0.3617945 + }, + { + "time_hours": 295, + "approval_perbill": 561011905, + "support_perbill": 3520522, + "approval": 56.1011905, + "support": 0.3520522 + }, + { + "time_hours": 296, + "approval_perbill": 559523810, + "support_perbill": 3423719, + "approval": 55.952381, + "support": 0.3423719 + }, + { + "time_hours": 297, + "approval_perbill": 558035715, + "support_perbill": 3327531, + "approval": 55.8035715, + "support": 0.3327531 + }, + { + "time_hours": 298, + "approval_perbill": 556547620, + "support_perbill": 3231952, + "approval": 55.654762, + "support": 0.3231952 + }, + { + "time_hours": 299, + "approval_perbill": 555059524, + "support_perbill": 3136975, + "approval": 55.5059524, + "support": 0.3136975 + }, + { + "time_hours": 300, + "approval_perbill": 553571429, + "support_perbill": 3042596, + "approval": 55.3571429, + "support": 0.3042596 + }, + { + "time_hours": 301, + "approval_perbill": 552083334, + "support_perbill": 2948808, + "approval": 55.2083334, + "support": 0.2948808 + }, + { + "time_hours": 302, + "approval_perbill": 550595239, + "support_perbill": 2855607, + "approval": 55.0595239, + "support": 0.2855607 + }, + { + "time_hours": 303, + "approval_perbill": 549107143, + "support_perbill": 2762986, + "approval": 54.9107143, + "support": 0.2762986 + }, + { + "time_hours": 304, + "approval_perbill": 547619048, + "support_perbill": 2670940, + "approval": 54.7619048, + "support": 0.267094 + }, + { + "time_hours": 305, + "approval_perbill": 546130953, + "support_perbill": 2579464, + "approval": 54.6130953, + "support": 0.2579464 + }, + { + "time_hours": 306, + "approval_perbill": 544642858, + "support_perbill": 2488552, + "approval": 54.4642858, + "support": 0.2488552 + }, + { + "time_hours": 307, + "approval_perbill": 543154762, + "support_perbill": 2398200, + "approval": 54.3154762, + "support": 0.23982 + }, + { + "time_hours": 308, + "approval_perbill": 541666667, + "support_perbill": 2308402, + "approval": 54.1666667, + "support": 0.2308402 + }, + { + "time_hours": 309, + "approval_perbill": 540178572, + "support_perbill": 2219153, + "approval": 54.0178572, + "support": 0.2219153 + }, + { + "time_hours": 310, + "approval_perbill": 538690477, + "support_perbill": 2130449, + "approval": 53.8690477, + "support": 0.2130449 + }, + { + "time_hours": 311, + "approval_perbill": 537202381, + "support_perbill": 2042283, + "approval": 53.7202381, + "support": 0.2042283 + }, + { + "time_hours": 312, + "approval_perbill": 535714286, + "support_perbill": 1954652, + "approval": 53.5714286, + "support": 0.1954652 + }, + { + "time_hours": 313, + "approval_perbill": 534226191, + "support_perbill": 1867550, + "approval": 53.4226191, + "support": 0.186755 + }, + { + "time_hours": 314, + "approval_perbill": 532738096, + "support_perbill": 1780972, + "approval": 53.2738096, + "support": 0.1780972 + }, + { + "time_hours": 315, + "approval_perbill": 531250000, + "support_perbill": 1694915, + "approval": 53.125, + "support": 0.1694915 + }, + { + "time_hours": 316, + "approval_perbill": 529761905, + "support_perbill": 1609373, + "approval": 52.9761905, + "support": 0.1609373 + }, + { + "time_hours": 317, + "approval_perbill": 528273810, + "support_perbill": 1524341, + "approval": 52.827381, + "support": 0.1524341 + }, + { + "time_hours": 318, + "approval_perbill": 526785715, + "support_perbill": 1439815, + "approval": 52.6785715, + "support": 0.1439815 + }, + { + "time_hours": 319, + "approval_perbill": 525297620, + "support_perbill": 1355791, + "approval": 52.529762, + "support": 0.1355791 + }, + { + "time_hours": 320, + "approval_perbill": 523809524, + "support_perbill": 1272264, + "approval": 52.3809524, + "support": 0.1272264 + }, + { + "time_hours": 321, + "approval_perbill": 522321429, + "support_perbill": 1189230, + "approval": 52.2321429, + "support": 0.118923 + }, + { + "time_hours": 322, + "approval_perbill": 520833334, + "support_perbill": 1106684, + "approval": 52.0833334, + "support": 0.1106684 + }, + { + "time_hours": 323, + "approval_perbill": 519345239, + "support_perbill": 1024622, + "approval": 51.9345239, + "support": 0.1024622 + }, + { + "time_hours": 324, + "approval_perbill": 517857143, + "support_perbill": 943040, + "approval": 51.7857143, + "support": 0.094304 + }, + { + "time_hours": 325, + "approval_perbill": 516369048, + "support_perbill": 861933, + "approval": 51.6369048, + "support": 0.0861933 + }, + { + "time_hours": 326, + "approval_perbill": 514880953, + "support_perbill": 781298, + "approval": 51.4880953, + "support": 0.0781298 + }, + { + "time_hours": 327, + "approval_perbill": 513392858, + "support_perbill": 701131, + "approval": 51.3392858, + "support": 0.0701131 + }, + { + "time_hours": 328, + "approval_perbill": 511904762, + "support_perbill": 621426, + "approval": 51.1904762, + "support": 0.0621426 + }, + { + "time_hours": 329, + "approval_perbill": 510416667, + "support_perbill": 542181, + "approval": 51.0416667, + "support": 0.0542181 + }, + { + "time_hours": 330, + "approval_perbill": 508928572, + "support_perbill": 463392, + "approval": 50.8928572, + "support": 0.0463392 + }, + { + "time_hours": 331, + "approval_perbill": 507440477, + "support_perbill": 385053, + "approval": 50.7440477, + "support": 0.0385053 + }, + { + "time_hours": 332, + "approval_perbill": 505952381, + "support_perbill": 307163, + "approval": 50.5952381, + "support": 0.0307163 + }, + { + "time_hours": 333, + "approval_perbill": 504464286, + "support_perbill": 229716, + "approval": 50.4464286, + "support": 0.0229716 + }, + { + "time_hours": 334, + "approval_perbill": 502976191, + "support_perbill": 152709, + "approval": 50.2976191, + "support": 0.0152709 + }, + { + "time_hours": 335, + "approval_perbill": 501488096, + "support_perbill": 76138, + "approval": 50.1488096, + "support": 0.0076138 + }, + { + "time_hours": 336, + "approval_perbill": 500000000, + "support_perbill": 0, + "approval": 50, + "support": 0 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/kusama/opengov_big_tipper.json b/components/utilities/charts_data/kusama/opengov_big_tipper.json new file mode 100644 index 000000000000..f4a8618ab973 --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_big_tipper.json @@ -0,0 +1,2361 @@ +[ + { + "time_hours": 0, + "approval_perbill": 1000000000, + "support_perbill": 500000038, + "approval": 100, + "support": 50.0000038 + }, + { + "time_hours": 1, + "approval_perbill": 995833334, + "support_perbill": 366120266, + "approval": 99.5833334, + "support": 36.6120266 + }, + { + "time_hours": 2, + "approval_perbill": 991666668, + "support_perbill": 288428371, + "approval": 99.1666668, + "support": 28.8428371 + }, + { + "time_hours": 3, + "approval_perbill": 987500001, + "support_perbill": 237687395, + "approval": 98.7500001, + "support": 23.7687395 + }, + { + "time_hours": 4, + "approval_perbill": 983333335, + "support_perbill": 201946501, + "approval": 98.3333335, + "support": 20.1946501 + }, + { + "time_hours": 5, + "approval_perbill": 979166668, + "support_perbill": 175410725, + "approval": 97.9166668, + "support": 17.5410725 + }, + { + "time_hours": 6, + "approval_perbill": 975000002, + "support_perbill": 154929598, + "approval": 97.5000002, + "support": 15.4929598 + }, + { + "time_hours": 7, + "approval_perbill": 970833334, + "support_perbill": 138643083, + "approval": 97.0833334, + "support": 13.8643083 + }, + { + "time_hours": 8, + "approval_perbill": 966666668, + "support_perbill": 125382279, + "approval": 96.6666668, + "support": 12.5382279 + }, + { + "time_hours": 9, + "approval_perbill": 962500001, + "support_perbill": 114375668, + "approval": 96.2500001, + "support": 11.4375668 + }, + { + "time_hours": 10, + "approval_perbill": 958333335, + "support_perbill": 105093501, + "approval": 95.8333335, + "support": 10.5093501 + }, + { + "time_hours": 11, + "approval_perbill": 954166667, + "support_perbill": 97159951, + "approval": 95.4166667, + "support": 9.7159951 + }, + { + "time_hours": 12, + "approval_perbill": 950000001, + "support_perbill": 90301014, + "approval": 95.0000001, + "support": 9.0301014 + }, + { + "time_hours": 13, + "approval_perbill": 945833334, + "support_perbill": 84312199, + "approval": 94.5833334, + "support": 8.4312199 + }, + { + "time_hours": 14, + "approval_perbill": 941666668, + "support_perbill": 79037810, + "approval": 94.1666668, + "support": 7.903781 + }, + { + "time_hours": 15, + "approval_perbill": 937500001, + "support_perbill": 74357200, + "approval": 93.7500001, + "support": 7.43572 + }, + { + "time_hours": 16, + "approval_perbill": 933333335, + "support_perbill": 70175447, + "approval": 93.3333335, + "support": 7.0175447 + }, + { + "time_hours": 17, + "approval_perbill": 929166667, + "support_perbill": 66416830, + "approval": 92.9166667, + "support": 6.641683 + }, + { + "time_hours": 18, + "approval_perbill": 925000001, + "support_perbill": 63020221, + "approval": 92.5000001, + "support": 6.3020221 + }, + { + "time_hours": 19, + "approval_perbill": 920833334, + "support_perbill": 59935722, + "approval": 92.0833334, + "support": 5.9935722 + }, + { + "time_hours": 20, + "approval_perbill": 916666668, + "support_perbill": 57122204, + "approval": 91.6666668, + "support": 5.7122204 + }, + { + "time_hours": 21, + "approval_perbill": 912500000, + "support_perbill": 54545460, + "approval": 91.25, + "support": 5.454546 + }, + { + "time_hours": 22, + "approval_perbill": 908333334, + "support_perbill": 52176808, + "approval": 90.8333334, + "support": 5.2176808 + }, + { + "time_hours": 23, + "approval_perbill": 904166668, + "support_perbill": 49992020, + "approval": 90.4166668, + "support": 4.999202 + }, + { + "time_hours": 24, + "approval_perbill": 900000001, + "support_perbill": 47970485, + "approval": 90.0000001, + "support": 4.7970485 + }, + { + "time_hours": 25, + "approval_perbill": 895833335, + "support_perbill": 46094566, + "approval": 89.5833335, + "support": 4.6094566 + }, + { + "time_hours": 26, + "approval_perbill": 891666668, + "support_perbill": 44349075, + "approval": 89.1666668, + "support": 4.4349075 + }, + { + "time_hours": 27, + "approval_perbill": 887500002, + "support_perbill": 42720867, + "approval": 88.7500002, + "support": 4.2720867 + }, + { + "time_hours": 28, + "approval_perbill": 883333334, + "support_perbill": 41198506, + "approval": 88.3333334, + "support": 4.1198506 + }, + { + "time_hours": 29, + "approval_perbill": 879166668, + "support_perbill": 39771995, + "approval": 87.9166668, + "support": 3.9771995 + }, + { + "time_hours": 30, + "approval_perbill": 875000001, + "support_perbill": 38432558, + "approval": 87.5000001, + "support": 3.8432558 + }, + { + "time_hours": 31, + "approval_perbill": 870833335, + "support_perbill": 37172460, + "approval": 87.0833335, + "support": 3.717246 + }, + { + "time_hours": 32, + "approval_perbill": 866666667, + "support_perbill": 35984852, + "approval": 86.6666667, + "support": 3.5984852 + }, + { + "time_hours": 33, + "approval_perbill": 862500001, + "support_perbill": 34863656, + "approval": 86.2500001, + "support": 3.4863656 + }, + { + "time_hours": 34, + "approval_perbill": 858333334, + "support_perbill": 33803451, + "approval": 85.8333334, + "support": 3.3803451 + }, + { + "time_hours": 35, + "approval_perbill": 854166668, + "support_perbill": 32799393, + "approval": 85.4166668, + "support": 3.2799393 + }, + { + "time_hours": 36, + "approval_perbill": 850000001, + "support_perbill": 31847137, + "approval": 85.0000001, + "support": 3.1847137 + }, + { + "time_hours": 37, + "approval_perbill": 845833335, + "support_perbill": 30942774, + "approval": 84.5833335, + "support": 3.0942774 + }, + { + "time_hours": 38, + "approval_perbill": 841666667, + "support_perbill": 30082781, + "approval": 84.1666667, + "support": 3.0082781 + }, + { + "time_hours": 39, + "approval_perbill": 837500001, + "support_perbill": 29263970, + "approval": 83.7500001, + "support": 2.926397 + }, + { + "time_hours": 40, + "approval_perbill": 833333334, + "support_perbill": 28483451, + "approval": 83.3333334, + "support": 2.8483451 + }, + { + "time_hours": 41, + "approval_perbill": 829166668, + "support_perbill": 27738602, + "approval": 82.9166668, + "support": 2.7738602 + }, + { + "time_hours": 42, + "approval_perbill": 825000000, + "support_perbill": 27027029, + "approval": 82.5, + "support": 2.7027029 + }, + { + "time_hours": 43, + "approval_perbill": 820833334, + "support_perbill": 26346554, + "approval": 82.0833334, + "support": 2.6346554 + }, + { + "time_hours": 44, + "approval_perbill": 816666668, + "support_perbill": 25695180, + "approval": 81.6666668, + "support": 2.569518 + }, + { + "time_hours": 45, + "approval_perbill": 812500001, + "support_perbill": 25071080, + "approval": 81.2500001, + "support": 2.507108 + }, + { + "time_hours": 46, + "approval_perbill": 808333335, + "support_perbill": 24472576, + "approval": 80.8333335, + "support": 2.4472576 + }, + { + "time_hours": 47, + "approval_perbill": 804166668, + "support_perbill": 23898125, + "approval": 80.4166668, + "support": 2.3898125 + }, + { + "time_hours": 48, + "approval_perbill": 800000002, + "support_perbill": 23346306, + "approval": 80.0000002, + "support": 2.3346306 + }, + { + "time_hours": 49, + "approval_perbill": 795833334, + "support_perbill": 22815806, + "approval": 79.5833334, + "support": 2.2815806 + }, + { + "time_hours": 50, + "approval_perbill": 791666668, + "support_perbill": 22305415, + "approval": 79.1666668, + "support": 2.2305415 + }, + { + "time_hours": 51, + "approval_perbill": 787500001, + "support_perbill": 21814009, + "approval": 78.7500001, + "support": 2.1814009 + }, + { + "time_hours": 52, + "approval_perbill": 783333335, + "support_perbill": 21340549, + "approval": 78.3333335, + "support": 2.1340549 + }, + { + "time_hours": 53, + "approval_perbill": 779166667, + "support_perbill": 20884069, + "approval": 77.9166667, + "support": 2.0884069 + }, + { + "time_hours": 54, + "approval_perbill": 775000001, + "support_perbill": 20443673, + "approval": 77.5000001, + "support": 2.0443673 + }, + { + "time_hours": 55, + "approval_perbill": 770833334, + "support_perbill": 20018524, + "approval": 77.0833334, + "support": 2.0018524 + }, + { + "time_hours": 56, + "approval_perbill": 766666668, + "support_perbill": 19607845, + "approval": 76.6666668, + "support": 1.9607845 + }, + { + "time_hours": 57, + "approval_perbill": 762500001, + "support_perbill": 19210908, + "approval": 76.2500001, + "support": 1.9210908 + }, + { + "time_hours": 58, + "approval_perbill": 758333335, + "support_perbill": 18827037, + "approval": 75.8333335, + "support": 1.8827037 + }, + { + "time_hours": 59, + "approval_perbill": 754166667, + "support_perbill": 18455595, + "approval": 75.4166667, + "support": 1.8455595 + }, + { + "time_hours": 60, + "approval_perbill": 750000001, + "support_perbill": 18095989, + "approval": 75.0000001, + "support": 1.8095989 + }, + { + "time_hours": 61, + "approval_perbill": 745833334, + "support_perbill": 17747662, + "approval": 74.5833334, + "support": 1.7747662 + }, + { + "time_hours": 62, + "approval_perbill": 741666668, + "support_perbill": 17410092, + "approval": 74.1666668, + "support": 1.7410092 + }, + { + "time_hours": 63, + "approval_perbill": 737500000, + "support_perbill": 17082787, + "approval": 73.75, + "support": 1.7082787 + }, + { + "time_hours": 64, + "approval_perbill": 733333334, + "support_perbill": 16765287, + "approval": 73.3333334, + "support": 1.6765287 + }, + { + "time_hours": 65, + "approval_perbill": 729166668, + "support_perbill": 16457158, + "approval": 72.9166668, + "support": 1.6457158 + }, + { + "time_hours": 66, + "approval_perbill": 725000001, + "support_perbill": 16157990, + "approval": 72.5000001, + "support": 1.615799 + }, + { + "time_hours": 67, + "approval_perbill": 720833335, + "support_perbill": 15867399, + "approval": 72.0833335, + "support": 1.5867399 + }, + { + "time_hours": 68, + "approval_perbill": 716666668, + "support_perbill": 15585021, + "approval": 71.6666668, + "support": 1.5585021 + }, + { + "time_hours": 69, + "approval_perbill": 712500002, + "support_perbill": 15310512, + "approval": 71.2500002, + "support": 1.5310512 + }, + { + "time_hours": 70, + "approval_perbill": 708333334, + "support_perbill": 15043548, + "approval": 70.8333334, + "support": 1.5043548 + }, + { + "time_hours": 71, + "approval_perbill": 704166668, + "support_perbill": 14783823, + "approval": 70.4166668, + "support": 1.4783823 + }, + { + "time_hours": 72, + "approval_perbill": 700000001, + "support_perbill": 14531045, + "approval": 70.0000001, + "support": 1.4531045 + }, + { + "time_hours": 73, + "approval_perbill": 695833335, + "support_perbill": 14284939, + "approval": 69.5833335, + "support": 1.4284939 + }, + { + "time_hours": 74, + "approval_perbill": 691666667, + "support_perbill": 14045246, + "approval": 69.1666667, + "support": 1.4045246 + }, + { + "time_hours": 75, + "approval_perbill": 687500001, + "support_perbill": 13811717, + "approval": 68.7500001, + "support": 1.3811717 + }, + { + "time_hours": 76, + "approval_perbill": 683333334, + "support_perbill": 13584118, + "approval": 68.3333334, + "support": 1.3584118 + }, + { + "time_hours": 77, + "approval_perbill": 679166668, + "support_perbill": 13362226, + "approval": 67.9166668, + "support": 1.3362226 + }, + { + "time_hours": 78, + "approval_perbill": 675000001, + "support_perbill": 13145828, + "approval": 67.5000001, + "support": 1.3145828 + }, + { + "time_hours": 79, + "approval_perbill": 670833335, + "support_perbill": 12934723, + "approval": 67.0833335, + "support": 1.2934723 + }, + { + "time_hours": 80, + "approval_perbill": 666666667, + "support_perbill": 12728720, + "approval": 66.6666667, + "support": 1.272872 + }, + { + "time_hours": 81, + "approval_perbill": 662500001, + "support_perbill": 12527635, + "approval": 66.2500001, + "support": 1.2527635 + }, + { + "time_hours": 82, + "approval_perbill": 658333334, + "support_perbill": 12331295, + "approval": 65.8333334, + "support": 1.2331295 + }, + { + "time_hours": 83, + "approval_perbill": 654166668, + "support_perbill": 12139533, + "approval": 65.4166668, + "support": 1.2139533 + }, + { + "time_hours": 84, + "approval_perbill": 650000000, + "support_perbill": 11952192, + "approval": 65, + "support": 1.1952192 + }, + { + "time_hours": 85, + "approval_perbill": 645833334, + "support_perbill": 11769120, + "approval": 64.5833334, + "support": 1.176912 + }, + { + "time_hours": 86, + "approval_perbill": 641666668, + "support_perbill": 11590172, + "approval": 64.1666668, + "support": 1.1590172 + }, + { + "time_hours": 87, + "approval_perbill": 637500001, + "support_perbill": 11415212, + "approval": 63.7500001, + "support": 1.1415212 + }, + { + "time_hours": 88, + "approval_perbill": 633333335, + "support_perbill": 11244107, + "approval": 63.3333335, + "support": 1.1244107 + }, + { + "time_hours": 89, + "approval_perbill": 629166668, + "support_perbill": 11076731, + "approval": 62.9166668, + "support": 1.1076731 + }, + { + "time_hours": 90, + "approval_perbill": 625000002, + "support_perbill": 10912963, + "approval": 62.5000002, + "support": 1.0912963 + }, + { + "time_hours": 91, + "approval_perbill": 620833334, + "support_perbill": 10752689, + "approval": 62.0833334, + "support": 1.0752689 + }, + { + "time_hours": 92, + "approval_perbill": 616666668, + "support_perbill": 10595797, + "approval": 61.6666668, + "support": 1.0595797 + }, + { + "time_hours": 93, + "approval_perbill": 612500001, + "support_perbill": 10442182, + "approval": 61.2500001, + "support": 1.0442182 + }, + { + "time_hours": 94, + "approval_perbill": 608333335, + "support_perbill": 10291742, + "approval": 60.8333335, + "support": 1.0291742 + }, + { + "time_hours": 95, + "approval_perbill": 604166667, + "support_perbill": 10144379, + "approval": 60.4166667, + "support": 1.0144379 + }, + { + "time_hours": 96, + "approval_perbill": 600000001, + "support_perbill": 10000001, + "approval": 60.0000001, + "support": 1.0000001 + }, + { + "time_hours": 97, + "approval_perbill": 595833334, + "support_perbill": 9858516, + "approval": 59.5833334, + "support": 0.9858516 + }, + { + "time_hours": 98, + "approval_perbill": 591666668, + "support_perbill": 9719840, + "approval": 59.1666668, + "support": 0.971984 + }, + { + "time_hours": 99, + "approval_perbill": 587500001, + "support_perbill": 9583890, + "approval": 58.7500001, + "support": 0.958389 + }, + { + "time_hours": 100, + "approval_perbill": 583333335, + "support_perbill": 9450585, + "approval": 58.3333335, + "support": 0.9450585 + }, + { + "time_hours": 101, + "approval_perbill": 579166667, + "support_perbill": 9319850, + "approval": 57.9166667, + "support": 0.931985 + }, + { + "time_hours": 102, + "approval_perbill": 575000001, + "support_perbill": 9191610, + "approval": 57.5000001, + "support": 0.919161 + }, + { + "time_hours": 103, + "approval_perbill": 570833334, + "support_perbill": 9065795, + "approval": 57.0833334, + "support": 0.9065795 + }, + { + "time_hours": 104, + "approval_perbill": 566666668, + "support_perbill": 8942338, + "approval": 56.6666668, + "support": 0.8942338 + }, + { + "time_hours": 105, + "approval_perbill": 562500000, + "support_perbill": 8821171, + "approval": 56.25, + "support": 0.8821171 + }, + { + "time_hours": 106, + "approval_perbill": 558333334, + "support_perbill": 8702233, + "approval": 55.8333334, + "support": 0.8702233 + }, + { + "time_hours": 107, + "approval_perbill": 554166668, + "support_perbill": 8585461, + "approval": 55.4166668, + "support": 0.8585461 + }, + { + "time_hours": 108, + "approval_perbill": 550000001, + "support_perbill": 8470798, + "approval": 55.0000001, + "support": 0.8470798 + }, + { + "time_hours": 109, + "approval_perbill": 545833335, + "support_perbill": 8358187, + "approval": 54.5833335, + "support": 0.8358187 + }, + { + "time_hours": 110, + "approval_perbill": 541666668, + "support_perbill": 8247573, + "approval": 54.1666668, + "support": 0.8247573 + }, + { + "time_hours": 111, + "approval_perbill": 537500002, + "support_perbill": 8138904, + "approval": 53.7500002, + "support": 0.8138904 + }, + { + "time_hours": 112, + "approval_perbill": 533333334, + "support_perbill": 8032129, + "approval": 53.3333334, + "support": 0.8032129 + }, + { + "time_hours": 113, + "approval_perbill": 529166668, + "support_perbill": 7927198, + "approval": 52.9166668, + "support": 0.7927198 + }, + { + "time_hours": 114, + "approval_perbill": 525000001, + "support_perbill": 7824065, + "approval": 52.5000001, + "support": 0.7824065 + }, + { + "time_hours": 115, + "approval_perbill": 520833335, + "support_perbill": 7722683, + "approval": 52.0833335, + "support": 0.7722683 + }, + { + "time_hours": 116, + "approval_perbill": 516666667, + "support_perbill": 7623008, + "approval": 51.6666667, + "support": 0.7623008 + }, + { + "time_hours": 117, + "approval_perbill": 512500001, + "support_perbill": 7524998, + "approval": 51.2500001, + "support": 0.7524998 + }, + { + "time_hours": 118, + "approval_perbill": 508333334, + "support_perbill": 7428611, + "approval": 50.8333334, + "support": 0.7428611 + }, + { + "time_hours": 119, + "approval_perbill": 504166668, + "support_perbill": 7333807, + "approval": 50.4166668, + "support": 0.7333807 + }, + { + "time_hours": 120, + "approval_perbill": 500000000, + "support_perbill": 7240547, + "approval": 50, + "support": 0.7240547 + }, + { + "time_hours": 121, + "approval_perbill": 500000000, + "support_perbill": 7148795, + "approval": 50, + "support": 0.7148795 + }, + { + "time_hours": 122, + "approval_perbill": 500000000, + "support_perbill": 7058513, + "approval": 50, + "support": 0.7058513 + }, + { + "time_hours": 123, + "approval_perbill": 500000000, + "support_perbill": 6969667, + "approval": 50, + "support": 0.6969667 + }, + { + "time_hours": 124, + "approval_perbill": 500000000, + "support_perbill": 6882223, + "approval": 50, + "support": 0.6882223 + }, + { + "time_hours": 125, + "approval_perbill": 500000000, + "support_perbill": 6796148, + "approval": 50, + "support": 0.6796148 + }, + { + "time_hours": 126, + "approval_perbill": 500000000, + "support_perbill": 6711409, + "approval": 50, + "support": 0.6711409 + }, + { + "time_hours": 127, + "approval_perbill": 500000000, + "support_perbill": 6627977, + "approval": 50, + "support": 0.6627977 + }, + { + "time_hours": 128, + "approval_perbill": 500000000, + "support_perbill": 6545821, + "approval": 50, + "support": 0.6545821 + }, + { + "time_hours": 129, + "approval_perbill": 500000000, + "support_perbill": 6464912, + "approval": 50, + "support": 0.6464912 + }, + { + "time_hours": 130, + "approval_perbill": 500000000, + "support_perbill": 6385221, + "approval": 50, + "support": 0.6385221 + }, + { + "time_hours": 131, + "approval_perbill": 500000000, + "support_perbill": 6306722, + "approval": 50, + "support": 0.6306722 + }, + { + "time_hours": 132, + "approval_perbill": 500000000, + "support_perbill": 6229388, + "approval": 50, + "support": 0.6229388 + }, + { + "time_hours": 133, + "approval_perbill": 500000000, + "support_perbill": 6153193, + "approval": 50, + "support": 0.6153193 + }, + { + "time_hours": 134, + "approval_perbill": 500000000, + "support_perbill": 6078113, + "approval": 50, + "support": 0.6078113 + }, + { + "time_hours": 135, + "approval_perbill": 500000000, + "support_perbill": 6004122, + "approval": 50, + "support": 0.6004122 + }, + { + "time_hours": 136, + "approval_perbill": 500000000, + "support_perbill": 5931198, + "approval": 50, + "support": 0.5931198 + }, + { + "time_hours": 137, + "approval_perbill": 500000000, + "support_perbill": 5859317, + "approval": 50, + "support": 0.5859317 + }, + { + "time_hours": 138, + "approval_perbill": 500000000, + "support_perbill": 5788458, + "approval": 50, + "support": 0.5788458 + }, + { + "time_hours": 139, + "approval_perbill": 500000000, + "support_perbill": 5718598, + "approval": 50, + "support": 0.5718598 + }, + { + "time_hours": 140, + "approval_perbill": 500000000, + "support_perbill": 5649718, + "approval": 50, + "support": 0.5649718 + }, + { + "time_hours": 141, + "approval_perbill": 500000000, + "support_perbill": 5581795, + "approval": 50, + "support": 0.5581795 + }, + { + "time_hours": 142, + "approval_perbill": 500000000, + "support_perbill": 5514810, + "approval": 50, + "support": 0.551481 + }, + { + "time_hours": 143, + "approval_perbill": 500000000, + "support_perbill": 5448745, + "approval": 50, + "support": 0.5448745 + }, + { + "time_hours": 144, + "approval_perbill": 500000000, + "support_perbill": 5383580, + "approval": 50, + "support": 0.538358 + }, + { + "time_hours": 145, + "approval_perbill": 500000000, + "support_perbill": 5319297, + "approval": 50, + "support": 0.5319297 + }, + { + "time_hours": 146, + "approval_perbill": 500000000, + "support_perbill": 5255878, + "approval": 50, + "support": 0.5255878 + }, + { + "time_hours": 147, + "approval_perbill": 500000000, + "support_perbill": 5193306, + "approval": 50, + "support": 0.5193306 + }, + { + "time_hours": 148, + "approval_perbill": 500000000, + "support_perbill": 5131565, + "approval": 50, + "support": 0.5131565 + }, + { + "time_hours": 149, + "approval_perbill": 500000000, + "support_perbill": 5070636, + "approval": 50, + "support": 0.5070636 + }, + { + "time_hours": 150, + "approval_perbill": 500000000, + "support_perbill": 5010506, + "approval": 50, + "support": 0.5010506 + }, + { + "time_hours": 151, + "approval_perbill": 500000000, + "support_perbill": 4951157, + "approval": 50, + "support": 0.4951157 + }, + { + "time_hours": 152, + "approval_perbill": 500000000, + "support_perbill": 4892576, + "approval": 50, + "support": 0.4892576 + }, + { + "time_hours": 153, + "approval_perbill": 500000000, + "support_perbill": 4834747, + "approval": 50, + "support": 0.4834747 + }, + { + "time_hours": 154, + "approval_perbill": 500000000, + "support_perbill": 4777655, + "approval": 50, + "support": 0.4777655 + }, + { + "time_hours": 155, + "approval_perbill": 500000000, + "support_perbill": 4721287, + "approval": 50, + "support": 0.4721287 + }, + { + "time_hours": 156, + "approval_perbill": 500000000, + "support_perbill": 4665630, + "approval": 50, + "support": 0.466563 + }, + { + "time_hours": 157, + "approval_perbill": 500000000, + "support_perbill": 4610669, + "approval": 50, + "support": 0.4610669 + }, + { + "time_hours": 158, + "approval_perbill": 500000000, + "support_perbill": 4556392, + "approval": 50, + "support": 0.4556392 + }, + { + "time_hours": 159, + "approval_perbill": 500000000, + "support_perbill": 4502785, + "approval": 50, + "support": 0.4502785 + }, + { + "time_hours": 160, + "approval_perbill": 500000000, + "support_perbill": 4449838, + "approval": 50, + "support": 0.4449838 + }, + { + "time_hours": 161, + "approval_perbill": 500000000, + "support_perbill": 4397537, + "approval": 50, + "support": 0.4397537 + }, + { + "time_hours": 162, + "approval_perbill": 500000000, + "support_perbill": 4345871, + "approval": 50, + "support": 0.4345871 + }, + { + "time_hours": 163, + "approval_perbill": 500000000, + "support_perbill": 4294829, + "approval": 50, + "support": 0.4294829 + }, + { + "time_hours": 164, + "approval_perbill": 500000000, + "support_perbill": 4244398, + "approval": 50, + "support": 0.4244398 + }, + { + "time_hours": 165, + "approval_perbill": 500000000, + "support_perbill": 4194569, + "approval": 50, + "support": 0.4194569 + }, + { + "time_hours": 166, + "approval_perbill": 500000000, + "support_perbill": 4145330, + "approval": 50, + "support": 0.414533 + }, + { + "time_hours": 167, + "approval_perbill": 500000000, + "support_perbill": 4096672, + "approval": 50, + "support": 0.4096672 + }, + { + "time_hours": 168, + "approval_perbill": 500000000, + "support_perbill": 4048583, + "approval": 50, + "support": 0.4048583 + }, + { + "time_hours": 169, + "approval_perbill": 500000000, + "support_perbill": 4001054, + "approval": 50, + "support": 0.4001054 + }, + { + "time_hours": 170, + "approval_perbill": 500000000, + "support_perbill": 3954075, + "approval": 50, + "support": 0.3954075 + }, + { + "time_hours": 171, + "approval_perbill": 500000000, + "support_perbill": 3907637, + "approval": 50, + "support": 0.3907637 + }, + { + "time_hours": 172, + "approval_perbill": 500000000, + "support_perbill": 3861731, + "approval": 50, + "support": 0.3861731 + }, + { + "time_hours": 173, + "approval_perbill": 500000000, + "support_perbill": 3816347, + "approval": 50, + "support": 0.3816347 + }, + { + "time_hours": 174, + "approval_perbill": 500000000, + "support_perbill": 3771476, + "approval": 50, + "support": 0.3771476 + }, + { + "time_hours": 175, + "approval_perbill": 500000000, + "support_perbill": 3727110, + "approval": 50, + "support": 0.372711 + }, + { + "time_hours": 176, + "approval_perbill": 500000000, + "support_perbill": 3683241, + "approval": 50, + "support": 0.3683241 + }, + { + "time_hours": 177, + "approval_perbill": 500000000, + "support_perbill": 3639860, + "approval": 50, + "support": 0.363986 + }, + { + "time_hours": 178, + "approval_perbill": 500000000, + "support_perbill": 3596958, + "approval": 50, + "support": 0.3596958 + }, + { + "time_hours": 179, + "approval_perbill": 500000000, + "support_perbill": 3554529, + "approval": 50, + "support": 0.3554529 + }, + { + "time_hours": 180, + "approval_perbill": 500000000, + "support_perbill": 3512564, + "approval": 50, + "support": 0.3512564 + }, + { + "time_hours": 181, + "approval_perbill": 500000000, + "support_perbill": 3471056, + "approval": 50, + "support": 0.3471056 + }, + { + "time_hours": 182, + "approval_perbill": 500000000, + "support_perbill": 3429997, + "approval": 50, + "support": 0.3429997 + }, + { + "time_hours": 183, + "approval_perbill": 500000000, + "support_perbill": 3389380, + "approval": 50, + "support": 0.338938 + }, + { + "time_hours": 184, + "approval_perbill": 500000000, + "support_perbill": 3349198, + "approval": 50, + "support": 0.3349198 + }, + { + "time_hours": 185, + "approval_perbill": 500000000, + "support_perbill": 3309444, + "approval": 50, + "support": 0.3309444 + }, + { + "time_hours": 186, + "approval_perbill": 500000000, + "support_perbill": 3270111, + "approval": 50, + "support": 0.3270111 + }, + { + "time_hours": 187, + "approval_perbill": 500000000, + "support_perbill": 3231193, + "approval": 50, + "support": 0.3231193 + }, + { + "time_hours": 188, + "approval_perbill": 500000000, + "support_perbill": 3192682, + "approval": 50, + "support": 0.3192682 + }, + { + "time_hours": 189, + "approval_perbill": 500000000, + "support_perbill": 3154574, + "approval": 50, + "support": 0.3154574 + }, + { + "time_hours": 190, + "approval_perbill": 500000000, + "support_perbill": 3116861, + "approval": 50, + "support": 0.3116861 + }, + { + "time_hours": 191, + "approval_perbill": 500000000, + "support_perbill": 3079537, + "approval": 50, + "support": 0.3079537 + }, + { + "time_hours": 192, + "approval_perbill": 500000000, + "support_perbill": 3042596, + "approval": 50, + "support": 0.3042596 + }, + { + "time_hours": 193, + "approval_perbill": 500000000, + "support_perbill": 3006033, + "approval": 50, + "support": 0.3006033 + }, + { + "time_hours": 194, + "approval_perbill": 500000000, + "support_perbill": 2969841, + "approval": 50, + "support": 0.2969841 + }, + { + "time_hours": 195, + "approval_perbill": 500000000, + "support_perbill": 2934016, + "approval": 50, + "support": 0.2934016 + }, + { + "time_hours": 196, + "approval_perbill": 500000000, + "support_perbill": 2898550, + "approval": 50, + "support": 0.289855 + }, + { + "time_hours": 197, + "approval_perbill": 500000000, + "support_perbill": 2863440, + "approval": 50, + "support": 0.286344 + }, + { + "time_hours": 198, + "approval_perbill": 500000000, + "support_perbill": 2828680, + "approval": 50, + "support": 0.282868 + }, + { + "time_hours": 199, + "approval_perbill": 500000000, + "support_perbill": 2794264, + "approval": 50, + "support": 0.2794264 + }, + { + "time_hours": 200, + "approval_perbill": 500000000, + "support_perbill": 2760188, + "approval": 50, + "support": 0.2760188 + }, + { + "time_hours": 201, + "approval_perbill": 500000000, + "support_perbill": 2726446, + "approval": 50, + "support": 0.2726446 + }, + { + "time_hours": 202, + "approval_perbill": 500000000, + "support_perbill": 2693034, + "approval": 50, + "support": 0.2693034 + }, + { + "time_hours": 203, + "approval_perbill": 500000000, + "support_perbill": 2659946, + "approval": 50, + "support": 0.2659946 + }, + { + "time_hours": 204, + "approval_perbill": 500000000, + "support_perbill": 2627179, + "approval": 50, + "support": 0.2627179 + }, + { + "time_hours": 205, + "approval_perbill": 500000000, + "support_perbill": 2594727, + "approval": 50, + "support": 0.2594727 + }, + { + "time_hours": 206, + "approval_perbill": 500000000, + "support_perbill": 2562586, + "approval": 50, + "support": 0.2562586 + }, + { + "time_hours": 207, + "approval_perbill": 500000000, + "support_perbill": 2530751, + "approval": 50, + "support": 0.2530751 + }, + { + "time_hours": 208, + "approval_perbill": 500000000, + "support_perbill": 2499219, + "approval": 50, + "support": 0.2499219 + }, + { + "time_hours": 209, + "approval_perbill": 500000000, + "support_perbill": 2467984, + "approval": 50, + "support": 0.2467984 + }, + { + "time_hours": 210, + "approval_perbill": 500000000, + "support_perbill": 2437043, + "approval": 50, + "support": 0.2437043 + }, + { + "time_hours": 211, + "approval_perbill": 500000000, + "support_perbill": 2406391, + "approval": 50, + "support": 0.2406391 + }, + { + "time_hours": 212, + "approval_perbill": 500000000, + "support_perbill": 2376025, + "approval": 50, + "support": 0.2376025 + }, + { + "time_hours": 213, + "approval_perbill": 500000000, + "support_perbill": 2345940, + "approval": 50, + "support": 0.234594 + }, + { + "time_hours": 214, + "approval_perbill": 500000000, + "support_perbill": 2316133, + "approval": 50, + "support": 0.2316133 + }, + { + "time_hours": 215, + "approval_perbill": 500000000, + "support_perbill": 2286599, + "approval": 50, + "support": 0.2286599 + }, + { + "time_hours": 216, + "approval_perbill": 500000000, + "support_perbill": 2257336, + "approval": 50, + "support": 0.2257336 + }, + { + "time_hours": 217, + "approval_perbill": 500000000, + "support_perbill": 2228339, + "approval": 50, + "support": 0.2228339 + }, + { + "time_hours": 218, + "approval_perbill": 500000000, + "support_perbill": 2199604, + "approval": 50, + "support": 0.2199604 + }, + { + "time_hours": 219, + "approval_perbill": 500000000, + "support_perbill": 2171129, + "approval": 50, + "support": 0.2171129 + }, + { + "time_hours": 220, + "approval_perbill": 500000000, + "support_perbill": 2142909, + "approval": 50, + "support": 0.2142909 + }, + { + "time_hours": 221, + "approval_perbill": 500000000, + "support_perbill": 2114942, + "approval": 50, + "support": 0.2114942 + }, + { + "time_hours": 222, + "approval_perbill": 500000000, + "support_perbill": 2087224, + "approval": 50, + "support": 0.2087224 + }, + { + "time_hours": 223, + "approval_perbill": 500000000, + "support_perbill": 2059751, + "approval": 50, + "support": 0.2059751 + }, + { + "time_hours": 224, + "approval_perbill": 500000000, + "support_perbill": 2032520, + "approval": 50, + "support": 0.203252 + }, + { + "time_hours": 225, + "approval_perbill": 500000000, + "support_perbill": 2005528, + "approval": 50, + "support": 0.2005528 + }, + { + "time_hours": 226, + "approval_perbill": 500000000, + "support_perbill": 1978773, + "approval": 50, + "support": 0.1978773 + }, + { + "time_hours": 227, + "approval_perbill": 500000000, + "support_perbill": 1952250, + "approval": 50, + "support": 0.195225 + }, + { + "time_hours": 228, + "approval_perbill": 500000000, + "support_perbill": 1925957, + "approval": 50, + "support": 0.1925957 + }, + { + "time_hours": 229, + "approval_perbill": 500000000, + "support_perbill": 1899891, + "approval": 50, + "support": 0.1899891 + }, + { + "time_hours": 230, + "approval_perbill": 500000000, + "support_perbill": 1874049, + "approval": 50, + "support": 0.1874049 + }, + { + "time_hours": 231, + "approval_perbill": 500000000, + "support_perbill": 1848428, + "approval": 50, + "support": 0.1848428 + }, + { + "time_hours": 232, + "approval_perbill": 500000000, + "support_perbill": 1823026, + "approval": 50, + "support": 0.1823026 + }, + { + "time_hours": 233, + "approval_perbill": 500000000, + "support_perbill": 1797839, + "approval": 50, + "support": 0.1797839 + }, + { + "time_hours": 234, + "approval_perbill": 500000000, + "support_perbill": 1772864, + "approval": 50, + "support": 0.1772864 + }, + { + "time_hours": 235, + "approval_perbill": 500000000, + "support_perbill": 1748100, + "approval": 50, + "support": 0.17481 + }, + { + "time_hours": 236, + "approval_perbill": 500000000, + "support_perbill": 1723543, + "approval": 50, + "support": 0.1723543 + }, + { + "time_hours": 237, + "approval_perbill": 500000000, + "support_perbill": 1699191, + "approval": 50, + "support": 0.1699191 + }, + { + "time_hours": 238, + "approval_perbill": 500000000, + "support_perbill": 1675041, + "approval": 50, + "support": 0.1675041 + }, + { + "time_hours": 239, + "approval_perbill": 500000000, + "support_perbill": 1651091, + "approval": 50, + "support": 0.1651091 + }, + { + "time_hours": 240, + "approval_perbill": 500000000, + "support_perbill": 1627339, + "approval": 50, + "support": 0.1627339 + }, + { + "time_hours": 241, + "approval_perbill": 500000000, + "support_perbill": 1603781, + "approval": 50, + "support": 0.1603781 + }, + { + "time_hours": 242, + "approval_perbill": 500000000, + "support_perbill": 1580416, + "approval": 50, + "support": 0.1580416 + }, + { + "time_hours": 243, + "approval_perbill": 500000000, + "support_perbill": 1557241, + "approval": 50, + "support": 0.1557241 + }, + { + "time_hours": 244, + "approval_perbill": 500000000, + "support_perbill": 1534253, + "approval": 50, + "support": 0.1534253 + }, + { + "time_hours": 245, + "approval_perbill": 500000000, + "support_perbill": 1511452, + "approval": 50, + "support": 0.1511452 + }, + { + "time_hours": 246, + "approval_perbill": 500000000, + "support_perbill": 1488833, + "approval": 50, + "support": 0.1488833 + }, + { + "time_hours": 247, + "approval_perbill": 500000000, + "support_perbill": 1466396, + "approval": 50, + "support": 0.1466396 + }, + { + "time_hours": 248, + "approval_perbill": 500000000, + "support_perbill": 1444138, + "approval": 50, + "support": 0.1444138 + }, + { + "time_hours": 249, + "approval_perbill": 500000000, + "support_perbill": 1422056, + "approval": 50, + "support": 0.1422056 + }, + { + "time_hours": 250, + "approval_perbill": 500000000, + "support_perbill": 1400149, + "approval": 50, + "support": 0.1400149 + }, + { + "time_hours": 251, + "approval_perbill": 500000000, + "support_perbill": 1378415, + "approval": 50, + "support": 0.1378415 + }, + { + "time_hours": 252, + "approval_perbill": 500000000, + "support_perbill": 1356852, + "approval": 50, + "support": 0.1356852 + }, + { + "time_hours": 253, + "approval_perbill": 500000000, + "support_perbill": 1335457, + "approval": 50, + "support": 0.1335457 + }, + { + "time_hours": 254, + "approval_perbill": 500000000, + "support_perbill": 1314228, + "approval": 50, + "support": 0.1314228 + }, + { + "time_hours": 255, + "approval_perbill": 500000000, + "support_perbill": 1293165, + "approval": 50, + "support": 0.1293165 + }, + { + "time_hours": 256, + "approval_perbill": 500000000, + "support_perbill": 1272264, + "approval": 50, + "support": 0.1272264 + }, + { + "time_hours": 257, + "approval_perbill": 500000000, + "support_perbill": 1251524, + "approval": 50, + "support": 0.1251524 + }, + { + "time_hours": 258, + "approval_perbill": 500000000, + "support_perbill": 1230944, + "approval": 50, + "support": 0.1230944 + }, + { + "time_hours": 259, + "approval_perbill": 500000000, + "support_perbill": 1210520, + "approval": 50, + "support": 0.121052 + }, + { + "time_hours": 260, + "approval_perbill": 500000000, + "support_perbill": 1190252, + "approval": 50, + "support": 0.1190252 + }, + { + "time_hours": 261, + "approval_perbill": 500000000, + "support_perbill": 1170138, + "approval": 50, + "support": 0.1170138 + }, + { + "time_hours": 262, + "approval_perbill": 500000000, + "support_perbill": 1150175, + "approval": 50, + "support": 0.1150175 + }, + { + "time_hours": 263, + "approval_perbill": 500000000, + "support_perbill": 1130363, + "approval": 50, + "support": 0.1130363 + }, + { + "time_hours": 264, + "approval_perbill": 500000000, + "support_perbill": 1110699, + "approval": 50, + "support": 0.1110699 + }, + { + "time_hours": 265, + "approval_perbill": 500000000, + "support_perbill": 1091182, + "approval": 50, + "support": 0.1091182 + }, + { + "time_hours": 266, + "approval_perbill": 500000000, + "support_perbill": 1071811, + "approval": 50, + "support": 0.1071811 + }, + { + "time_hours": 267, + "approval_perbill": 500000000, + "support_perbill": 1052583, + "approval": 50, + "support": 0.1052583 + }, + { + "time_hours": 268, + "approval_perbill": 500000000, + "support_perbill": 1033497, + "approval": 50, + "support": 0.1033497 + }, + { + "time_hours": 269, + "approval_perbill": 500000000, + "support_perbill": 1014551, + "approval": 50, + "support": 0.1014551 + }, + { + "time_hours": 270, + "approval_perbill": 500000000, + "support_perbill": 995745, + "approval": 50, + "support": 0.0995745 + }, + { + "time_hours": 271, + "approval_perbill": 500000000, + "support_perbill": 977076, + "approval": 50, + "support": 0.0977076 + }, + { + "time_hours": 272, + "approval_perbill": 500000000, + "support_perbill": 958542, + "approval": 50, + "support": 0.0958542 + }, + { + "time_hours": 273, + "approval_perbill": 500000000, + "support_perbill": 940144, + "approval": 50, + "support": 0.0940144 + }, + { + "time_hours": 274, + "approval_perbill": 500000000, + "support_perbill": 921878, + "approval": 50, + "support": 0.0921878 + }, + { + "time_hours": 275, + "approval_perbill": 500000000, + "support_perbill": 903743, + "approval": 50, + "support": 0.0903743 + }, + { + "time_hours": 276, + "approval_perbill": 500000000, + "support_perbill": 885739, + "approval": 50, + "support": 0.0885739 + }, + { + "time_hours": 277, + "approval_perbill": 500000000, + "support_perbill": 867863, + "approval": 50, + "support": 0.0867863 + }, + { + "time_hours": 278, + "approval_perbill": 500000000, + "support_perbill": 850115, + "approval": 50, + "support": 0.0850115 + }, + { + "time_hours": 279, + "approval_perbill": 500000000, + "support_perbill": 832493, + "approval": 50, + "support": 0.0832493 + }, + { + "time_hours": 280, + "approval_perbill": 500000000, + "support_perbill": 814995, + "approval": 50, + "support": 0.0814995 + }, + { + "time_hours": 281, + "approval_perbill": 500000000, + "support_perbill": 797621, + "approval": 50, + "support": 0.0797621 + }, + { + "time_hours": 282, + "approval_perbill": 500000000, + "support_perbill": 780369, + "approval": 50, + "support": 0.0780369 + }, + { + "time_hours": 283, + "approval_perbill": 500000000, + "support_perbill": 763237, + "approval": 50, + "support": 0.0763237 + }, + { + "time_hours": 284, + "approval_perbill": 500000000, + "support_perbill": 746225, + "approval": 50, + "support": 0.0746225 + }, + { + "time_hours": 285, + "approval_perbill": 500000000, + "support_perbill": 729331, + "approval": 50, + "support": 0.0729331 + }, + { + "time_hours": 286, + "approval_perbill": 500000000, + "support_perbill": 712555, + "approval": 50, + "support": 0.0712555 + }, + { + "time_hours": 287, + "approval_perbill": 500000000, + "support_perbill": 695894, + "approval": 50, + "support": 0.0695894 + }, + { + "time_hours": 288, + "approval_perbill": 500000000, + "support_perbill": 679347, + "approval": 50, + "support": 0.0679347 + }, + { + "time_hours": 289, + "approval_perbill": 500000000, + "support_perbill": 662914, + "approval": 50, + "support": 0.0662914 + }, + { + "time_hours": 290, + "approval_perbill": 500000000, + "support_perbill": 646594, + "approval": 50, + "support": 0.0646594 + }, + { + "time_hours": 291, + "approval_perbill": 500000000, + "support_perbill": 630384, + "approval": 50, + "support": 0.0630384 + }, + { + "time_hours": 292, + "approval_perbill": 500000000, + "support_perbill": 614284, + "approval": 50, + "support": 0.0614284 + }, + { + "time_hours": 293, + "approval_perbill": 500000000, + "support_perbill": 598294, + "approval": 50, + "support": 0.0598294 + }, + { + "time_hours": 294, + "approval_perbill": 500000000, + "support_perbill": 582411, + "approval": 50, + "support": 0.0582411 + }, + { + "time_hours": 295, + "approval_perbill": 500000000, + "support_perbill": 566634, + "approval": 50, + "support": 0.0566634 + }, + { + "time_hours": 296, + "approval_perbill": 500000000, + "support_perbill": 550964, + "approval": 50, + "support": 0.0550964 + }, + { + "time_hours": 297, + "approval_perbill": 500000000, + "support_perbill": 535397, + "approval": 50, + "support": 0.0535397 + }, + { + "time_hours": 298, + "approval_perbill": 500000000, + "support_perbill": 519935, + "approval": 50, + "support": 0.0519935 + }, + { + "time_hours": 299, + "approval_perbill": 500000000, + "support_perbill": 504575, + "approval": 50, + "support": 0.0504575 + }, + { + "time_hours": 300, + "approval_perbill": 500000000, + "support_perbill": 489316, + "approval": 50, + "support": 0.0489316 + }, + { + "time_hours": 301, + "approval_perbill": 500000000, + "support_perbill": 474158, + "approval": 50, + "support": 0.0474158 + }, + { + "time_hours": 302, + "approval_perbill": 500000000, + "support_perbill": 459099, + "approval": 50, + "support": 0.0459099 + }, + { + "time_hours": 303, + "approval_perbill": 500000000, + "support_perbill": 444139, + "approval": 50, + "support": 0.0444139 + }, + { + "time_hours": 304, + "approval_perbill": 500000000, + "support_perbill": 429276, + "approval": 50, + "support": 0.0429276 + }, + { + "time_hours": 305, + "approval_perbill": 500000000, + "support_perbill": 414510, + "approval": 50, + "support": 0.041451 + }, + { + "time_hours": 306, + "approval_perbill": 500000000, + "support_perbill": 399839, + "approval": 50, + "support": 0.0399839 + }, + { + "time_hours": 307, + "approval_perbill": 500000000, + "support_perbill": 385264, + "approval": 50, + "support": 0.0385264 + }, + { + "time_hours": 308, + "approval_perbill": 500000000, + "support_perbill": 370782, + "approval": 50, + "support": 0.0370782 + }, + { + "time_hours": 309, + "approval_perbill": 500000000, + "support_perbill": 356393, + "approval": 50, + "support": 0.0356393 + }, + { + "time_hours": 310, + "approval_perbill": 500000000, + "support_perbill": 342096, + "approval": 50, + "support": 0.0342096 + }, + { + "time_hours": 311, + "approval_perbill": 500000000, + "support_perbill": 327890, + "approval": 50, + "support": 0.032789 + }, + { + "time_hours": 312, + "approval_perbill": 500000000, + "support_perbill": 313774, + "approval": 50, + "support": 0.0313774 + }, + { + "time_hours": 313, + "approval_perbill": 500000000, + "support_perbill": 299748, + "approval": 50, + "support": 0.0299748 + }, + { + "time_hours": 314, + "approval_perbill": 500000000, + "support_perbill": 285810, + "approval": 50, + "support": 0.028581 + }, + { + "time_hours": 315, + "approval_perbill": 500000000, + "support_perbill": 271960, + "approval": 50, + "support": 0.027196 + }, + { + "time_hours": 316, + "approval_perbill": 500000000, + "support_perbill": 258197, + "approval": 50, + "support": 0.0258197 + }, + { + "time_hours": 317, + "approval_perbill": 500000000, + "support_perbill": 244520, + "approval": 50, + "support": 0.024452 + }, + { + "time_hours": 318, + "approval_perbill": 500000000, + "support_perbill": 230928, + "approval": 50, + "support": 0.0230928 + }, + { + "time_hours": 319, + "approval_perbill": 500000000, + "support_perbill": 217421, + "approval": 50, + "support": 0.0217421 + }, + { + "time_hours": 320, + "approval_perbill": 500000000, + "support_perbill": 203998, + "approval": 50, + "support": 0.0203998 + }, + { + "time_hours": 321, + "approval_perbill": 500000000, + "support_perbill": 190657, + "approval": 50, + "support": 0.0190657 + }, + { + "time_hours": 322, + "approval_perbill": 500000000, + "support_perbill": 177399, + "approval": 50, + "support": 0.0177399 + }, + { + "time_hours": 323, + "approval_perbill": 500000000, + "support_perbill": 164222, + "approval": 50, + "support": 0.0164222 + }, + { + "time_hours": 324, + "approval_perbill": 500000000, + "support_perbill": 151125, + "approval": 50, + "support": 0.0151125 + }, + { + "time_hours": 325, + "approval_perbill": 500000000, + "support_perbill": 138109, + "approval": 50, + "support": 0.0138109 + }, + { + "time_hours": 326, + "approval_perbill": 500000000, + "support_perbill": 125171, + "approval": 50, + "support": 0.0125171 + }, + { + "time_hours": 327, + "approval_perbill": 500000000, + "support_perbill": 112313, + "approval": 50, + "support": 0.0112313 + }, + { + "time_hours": 328, + "approval_perbill": 500000000, + "support_perbill": 99532, + "approval": 50, + "support": 0.0099532 + }, + { + "time_hours": 329, + "approval_perbill": 500000000, + "support_perbill": 86827, + "approval": 50, + "support": 0.0086827 + }, + { + "time_hours": 330, + "approval_perbill": 500000000, + "support_perbill": 74200, + "approval": 50, + "support": 0.00742 + }, + { + "time_hours": 331, + "approval_perbill": 500000000, + "support_perbill": 61648, + "approval": 50, + "support": 0.0061648 + }, + { + "time_hours": 332, + "approval_perbill": 500000000, + "support_perbill": 49171, + "approval": 50, + "support": 0.0049171 + }, + { + "time_hours": 333, + "approval_perbill": 500000000, + "support_perbill": 36768, + "approval": 50, + "support": 0.0036768 + }, + { + "time_hours": 334, + "approval_perbill": 500000000, + "support_perbill": 24439, + "approval": 50, + "support": 0.0024439 + }, + { + "time_hours": 335, + "approval_perbill": 500000000, + "support_perbill": 12183, + "approval": 50, + "support": 0.0012183 + }, + { + "time_hours": 336, + "approval_perbill": 500000000, + "support_perbill": 0, + "approval": 50, + "support": 0 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/kusama/opengov_medium_spender.json b/components/utilities/charts_data/kusama/opengov_medium_spender.json new file mode 100644 index 000000000000..59292f18da67 --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_medium_spender.json @@ -0,0 +1,2361 @@ +[ + { + "time_hours": 0, + "approval_perbill": 1000000000, + "support_perbill": 500000008, + "approval": 100, + "support": 50.0000008 + }, + { + "time_hours": 1, + "approval_perbill": 998188407, + "support_perbill": 450571639, + "approval": 99.8188407, + "support": 45.0571639 + }, + { + "time_hours": 2, + "approval_perbill": 996376813, + "support_perbill": 409815977, + "approval": 99.6376813, + "support": 40.9815977 + }, + { + "time_hours": 3, + "approval_perbill": 994565218, + "support_perbill": 375634538, + "approval": 99.4565218, + "support": 37.5634538 + }, + { + "time_hours": 4, + "approval_perbill": 992753624, + "support_perbill": 346555348, + "approval": 99.2753624, + "support": 34.6555348 + }, + { + "time_hours": 5, + "approval_perbill": 990942030, + "support_perbill": 321515318, + "approval": 99.094203, + "support": 32.1515318 + }, + { + "time_hours": 6, + "approval_perbill": 989130436, + "support_perbill": 299727543, + "approval": 98.9130436, + "support": 29.9727543 + }, + { + "time_hours": 7, + "approval_perbill": 987318841, + "support_perbill": 280597034, + "approval": 98.7318841, + "support": 28.0597034 + }, + { + "time_hours": 8, + "approval_perbill": 985507247, + "support_perbill": 263665616, + "approval": 98.5507247, + "support": 26.3665616 + }, + { + "time_hours": 9, + "approval_perbill": 983695653, + "support_perbill": 248574704, + "approval": 98.3695653, + "support": 24.8574704 + }, + { + "time_hours": 10, + "approval_perbill": 981884059, + "support_perbill": 235039674, + "approval": 98.1884059, + "support": 23.5039674 + }, + { + "time_hours": 11, + "approval_perbill": 980072464, + "support_perbill": 222831693, + "approval": 98.0072464, + "support": 22.2831693 + }, + { + "time_hours": 12, + "approval_perbill": 978260870, + "support_perbill": 211764724, + "approval": 97.826087, + "support": 21.1764724 + }, + { + "time_hours": 13, + "approval_perbill": 976449276, + "support_perbill": 201685935, + "approval": 97.6449276, + "support": 20.1685935 + }, + { + "time_hours": 14, + "approval_perbill": 974637682, + "support_perbill": 192468636, + "approval": 97.4637682, + "support": 19.2468636 + }, + { + "time_hours": 15, + "approval_perbill": 972826088, + "support_perbill": 184006894, + "approval": 97.2826088, + "support": 18.4006894 + }, + { + "time_hours": 16, + "approval_perbill": 971014494, + "support_perbill": 176211470, + "approval": 97.1014494, + "support": 17.621147 + }, + { + "time_hours": 17, + "approval_perbill": 969202899, + "support_perbill": 169006637, + "approval": 96.9202899, + "support": 16.9006637 + }, + { + "time_hours": 18, + "approval_perbill": 967391305, + "support_perbill": 162327733, + "approval": 96.7391305, + "support": 16.2327733 + }, + { + "time_hours": 19, + "approval_perbill": 965579711, + "support_perbill": 156119196, + "approval": 96.5579711, + "support": 15.6119196 + }, + { + "time_hours": 20, + "approval_perbill": 963768117, + "support_perbill": 150333030, + "approval": 96.3768117, + "support": 15.033303 + }, + { + "time_hours": 21, + "approval_perbill": 961956522, + "support_perbill": 144927549, + "approval": 96.1956522, + "support": 14.4927549 + }, + { + "time_hours": 22, + "approval_perbill": 960144928, + "support_perbill": 139866383, + "approval": 96.0144928, + "support": 13.9866383 + }, + { + "time_hours": 23, + "approval_perbill": 958333334, + "support_perbill": 135117648, + "approval": 95.8333334, + "support": 13.5117648 + }, + { + "time_hours": 24, + "approval_perbill": 956521740, + "support_perbill": 130653279, + "approval": 95.652174, + "support": 13.0653279 + }, + { + "time_hours": 25, + "approval_perbill": 954710146, + "support_perbill": 126448478, + "approval": 95.4710146, + "support": 12.6448478 + }, + { + "time_hours": 26, + "approval_perbill": 952898551, + "support_perbill": 122481244, + "approval": 95.2898551, + "support": 12.2481244 + }, + { + "time_hours": 27, + "approval_perbill": 951086958, + "support_perbill": 118732000, + "approval": 95.1086958, + "support": 11.8732 + }, + { + "time_hours": 28, + "approval_perbill": 949275363, + "support_perbill": 115183257, + "approval": 94.9275363, + "support": 11.5183257 + }, + { + "time_hours": 29, + "approval_perbill": 947463769, + "support_perbill": 111819352, + "approval": 94.7463769, + "support": 11.1819352 + }, + { + "time_hours": 30, + "approval_perbill": 945652175, + "support_perbill": 108626208, + "approval": 94.5652175, + "support": 10.8626208 + }, + { + "time_hours": 31, + "approval_perbill": 943840581, + "support_perbill": 105591148, + "approval": 94.3840581, + "support": 10.5591148 + }, + { + "time_hours": 32, + "approval_perbill": 942028986, + "support_perbill": 102702712, + "approval": 94.2028986, + "support": 10.2702712 + }, + { + "time_hours": 33, + "approval_perbill": 940217392, + "support_perbill": 99950530, + "approval": 94.0217392, + "support": 9.995053 + }, + { + "time_hours": 34, + "approval_perbill": 938405798, + "support_perbill": 97325178, + "approval": 93.8405798, + "support": 9.7325178 + }, + { + "time_hours": 35, + "approval_perbill": 936594204, + "support_perbill": 94818091, + "approval": 93.6594204, + "support": 9.4818091 + }, + { + "time_hours": 36, + "approval_perbill": 934782609, + "support_perbill": 92421451, + "approval": 93.4782609, + "support": 9.2421451 + }, + { + "time_hours": 37, + "approval_perbill": 932971015, + "support_perbill": 90128118, + "approval": 93.2971015, + "support": 9.0128118 + }, + { + "time_hours": 38, + "approval_perbill": 931159421, + "support_perbill": 87931552, + "approval": 93.1159421, + "support": 8.7931552 + }, + { + "time_hours": 39, + "approval_perbill": 929347827, + "support_perbill": 85825756, + "approval": 92.9347827, + "support": 8.5825756 + }, + { + "time_hours": 40, + "approval_perbill": 927536232, + "support_perbill": 83805218, + "approval": 92.7536232, + "support": 8.3805218 + }, + { + "time_hours": 41, + "approval_perbill": 925724638, + "support_perbill": 81864862, + "approval": 92.5724638, + "support": 8.1864862 + }, + { + "time_hours": 42, + "approval_perbill": 923913044, + "support_perbill": 80000008, + "approval": 92.3913044, + "support": 8.0000008 + }, + { + "time_hours": 43, + "approval_perbill": 922101450, + "support_perbill": 78206334, + "approval": 92.210145, + "support": 7.8206334 + }, + { + "time_hours": 44, + "approval_perbill": 920289856, + "support_perbill": 76479840, + "approval": 92.0289856, + "support": 7.647984 + }, + { + "time_hours": 45, + "approval_perbill": 918478262, + "support_perbill": 74816822, + "approval": 91.8478262, + "support": 7.4816822 + }, + { + "time_hours": 46, + "approval_perbill": 916666668, + "support_perbill": 73213842, + "approval": 91.6666668, + "support": 7.3213842 + }, + { + "time_hours": 47, + "approval_perbill": 914855073, + "support_perbill": 71667707, + "approval": 91.4855073, + "support": 7.1667707 + }, + { + "time_hours": 48, + "approval_perbill": 913043479, + "support_perbill": 70175446, + "approval": 91.3043479, + "support": 7.0175446 + }, + { + "time_hours": 49, + "approval_perbill": 911231885, + "support_perbill": 68734290, + "approval": 91.1231885, + "support": 6.873429 + }, + { + "time_hours": 50, + "approval_perbill": 909420291, + "support_perbill": 67341660, + "approval": 90.9420291, + "support": 6.734166 + }, + { + "time_hours": 51, + "approval_perbill": 907608696, + "support_perbill": 65995144, + "approval": 90.7608696, + "support": 6.5995144 + }, + { + "time_hours": 52, + "approval_perbill": 905797102, + "support_perbill": 64692489, + "approval": 90.5797102, + "support": 6.4692489 + }, + { + "time_hours": 53, + "approval_perbill": 903985508, + "support_perbill": 63431588, + "approval": 90.3985508, + "support": 6.3431588 + }, + { + "time_hours": 54, + "approval_perbill": 902173914, + "support_perbill": 62210463, + "approval": 90.2173914, + "support": 6.2210463 + }, + { + "time_hours": 55, + "approval_perbill": 900362319, + "support_perbill": 61027262, + "approval": 90.0362319, + "support": 6.1027262 + }, + { + "time_hours": 56, + "approval_perbill": 898550725, + "support_perbill": 59880246, + "approval": 89.8550725, + "support": 5.9880246 + }, + { + "time_hours": 57, + "approval_perbill": 896739131, + "support_perbill": 58767778, + "approval": 89.6739131, + "support": 5.8767778 + }, + { + "time_hours": 58, + "approval_perbill": 894927537, + "support_perbill": 57688323, + "approval": 89.4927537, + "support": 5.7688323 + }, + { + "time_hours": 59, + "approval_perbill": 893115943, + "support_perbill": 56640431, + "approval": 89.3115943, + "support": 5.6640431 + }, + { + "time_hours": 60, + "approval_perbill": 891304349, + "support_perbill": 55622738, + "approval": 89.1304349, + "support": 5.5622738 + }, + { + "time_hours": 61, + "approval_perbill": 889492754, + "support_perbill": 54633958, + "approval": 88.9492754, + "support": 5.4633958 + }, + { + "time_hours": 62, + "approval_perbill": 887681160, + "support_perbill": 53672875, + "approval": 88.768116, + "support": 5.3672875 + }, + { + "time_hours": 63, + "approval_perbill": 885869566, + "support_perbill": 52738342, + "approval": 88.5869566, + "support": 5.2738342 + }, + { + "time_hours": 64, + "approval_perbill": 884057972, + "support_perbill": 51829273, + "approval": 88.4057972, + "support": 5.1829273 + }, + { + "time_hours": 65, + "approval_perbill": 882246378, + "support_perbill": 50944643, + "approval": 88.2246378, + "support": 5.0944643 + }, + { + "time_hours": 66, + "approval_perbill": 880434783, + "support_perbill": 50083477, + "approval": 88.0434783, + "support": 5.0083477 + }, + { + "time_hours": 67, + "approval_perbill": 878623189, + "support_perbill": 49244856, + "approval": 87.8623189, + "support": 4.9244856 + }, + { + "time_hours": 68, + "approval_perbill": 876811595, + "support_perbill": 48427905, + "approval": 87.6811595, + "support": 4.8427905 + }, + { + "time_hours": 69, + "approval_perbill": 875000001, + "support_perbill": 47631795, + "approval": 87.5000001, + "support": 4.7631795 + }, + { + "time_hours": 70, + "approval_perbill": 873188406, + "support_perbill": 46855738, + "approval": 87.3188406, + "support": 4.6855738 + }, + { + "time_hours": 71, + "approval_perbill": 871376813, + "support_perbill": 46098987, + "approval": 87.1376813, + "support": 4.6098987 + }, + { + "time_hours": 72, + "approval_perbill": 869565218, + "support_perbill": 45360829, + "approval": 86.9565218, + "support": 4.5360829 + }, + { + "time_hours": 73, + "approval_perbill": 867753624, + "support_perbill": 44640588, + "approval": 86.7753624, + "support": 4.4640588 + }, + { + "time_hours": 74, + "approval_perbill": 865942030, + "support_perbill": 43937620, + "approval": 86.594203, + "support": 4.393762 + }, + { + "time_hours": 75, + "approval_perbill": 864130436, + "support_perbill": 43251309, + "approval": 86.4130436, + "support": 4.3251309 + }, + { + "time_hours": 76, + "approval_perbill": 862318841, + "support_perbill": 42581072, + "approval": 86.2318841, + "support": 4.2581072 + }, + { + "time_hours": 77, + "approval_perbill": 860507247, + "support_perbill": 41926350, + "approval": 86.0507247, + "support": 4.192635 + }, + { + "time_hours": 78, + "approval_perbill": 858695653, + "support_perbill": 41286610, + "approval": 85.8695653, + "support": 4.128661 + }, + { + "time_hours": 79, + "approval_perbill": 856884059, + "support_perbill": 40661344, + "approval": 85.6884059, + "support": 4.0661344 + }, + { + "time_hours": 80, + "approval_perbill": 855072464, + "support_perbill": 40050066, + "approval": 85.5072464, + "support": 4.0050066 + }, + { + "time_hours": 81, + "approval_perbill": 853260870, + "support_perbill": 39452313, + "approval": 85.326087, + "support": 3.9452313 + }, + { + "time_hours": 82, + "approval_perbill": 851449276, + "support_perbill": 38867639, + "approval": 85.1449276, + "support": 3.8867639 + }, + { + "time_hours": 83, + "approval_perbill": 849637682, + "support_perbill": 38295622, + "approval": 84.9637682, + "support": 3.8295622 + }, + { + "time_hours": 84, + "approval_perbill": 847826087, + "support_perbill": 37735853, + "approval": 84.7826087, + "support": 3.7735853 + }, + { + "time_hours": 85, + "approval_perbill": 846014493, + "support_perbill": 37187943, + "approval": 84.6014493, + "support": 3.7187943 + }, + { + "time_hours": 86, + "approval_perbill": 844202900, + "support_perbill": 36651521, + "approval": 84.42029, + "support": 3.6651521 + }, + { + "time_hours": 87, + "approval_perbill": 842391305, + "support_perbill": 36126228, + "approval": 84.2391305, + "support": 3.6126228 + }, + { + "time_hours": 88, + "approval_perbill": 840579711, + "support_perbill": 35611721, + "approval": 84.0579711, + "support": 3.5611721 + }, + { + "time_hours": 89, + "approval_perbill": 838768117, + "support_perbill": 35107672, + "approval": 83.8768117, + "support": 3.5107672 + }, + { + "time_hours": 90, + "approval_perbill": 836956523, + "support_perbill": 34613764, + "approval": 83.6956523, + "support": 3.4613764 + }, + { + "time_hours": 91, + "approval_perbill": 835144928, + "support_perbill": 34129696, + "approval": 83.5144928, + "support": 3.4129696 + }, + { + "time_hours": 92, + "approval_perbill": 833333334, + "support_perbill": 33655176, + "approval": 83.3333334, + "support": 3.3655176 + }, + { + "time_hours": 93, + "approval_perbill": 831521740, + "support_perbill": 33189923, + "approval": 83.152174, + "support": 3.3189923 + }, + { + "time_hours": 94, + "approval_perbill": 829710146, + "support_perbill": 32733670, + "approval": 82.9710146, + "support": 3.273367 + }, + { + "time_hours": 95, + "approval_perbill": 827898551, + "support_perbill": 32286157, + "approval": 82.7898551, + "support": 3.2286157 + }, + { + "time_hours": 96, + "approval_perbill": 826086957, + "support_perbill": 31847137, + "approval": 82.6086957, + "support": 3.1847137 + }, + { + "time_hours": 97, + "approval_perbill": 824275363, + "support_perbill": 31416368, + "approval": 82.4275363, + "support": 3.1416368 + }, + { + "time_hours": 98, + "approval_perbill": 822463769, + "support_perbill": 30993622, + "approval": 82.2463769, + "support": 3.0993622 + }, + { + "time_hours": 99, + "approval_perbill": 820652174, + "support_perbill": 30578675, + "approval": 82.0652174, + "support": 3.0578675 + }, + { + "time_hours": 100, + "approval_perbill": 818840580, + "support_perbill": 30171314, + "approval": 81.884058, + "support": 3.0171314 + }, + { + "time_hours": 101, + "approval_perbill": 817028986, + "support_perbill": 29771334, + "approval": 81.7028986, + "support": 2.9771334 + }, + { + "time_hours": 102, + "approval_perbill": 815217392, + "support_perbill": 29378534, + "approval": 81.5217392, + "support": 2.9378534 + }, + { + "time_hours": 103, + "approval_perbill": 813405798, + "support_perbill": 28992723, + "approval": 81.3405798, + "support": 2.8992723 + }, + { + "time_hours": 104, + "approval_perbill": 811594204, + "support_perbill": 28613717, + "approval": 81.1594204, + "support": 2.8613717 + }, + { + "time_hours": 105, + "approval_perbill": 809782609, + "support_perbill": 28241338, + "approval": 80.9782609, + "support": 2.8241338 + }, + { + "time_hours": 106, + "approval_perbill": 807971015, + "support_perbill": 27875412, + "approval": 80.7971015, + "support": 2.7875412 + }, + { + "time_hours": 107, + "approval_perbill": 806159421, + "support_perbill": 27515773, + "approval": 80.6159421, + "support": 2.7515773 + }, + { + "time_hours": 108, + "approval_perbill": 804347827, + "support_perbill": 27162261, + "approval": 80.4347827, + "support": 2.7162261 + }, + { + "time_hours": 109, + "approval_perbill": 802536233, + "support_perbill": 26814721, + "approval": 80.2536233, + "support": 2.6814721 + }, + { + "time_hours": 110, + "approval_perbill": 800724638, + "support_perbill": 26473002, + "approval": 80.0724638, + "support": 2.6473002 + }, + { + "time_hours": 111, + "approval_perbill": 798913044, + "support_perbill": 26136960, + "approval": 79.8913044, + "support": 2.613696 + }, + { + "time_hours": 112, + "approval_perbill": 797101450, + "support_perbill": 25806454, + "approval": 79.710145, + "support": 2.5806454 + }, + { + "time_hours": 113, + "approval_perbill": 795289856, + "support_perbill": 25481348, + "approval": 79.5289856, + "support": 2.5481348 + }, + { + "time_hours": 114, + "approval_perbill": 793478261, + "support_perbill": 25161512, + "approval": 79.3478261, + "support": 2.5161512 + }, + { + "time_hours": 115, + "approval_perbill": 791666668, + "support_perbill": 24846818, + "approval": 79.1666668, + "support": 2.4846818 + }, + { + "time_hours": 116, + "approval_perbill": 789855073, + "support_perbill": 24537142, + "approval": 78.9855073, + "support": 2.4537142 + }, + { + "time_hours": 117, + "approval_perbill": 788043479, + "support_perbill": 24232367, + "approval": 78.8043479, + "support": 2.4232367 + }, + { + "time_hours": 118, + "approval_perbill": 786231885, + "support_perbill": 23932377, + "approval": 78.6231885, + "support": 2.3932377 + }, + { + "time_hours": 119, + "approval_perbill": 784420291, + "support_perbill": 23637059, + "approval": 78.4420291, + "support": 2.3637059 + }, + { + "time_hours": 120, + "approval_perbill": 782608696, + "support_perbill": 23346305, + "approval": 78.2608696, + "support": 2.3346305 + }, + { + "time_hours": 121, + "approval_perbill": 780797102, + "support_perbill": 23060012, + "approval": 78.0797102, + "support": 2.3060012 + }, + { + "time_hours": 122, + "approval_perbill": 778985508, + "support_perbill": 22778075, + "approval": 77.8985508, + "support": 2.2778075 + }, + { + "time_hours": 123, + "approval_perbill": 777173914, + "support_perbill": 22500398, + "approval": 77.7173914, + "support": 2.2500398 + }, + { + "time_hours": 124, + "approval_perbill": 775362319, + "support_perbill": 22226884, + "approval": 77.5362319, + "support": 2.2226884 + }, + { + "time_hours": 125, + "approval_perbill": 773550725, + "support_perbill": 21957440, + "approval": 77.3550725, + "support": 2.195744 + }, + { + "time_hours": 126, + "approval_perbill": 771739131, + "support_perbill": 21691976, + "approval": 77.1739131, + "support": 2.1691976 + }, + { + "time_hours": 127, + "approval_perbill": 769927537, + "support_perbill": 21430404, + "approval": 76.9927537, + "support": 2.1430404 + }, + { + "time_hours": 128, + "approval_perbill": 768115943, + "support_perbill": 21172640, + "approval": 76.8115943, + "support": 2.117264 + }, + { + "time_hours": 129, + "approval_perbill": 766304348, + "support_perbill": 20918601, + "approval": 76.6304348, + "support": 2.0918601 + }, + { + "time_hours": 130, + "approval_perbill": 764492755, + "support_perbill": 20668207, + "approval": 76.4492755, + "support": 2.0668207 + }, + { + "time_hours": 131, + "approval_perbill": 762681160, + "support_perbill": 20421379, + "approval": 76.268116, + "support": 2.0421379 + }, + { + "time_hours": 132, + "approval_perbill": 760869566, + "support_perbill": 20178043, + "approval": 76.0869566, + "support": 2.0178043 + }, + { + "time_hours": 133, + "approval_perbill": 759057972, + "support_perbill": 19938125, + "approval": 75.9057972, + "support": 1.9938125 + }, + { + "time_hours": 134, + "approval_perbill": 757246378, + "support_perbill": 19701552, + "approval": 75.7246378, + "support": 1.9701552 + }, + { + "time_hours": 135, + "approval_perbill": 755434783, + "support_perbill": 19468257, + "approval": 75.5434783, + "support": 1.9468257 + }, + { + "time_hours": 136, + "approval_perbill": 753623189, + "support_perbill": 19238170, + "approval": 75.3623189, + "support": 1.923817 + }, + { + "time_hours": 137, + "approval_perbill": 751811595, + "support_perbill": 19011227, + "approval": 75.1811595, + "support": 1.9011227 + }, + { + "time_hours": 138, + "approval_perbill": 750000001, + "support_perbill": 18787363, + "approval": 75.0000001, + "support": 1.8787363 + }, + { + "time_hours": 139, + "approval_perbill": 748188406, + "support_perbill": 18566516, + "approval": 74.8188406, + "support": 1.8566516 + }, + { + "time_hours": 140, + "approval_perbill": 746376812, + "support_perbill": 18348625, + "approval": 74.6376812, + "support": 1.8348625 + }, + { + "time_hours": 141, + "approval_perbill": 744565218, + "support_perbill": 18133632, + "approval": 74.4565218, + "support": 1.8133632 + }, + { + "time_hours": 142, + "approval_perbill": 742753624, + "support_perbill": 17921479, + "approval": 74.2753624, + "support": 1.7921479 + }, + { + "time_hours": 143, + "approval_perbill": 740942029, + "support_perbill": 17712111, + "approval": 74.0942029, + "support": 1.7712111 + }, + { + "time_hours": 144, + "approval_perbill": 739130435, + "support_perbill": 17505472, + "approval": 73.9130435, + "support": 1.7505472 + }, + { + "time_hours": 145, + "approval_perbill": 737318841, + "support_perbill": 17301510, + "approval": 73.7318841, + "support": 1.730151 + }, + { + "time_hours": 146, + "approval_perbill": 735507247, + "support_perbill": 17100172, + "approval": 73.5507247, + "support": 1.7100172 + }, + { + "time_hours": 147, + "approval_perbill": 733695653, + "support_perbill": 16901410, + "approval": 73.3695653, + "support": 1.690141 + }, + { + "time_hours": 148, + "approval_perbill": 731884059, + "support_perbill": 16705173, + "approval": 73.1884059, + "support": 1.6705173 + }, + { + "time_hours": 149, + "approval_perbill": 730072465, + "support_perbill": 16511414, + "approval": 73.0072465, + "support": 1.6511414 + }, + { + "time_hours": 150, + "approval_perbill": 728260870, + "support_perbill": 16320085, + "approval": 72.826087, + "support": 1.6320085 + }, + { + "time_hours": 151, + "approval_perbill": 726449276, + "support_perbill": 16131143, + "approval": 72.6449276, + "support": 1.6131143 + }, + { + "time_hours": 152, + "approval_perbill": 724637682, + "support_perbill": 15944542, + "approval": 72.4637682, + "support": 1.5944542 + }, + { + "time_hours": 153, + "approval_perbill": 722826088, + "support_perbill": 15760239, + "approval": 72.2826088, + "support": 1.5760239 + }, + { + "time_hours": 154, + "approval_perbill": 721014493, + "support_perbill": 15578192, + "approval": 72.1014493, + "support": 1.5578192 + }, + { + "time_hours": 155, + "approval_perbill": 719202899, + "support_perbill": 15398359, + "approval": 71.9202899, + "support": 1.5398359 + }, + { + "time_hours": 156, + "approval_perbill": 717391305, + "support_perbill": 15220701, + "approval": 71.7391305, + "support": 1.5220701 + }, + { + "time_hours": 157, + "approval_perbill": 715579711, + "support_perbill": 15045179, + "approval": 71.5579711, + "support": 1.5045179 + }, + { + "time_hours": 158, + "approval_perbill": 713768116, + "support_perbill": 14871753, + "approval": 71.3768116, + "support": 1.4871753 + }, + { + "time_hours": 159, + "approval_perbill": 711956523, + "support_perbill": 14700387, + "approval": 71.1956523, + "support": 1.4700387 + }, + { + "time_hours": 160, + "approval_perbill": 710144928, + "support_perbill": 14531045, + "approval": 71.0144928, + "support": 1.4531045 + }, + { + "time_hours": 161, + "approval_perbill": 708333334, + "support_perbill": 14363690, + "approval": 70.8333334, + "support": 1.436369 + }, + { + "time_hours": 162, + "approval_perbill": 706521740, + "support_perbill": 14198287, + "approval": 70.652174, + "support": 1.4198287 + }, + { + "time_hours": 163, + "approval_perbill": 704710146, + "support_perbill": 14034804, + "approval": 70.4710146, + "support": 1.4034804 + }, + { + "time_hours": 164, + "approval_perbill": 702898551, + "support_perbill": 13873206, + "approval": 70.2898551, + "support": 1.3873206 + }, + { + "time_hours": 165, + "approval_perbill": 701086957, + "support_perbill": 13713462, + "approval": 70.1086957, + "support": 1.3713462 + }, + { + "time_hours": 166, + "approval_perbill": 699275363, + "support_perbill": 13555539, + "approval": 69.9275363, + "support": 1.3555539 + }, + { + "time_hours": 167, + "approval_perbill": 697463769, + "support_perbill": 13399406, + "approval": 69.7463769, + "support": 1.3399406 + }, + { + "time_hours": 168, + "approval_perbill": 695652174, + "support_perbill": 13245034, + "approval": 69.5652174, + "support": 1.3245034 + }, + { + "time_hours": 169, + "approval_perbill": 693840580, + "support_perbill": 13092392, + "approval": 69.384058, + "support": 1.3092392 + }, + { + "time_hours": 170, + "approval_perbill": 692028986, + "support_perbill": 12941452, + "approval": 69.2028986, + "support": 1.2941452 + }, + { + "time_hours": 171, + "approval_perbill": 690217392, + "support_perbill": 12792186, + "approval": 69.0217392, + "support": 1.2792186 + }, + { + "time_hours": 172, + "approval_perbill": 688405798, + "support_perbill": 12644565, + "approval": 68.8405798, + "support": 1.2644565 + }, + { + "time_hours": 173, + "approval_perbill": 686594203, + "support_perbill": 12498563, + "approval": 68.6594203, + "support": 1.2498563 + }, + { + "time_hours": 174, + "approval_perbill": 684782610, + "support_perbill": 12354153, + "approval": 68.478261, + "support": 1.2354153 + }, + { + "time_hours": 175, + "approval_perbill": 682971015, + "support_perbill": 12211309, + "approval": 68.2971015, + "support": 1.2211309 + }, + { + "time_hours": 176, + "approval_perbill": 681159421, + "support_perbill": 12070007, + "approval": 68.1159421, + "support": 1.2070007 + }, + { + "time_hours": 177, + "approval_perbill": 679347827, + "support_perbill": 11930220, + "approval": 67.9347827, + "support": 1.193022 + }, + { + "time_hours": 178, + "approval_perbill": 677536233, + "support_perbill": 11791925, + "approval": 67.7536233, + "support": 1.1791925 + }, + { + "time_hours": 179, + "approval_perbill": 675724638, + "support_perbill": 11655099, + "approval": 67.5724638, + "support": 1.1655099 + }, + { + "time_hours": 180, + "approval_perbill": 673913044, + "support_perbill": 11519717, + "approval": 67.3913044, + "support": 1.1519717 + }, + { + "time_hours": 181, + "approval_perbill": 672101450, + "support_perbill": 11385757, + "approval": 67.210145, + "support": 1.1385757 + }, + { + "time_hours": 182, + "approval_perbill": 670289856, + "support_perbill": 11253198, + "approval": 67.0289856, + "support": 1.1253198 + }, + { + "time_hours": 183, + "approval_perbill": 668478261, + "support_perbill": 11122016, + "approval": 66.8478261, + "support": 1.1122016 + }, + { + "time_hours": 184, + "approval_perbill": 666666667, + "support_perbill": 10992190, + "approval": 66.6666667, + "support": 1.099219 + }, + { + "time_hours": 185, + "approval_perbill": 664855073, + "support_perbill": 10863701, + "approval": 66.4855073, + "support": 1.0863701 + }, + { + "time_hours": 186, + "approval_perbill": 663043479, + "support_perbill": 10736526, + "approval": 66.3043479, + "support": 1.0736526 + }, + { + "time_hours": 187, + "approval_perbill": 661231884, + "support_perbill": 10610647, + "approval": 66.1231884, + "support": 1.0610647 + }, + { + "time_hours": 188, + "approval_perbill": 659420290, + "support_perbill": 10486043, + "approval": 65.942029, + "support": 1.0486043 + }, + { + "time_hours": 189, + "approval_perbill": 657608696, + "support_perbill": 10362695, + "approval": 65.7608696, + "support": 1.0362695 + }, + { + "time_hours": 190, + "approval_perbill": 655797102, + "support_perbill": 10240584, + "approval": 65.5797102, + "support": 1.0240584 + }, + { + "time_hours": 191, + "approval_perbill": 653985508, + "support_perbill": 10119692, + "approval": 65.3985508, + "support": 1.0119692 + }, + { + "time_hours": 192, + "approval_perbill": 652173914, + "support_perbill": 10000000, + "approval": 65.2173914, + "support": 1 + }, + { + "time_hours": 193, + "approval_perbill": 650362320, + "support_perbill": 9881492, + "approval": 65.036232, + "support": 0.9881492 + }, + { + "time_hours": 194, + "approval_perbill": 648550725, + "support_perbill": 9764148, + "approval": 64.8550725, + "support": 0.9764148 + }, + { + "time_hours": 195, + "approval_perbill": 646739131, + "support_perbill": 9647953, + "approval": 64.6739131, + "support": 0.9647953 + }, + { + "time_hours": 196, + "approval_perbill": 644927537, + "support_perbill": 9532889, + "approval": 64.4927537, + "support": 0.9532889 + }, + { + "time_hours": 197, + "approval_perbill": 643115943, + "support_perbill": 9418940, + "approval": 64.3115943, + "support": 0.941894 + }, + { + "time_hours": 198, + "approval_perbill": 641304348, + "support_perbill": 9306090, + "approval": 64.1304348, + "support": 0.930609 + }, + { + "time_hours": 199, + "approval_perbill": 639492754, + "support_perbill": 9194323, + "approval": 63.9492754, + "support": 0.9194323 + }, + { + "time_hours": 200, + "approval_perbill": 637681160, + "support_perbill": 9083623, + "approval": 63.768116, + "support": 0.9083623 + }, + { + "time_hours": 201, + "approval_perbill": 635869566, + "support_perbill": 8973976, + "approval": 63.5869566, + "support": 0.8973976 + }, + { + "time_hours": 202, + "approval_perbill": 634057971, + "support_perbill": 8865366, + "approval": 63.4057971, + "support": 0.8865366 + }, + { + "time_hours": 203, + "approval_perbill": 632246378, + "support_perbill": 8757779, + "approval": 63.2246378, + "support": 0.8757779 + }, + { + "time_hours": 204, + "approval_perbill": 630434783, + "support_perbill": 8651200, + "approval": 63.0434783, + "support": 0.86512 + }, + { + "time_hours": 205, + "approval_perbill": 628623189, + "support_perbill": 8545615, + "approval": 62.8623189, + "support": 0.8545615 + }, + { + "time_hours": 206, + "approval_perbill": 626811595, + "support_perbill": 8441011, + "approval": 62.6811595, + "support": 0.8441011 + }, + { + "time_hours": 207, + "approval_perbill": 625000001, + "support_perbill": 8337373, + "approval": 62.5000001, + "support": 0.8337373 + }, + { + "time_hours": 208, + "approval_perbill": 623188406, + "support_perbill": 8234689, + "approval": 62.3188406, + "support": 0.8234689 + }, + { + "time_hours": 209, + "approval_perbill": 621376812, + "support_perbill": 8132945, + "approval": 62.1376812, + "support": 0.8132945 + }, + { + "time_hours": 210, + "approval_perbill": 619565218, + "support_perbill": 8032129, + "approval": 61.9565218, + "support": 0.8032129 + }, + { + "time_hours": 211, + "approval_perbill": 617753624, + "support_perbill": 7932227, + "approval": 61.7753624, + "support": 0.7932227 + }, + { + "time_hours": 212, + "approval_perbill": 615942030, + "support_perbill": 7833228, + "approval": 61.594203, + "support": 0.7833228 + }, + { + "time_hours": 213, + "approval_perbill": 614130435, + "support_perbill": 7735120, + "approval": 61.4130435, + "support": 0.773512 + }, + { + "time_hours": 214, + "approval_perbill": 612318841, + "support_perbill": 7637889, + "approval": 61.2318841, + "support": 0.7637889 + }, + { + "time_hours": 215, + "approval_perbill": 610507247, + "support_perbill": 7541525, + "approval": 61.0507247, + "support": 0.7541525 + }, + { + "time_hours": 216, + "approval_perbill": 608695653, + "support_perbill": 7446017, + "approval": 60.8695653, + "support": 0.7446017 + }, + { + "time_hours": 217, + "approval_perbill": 606884058, + "support_perbill": 7351351, + "approval": 60.6884058, + "support": 0.7351351 + }, + { + "time_hours": 218, + "approval_perbill": 605072465, + "support_perbill": 7257519, + "approval": 60.5072465, + "support": 0.7257519 + }, + { + "time_hours": 219, + "approval_perbill": 603260870, + "support_perbill": 7164508, + "approval": 60.326087, + "support": 0.7164508 + }, + { + "time_hours": 220, + "approval_perbill": 601449276, + "support_perbill": 7072308, + "approval": 60.1449276, + "support": 0.7072308 + }, + { + "time_hours": 221, + "approval_perbill": 599637682, + "support_perbill": 6980909, + "approval": 59.9637682, + "support": 0.6980909 + }, + { + "time_hours": 222, + "approval_perbill": 597826088, + "support_perbill": 6890299, + "approval": 59.7826088, + "support": 0.6890299 + }, + { + "time_hours": 223, + "approval_perbill": 596014493, + "support_perbill": 6800469, + "approval": 59.6014493, + "support": 0.6800469 + }, + { + "time_hours": 224, + "approval_perbill": 594202899, + "support_perbill": 6711409, + "approval": 59.4202899, + "support": 0.6711409 + }, + { + "time_hours": 225, + "approval_perbill": 592391305, + "support_perbill": 6623109, + "approval": 59.2391305, + "support": 0.6623109 + }, + { + "time_hours": 226, + "approval_perbill": 590579711, + "support_perbill": 6535559, + "approval": 59.0579711, + "support": 0.6535559 + }, + { + "time_hours": 227, + "approval_perbill": 588768116, + "support_perbill": 6448750, + "approval": 58.8768116, + "support": 0.644875 + }, + { + "time_hours": 228, + "approval_perbill": 586956522, + "support_perbill": 6362672, + "approval": 58.6956522, + "support": 0.6362672 + }, + { + "time_hours": 229, + "approval_perbill": 585144928, + "support_perbill": 6277317, + "approval": 58.5144928, + "support": 0.6277317 + }, + { + "time_hours": 230, + "approval_perbill": 583333334, + "support_perbill": 6192674, + "approval": 58.3333334, + "support": 0.6192674 + }, + { + "time_hours": 231, + "approval_perbill": 581521739, + "support_perbill": 6108735, + "approval": 58.1521739, + "support": 0.6108735 + }, + { + "time_hours": 232, + "approval_perbill": 579710145, + "support_perbill": 6025492, + "approval": 57.9710145, + "support": 0.6025492 + }, + { + "time_hours": 233, + "approval_perbill": 577898552, + "support_perbill": 5942936, + "approval": 57.7898552, + "support": 0.5942936 + }, + { + "time_hours": 234, + "approval_perbill": 576086957, + "support_perbill": 5861058, + "approval": 57.6086957, + "support": 0.5861058 + }, + { + "time_hours": 235, + "approval_perbill": 574275363, + "support_perbill": 5779851, + "approval": 57.4275363, + "support": 0.5779851 + }, + { + "time_hours": 236, + "approval_perbill": 572463769, + "support_perbill": 5699305, + "approval": 57.2463769, + "support": 0.5699305 + }, + { + "time_hours": 237, + "approval_perbill": 570652175, + "support_perbill": 5619412, + "approval": 57.0652175, + "support": 0.5619412 + }, + { + "time_hours": 238, + "approval_perbill": 568840580, + "support_perbill": 5540166, + "approval": 56.884058, + "support": 0.5540166 + }, + { + "time_hours": 239, + "approval_perbill": 567028986, + "support_perbill": 5461558, + "approval": 56.7028986, + "support": 0.5461558 + }, + { + "time_hours": 240, + "approval_perbill": 565217392, + "support_perbill": 5383580, + "approval": 56.5217392, + "support": 0.538358 + }, + { + "time_hours": 241, + "approval_perbill": 563405798, + "support_perbill": 5306225, + "approval": 56.3405798, + "support": 0.5306225 + }, + { + "time_hours": 242, + "approval_perbill": 561594203, + "support_perbill": 5229485, + "approval": 56.1594203, + "support": 0.5229485 + }, + { + "time_hours": 243, + "approval_perbill": 559782609, + "support_perbill": 5153354, + "approval": 55.9782609, + "support": 0.5153354 + }, + { + "time_hours": 244, + "approval_perbill": 557971015, + "support_perbill": 5077823, + "approval": 55.7971015, + "support": 0.5077823 + }, + { + "time_hours": 245, + "approval_perbill": 556159421, + "support_perbill": 5002886, + "approval": 55.6159421, + "support": 0.5002886 + }, + { + "time_hours": 246, + "approval_perbill": 554347826, + "support_perbill": 4928536, + "approval": 55.4347826, + "support": 0.4928536 + }, + { + "time_hours": 247, + "approval_perbill": 552536233, + "support_perbill": 4854766, + "approval": 55.2536233, + "support": 0.4854766 + }, + { + "time_hours": 248, + "approval_perbill": 550724638, + "support_perbill": 4781569, + "approval": 55.0724638, + "support": 0.4781569 + }, + { + "time_hours": 249, + "approval_perbill": 548913044, + "support_perbill": 4708939, + "approval": 54.8913044, + "support": 0.4708939 + }, + { + "time_hours": 250, + "approval_perbill": 547101450, + "support_perbill": 4636868, + "approval": 54.710145, + "support": 0.4636868 + }, + { + "time_hours": 251, + "approval_perbill": 545289856, + "support_perbill": 4565351, + "approval": 54.5289856, + "support": 0.4565351 + }, + { + "time_hours": 252, + "approval_perbill": 543478261, + "support_perbill": 4494382, + "approval": 54.3478261, + "support": 0.4494382 + }, + { + "time_hours": 253, + "approval_perbill": 541666667, + "support_perbill": 4423953, + "approval": 54.1666667, + "support": 0.4423953 + }, + { + "time_hours": 254, + "approval_perbill": 539855073, + "support_perbill": 4354059, + "approval": 53.9855073, + "support": 0.4354059 + }, + { + "time_hours": 255, + "approval_perbill": 538043479, + "support_perbill": 4284694, + "approval": 53.8043479, + "support": 0.4284694 + }, + { + "time_hours": 256, + "approval_perbill": 536231885, + "support_perbill": 4215851, + "approval": 53.6231885, + "support": 0.4215851 + }, + { + "time_hours": 257, + "approval_perbill": 534420290, + "support_perbill": 4147526, + "approval": 53.442029, + "support": 0.4147526 + }, + { + "time_hours": 258, + "approval_perbill": 532608696, + "support_perbill": 4079711, + "approval": 53.2608696, + "support": 0.4079711 + }, + { + "time_hours": 259, + "approval_perbill": 530797102, + "support_perbill": 4012402, + "approval": 53.0797102, + "support": 0.4012402 + }, + { + "time_hours": 260, + "approval_perbill": 528985508, + "support_perbill": 3945592, + "approval": 52.8985508, + "support": 0.3945592 + }, + { + "time_hours": 261, + "approval_perbill": 527173913, + "support_perbill": 3879277, + "approval": 52.7173913, + "support": 0.3879277 + }, + { + "time_hours": 262, + "approval_perbill": 525362320, + "support_perbill": 3813450, + "approval": 52.536232, + "support": 0.381345 + }, + { + "time_hours": 263, + "approval_perbill": 523550725, + "support_perbill": 3748106, + "approval": 52.3550725, + "support": 0.3748106 + }, + { + "time_hours": 264, + "approval_perbill": 521739131, + "support_perbill": 3683241, + "approval": 52.1739131, + "support": 0.3683241 + }, + { + "time_hours": 265, + "approval_perbill": 519927537, + "support_perbill": 3618848, + "approval": 51.9927537, + "support": 0.3618848 + }, + { + "time_hours": 266, + "approval_perbill": 518115943, + "support_perbill": 3554923, + "approval": 51.8115943, + "support": 0.3554923 + }, + { + "time_hours": 267, + "approval_perbill": 516304348, + "support_perbill": 3491461, + "approval": 51.6304348, + "support": 0.3491461 + }, + { + "time_hours": 268, + "approval_perbill": 514492754, + "support_perbill": 3428456, + "approval": 51.4492754, + "support": 0.3428456 + }, + { + "time_hours": 269, + "approval_perbill": 512681160, + "support_perbill": 3365904, + "approval": 51.268116, + "support": 0.3365904 + }, + { + "time_hours": 270, + "approval_perbill": 510869566, + "support_perbill": 3303799, + "approval": 51.0869566, + "support": 0.3303799 + }, + { + "time_hours": 271, + "approval_perbill": 509057971, + "support_perbill": 3242137, + "approval": 50.9057971, + "support": 0.3242137 + }, + { + "time_hours": 272, + "approval_perbill": 507246377, + "support_perbill": 3180914, + "approval": 50.7246377, + "support": 0.3180914 + }, + { + "time_hours": 273, + "approval_perbill": 505434783, + "support_perbill": 3120124, + "approval": 50.5434783, + "support": 0.3120124 + }, + { + "time_hours": 274, + "approval_perbill": 503623189, + "support_perbill": 3059764, + "approval": 50.3623189, + "support": 0.3059764 + }, + { + "time_hours": 275, + "approval_perbill": 501811595, + "support_perbill": 2999827, + "approval": 50.1811595, + "support": 0.2999827 + }, + { + "time_hours": 276, + "approval_perbill": 500000000, + "support_perbill": 2940311, + "approval": 50, + "support": 0.2940311 + }, + { + "time_hours": 277, + "approval_perbill": 500000000, + "support_perbill": 2881211, + "approval": 50, + "support": 0.2881211 + }, + { + "time_hours": 278, + "approval_perbill": 500000000, + "support_perbill": 2822521, + "approval": 50, + "support": 0.2822521 + }, + { + "time_hours": 279, + "approval_perbill": 500000000, + "support_perbill": 2764239, + "approval": 50, + "support": 0.2764239 + }, + { + "time_hours": 280, + "approval_perbill": 500000000, + "support_perbill": 2706360, + "approval": 50, + "support": 0.270636 + }, + { + "time_hours": 281, + "approval_perbill": 500000000, + "support_perbill": 2648879, + "approval": 50, + "support": 0.2648879 + }, + { + "time_hours": 282, + "approval_perbill": 500000000, + "support_perbill": 2591792, + "approval": 50, + "support": 0.2591792 + }, + { + "time_hours": 283, + "approval_perbill": 500000000, + "support_perbill": 2535096, + "approval": 50, + "support": 0.2535096 + }, + { + "time_hours": 284, + "approval_perbill": 500000000, + "support_perbill": 2478787, + "approval": 50, + "support": 0.2478787 + }, + { + "time_hours": 285, + "approval_perbill": 500000000, + "support_perbill": 2422860, + "approval": 50, + "support": 0.242286 + }, + { + "time_hours": 286, + "approval_perbill": 500000000, + "support_perbill": 2367312, + "approval": 50, + "support": 0.2367312 + }, + { + "time_hours": 287, + "approval_perbill": 500000000, + "support_perbill": 2312138, + "approval": 50, + "support": 0.2312138 + }, + { + "time_hours": 288, + "approval_perbill": 500000000, + "support_perbill": 2257336, + "approval": 50, + "support": 0.2257336 + }, + { + "time_hours": 289, + "approval_perbill": 500000000, + "support_perbill": 2202901, + "approval": 50, + "support": 0.2202901 + }, + { + "time_hours": 290, + "approval_perbill": 500000000, + "support_perbill": 2148829, + "approval": 50, + "support": 0.2148829 + }, + { + "time_hours": 291, + "approval_perbill": 500000000, + "support_perbill": 2095118, + "approval": 50, + "support": 0.2095118 + }, + { + "time_hours": 292, + "approval_perbill": 500000000, + "support_perbill": 2041763, + "approval": 50, + "support": 0.2041763 + }, + { + "time_hours": 293, + "approval_perbill": 500000000, + "support_perbill": 1988761, + "approval": 50, + "support": 0.1988761 + }, + { + "time_hours": 294, + "approval_perbill": 500000000, + "support_perbill": 1936108, + "approval": 50, + "support": 0.1936108 + }, + { + "time_hours": 295, + "approval_perbill": 500000000, + "support_perbill": 1883801, + "approval": 50, + "support": 0.1883801 + }, + { + "time_hours": 296, + "approval_perbill": 500000000, + "support_perbill": 1831837, + "approval": 50, + "support": 0.1831837 + }, + { + "time_hours": 297, + "approval_perbill": 500000000, + "support_perbill": 1780212, + "approval": 50, + "support": 0.1780212 + }, + { + "time_hours": 298, + "approval_perbill": 500000000, + "support_perbill": 1728923, + "approval": 50, + "support": 0.1728923 + }, + { + "time_hours": 299, + "approval_perbill": 500000000, + "support_perbill": 1677966, + "approval": 50, + "support": 0.1677966 + }, + { + "time_hours": 300, + "approval_perbill": 500000000, + "support_perbill": 1627339, + "approval": 50, + "support": 0.1627339 + }, + { + "time_hours": 301, + "approval_perbill": 500000000, + "support_perbill": 1577038, + "approval": 50, + "support": 0.1577038 + }, + { + "time_hours": 302, + "approval_perbill": 500000000, + "support_perbill": 1527060, + "approval": 50, + "support": 0.152706 + }, + { + "time_hours": 303, + "approval_perbill": 500000000, + "support_perbill": 1477402, + "approval": 50, + "support": 0.1477402 + }, + { + "time_hours": 304, + "approval_perbill": 500000000, + "support_perbill": 1428061, + "approval": 50, + "support": 0.1428061 + }, + { + "time_hours": 305, + "approval_perbill": 500000000, + "support_perbill": 1379034, + "approval": 50, + "support": 0.1379034 + }, + { + "time_hours": 306, + "approval_perbill": 500000000, + "support_perbill": 1330317, + "approval": 50, + "support": 0.1330317 + }, + { + "time_hours": 307, + "approval_perbill": 500000000, + "support_perbill": 1281909, + "approval": 50, + "support": 0.1281909 + }, + { + "time_hours": 308, + "approval_perbill": 500000000, + "support_perbill": 1233806, + "approval": 50, + "support": 0.1233806 + }, + { + "time_hours": 309, + "approval_perbill": 500000000, + "support_perbill": 1186005, + "approval": 50, + "support": 0.1186005 + }, + { + "time_hours": 310, + "approval_perbill": 500000000, + "support_perbill": 1138503, + "approval": 50, + "support": 0.1138503 + }, + { + "time_hours": 311, + "approval_perbill": 500000000, + "support_perbill": 1091297, + "approval": 50, + "support": 0.1091297 + }, + { + "time_hours": 312, + "approval_perbill": 500000000, + "support_perbill": 1044386, + "approval": 50, + "support": 0.1044386 + }, + { + "time_hours": 313, + "approval_perbill": 500000000, + "support_perbill": 997765, + "approval": 50, + "support": 0.0997765 + }, + { + "time_hours": 314, + "approval_perbill": 500000000, + "support_perbill": 951433, + "approval": 50, + "support": 0.0951433 + }, + { + "time_hours": 315, + "approval_perbill": 500000000, + "support_perbill": 905386, + "approval": 50, + "support": 0.0905386 + }, + { + "time_hours": 316, + "approval_perbill": 500000000, + "support_perbill": 859623, + "approval": 50, + "support": 0.0859623 + }, + { + "time_hours": 317, + "approval_perbill": 500000000, + "support_perbill": 814140, + "approval": 50, + "support": 0.081414 + }, + { + "time_hours": 318, + "approval_perbill": 500000000, + "support_perbill": 768934, + "approval": 50, + "support": 0.0768934 + }, + { + "time_hours": 319, + "approval_perbill": 500000000, + "support_perbill": 724004, + "approval": 50, + "support": 0.0724004 + }, + { + "time_hours": 320, + "approval_perbill": 500000000, + "support_perbill": 679347, + "approval": 50, + "support": 0.0679347 + }, + { + "time_hours": 321, + "approval_perbill": 500000000, + "support_perbill": 634960, + "approval": 50, + "support": 0.063496 + }, + { + "time_hours": 322, + "approval_perbill": 500000000, + "support_perbill": 590841, + "approval": 50, + "support": 0.0590841 + }, + { + "time_hours": 323, + "approval_perbill": 500000000, + "support_perbill": 546988, + "approval": 50, + "support": 0.0546988 + }, + { + "time_hours": 324, + "approval_perbill": 500000000, + "support_perbill": 503397, + "approval": 50, + "support": 0.0503397 + }, + { + "time_hours": 325, + "approval_perbill": 500000000, + "support_perbill": 460067, + "approval": 50, + "support": 0.0460067 + }, + { + "time_hours": 326, + "approval_perbill": 500000000, + "support_perbill": 416996, + "approval": 50, + "support": 0.0416996 + }, + { + "time_hours": 327, + "approval_perbill": 500000000, + "support_perbill": 374181, + "approval": 50, + "support": 0.0374181 + }, + { + "time_hours": 328, + "approval_perbill": 500000000, + "support_perbill": 331619, + "approval": 50, + "support": 0.0331619 + }, + { + "time_hours": 329, + "approval_perbill": 500000000, + "support_perbill": 289309, + "approval": 50, + "support": 0.0289309 + }, + { + "time_hours": 330, + "approval_perbill": 500000000, + "support_perbill": 247249, + "approval": 50, + "support": 0.0247249 + }, + { + "time_hours": 331, + "approval_perbill": 500000000, + "support_perbill": 205435, + "approval": 50, + "support": 0.0205435 + }, + { + "time_hours": 332, + "approval_perbill": 500000000, + "support_perbill": 163867, + "approval": 50, + "support": 0.0163867 + }, + { + "time_hours": 333, + "approval_perbill": 500000000, + "support_perbill": 122541, + "approval": 50, + "support": 0.0122541 + }, + { + "time_hours": 334, + "approval_perbill": 500000000, + "support_perbill": 81456, + "approval": 50, + "support": 0.0081456 + }, + { + "time_hours": 335, + "approval_perbill": 500000000, + "support_perbill": 40609, + "approval": 50, + "support": 0.0040609 + }, + { + "time_hours": 336, + "approval_perbill": 500000000, + "support_perbill": 0, + "approval": 50, + "support": 0 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/kusama/opengov_ref_canceller.json b/components/utilities/charts_data/kusama/opengov_ref_canceller.json new file mode 100644 index 000000000000..9c589d040233 --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_ref_canceller.json @@ -0,0 +1,2361 @@ +[ + { + "time_hours": 0, + "approval_perbill": 1000000000, + "support_perbill": 500000026, + "approval": 100, + "support": 50.0000026 + }, + { + "time_hours": 1, + "approval_perbill": 997549020, + "support_perbill": 418401359, + "approval": 99.754902, + "support": 41.8401359 + }, + { + "time_hours": 2, + "approval_perbill": 995098040, + "support_perbill": 359397443, + "approval": 99.509804, + "support": 35.9397443 + }, + { + "time_hours": 3, + "approval_perbill": 992647060, + "support_perbill": 314744813, + "approval": 99.264706, + "support": 31.4744813 + }, + { + "time_hours": 4, + "approval_perbill": 990196080, + "support_perbill": 279775293, + "approval": 99.019608, + "support": 27.9775293 + }, + { + "time_hours": 5, + "approval_perbill": 987745099, + "support_perbill": 251647242, + "approval": 98.7745099, + "support": 25.1647242 + }, + { + "time_hours": 6, + "approval_perbill": 985294119, + "support_perbill": 228531862, + "approval": 98.5294119, + "support": 22.8531862 + }, + { + "time_hours": 7, + "approval_perbill": 982843138, + "support_perbill": 209198815, + "approval": 98.2843138, + "support": 20.9198815 + }, + { + "time_hours": 8, + "approval_perbill": 980392158, + "support_perbill": 192789972, + "approval": 98.0392158, + "support": 19.2789972 + }, + { + "time_hours": 9, + "approval_perbill": 977941177, + "support_perbill": 178688524, + "approval": 97.7941177, + "support": 17.8688524 + }, + { + "time_hours": 10, + "approval_perbill": 975490197, + "support_perbill": 166439756, + "approval": 97.5490197, + "support": 16.6439756 + }, + { + "time_hours": 11, + "approval_perbill": 973039216, + "support_perbill": 155701053, + "approval": 97.3039216, + "support": 15.5701053 + }, + { + "time_hours": 12, + "approval_perbill": 970588236, + "support_perbill": 146209386, + "approval": 97.0588236, + "support": 14.6209386 + }, + { + "time_hours": 13, + "approval_perbill": 968137256, + "support_perbill": 137759452, + "approval": 96.8137256, + "support": 13.7759452 + }, + { + "time_hours": 14, + "approval_perbill": 965686276, + "support_perbill": 130188679, + "approval": 96.5686276, + "support": 13.0188679 + }, + { + "time_hours": 15, + "approval_perbill": 963235295, + "support_perbill": 123366639, + "approval": 96.3235295, + "support": 12.3366639 + }, + { + "time_hours": 16, + "approval_perbill": 960784315, + "support_perbill": 117187499, + "approval": 96.0784315, + "support": 11.7187499 + }, + { + "time_hours": 17, + "approval_perbill": 958333334, + "support_perbill": 111564465, + "approval": 95.8333334, + "support": 11.1564465 + }, + { + "time_hours": 18, + "approval_perbill": 955882354, + "support_perbill": 106425701, + "approval": 95.5882354, + "support": 10.6425701 + }, + { + "time_hours": 19, + "approval_perbill": 953431373, + "support_perbill": 101711228, + "approval": 95.3431373, + "support": 10.1711228 + }, + { + "time_hours": 20, + "approval_perbill": 950980393, + "support_perbill": 97370582, + "approval": 95.0980393, + "support": 9.7370582 + }, + { + "time_hours": 21, + "approval_perbill": 948529412, + "support_perbill": 93360994, + "approval": 94.8529412, + "support": 9.3360994 + }, + { + "time_hours": 22, + "approval_perbill": 946078432, + "support_perbill": 89645982, + "approval": 94.6078432, + "support": 8.9645982 + }, + { + "time_hours": 23, + "approval_perbill": 943627452, + "support_perbill": 86194234, + "approval": 94.3627452, + "support": 8.6194234 + }, + { + "time_hours": 24, + "approval_perbill": 941176471, + "support_perbill": 82978722, + "approval": 94.1176471, + "support": 8.2978722 + }, + { + "time_hours": 25, + "approval_perbill": 938725491, + "support_perbill": 79975997, + "approval": 93.8725491, + "support": 7.9975997 + }, + { + "time_hours": 26, + "approval_perbill": 936274511, + "support_perbill": 77165614, + "approval": 93.6274511, + "support": 7.7165614 + }, + { + "time_hours": 27, + "approval_perbill": 933823531, + "support_perbill": 74529666, + "approval": 93.3823531, + "support": 7.4529666 + }, + { + "time_hours": 28, + "approval_perbill": 931372550, + "support_perbill": 72052400, + "approval": 93.137255, + "support": 7.20524 + }, + { + "time_hours": 29, + "approval_perbill": 928921570, + "support_perbill": 69719908, + "approval": 92.892157, + "support": 6.9719908 + }, + { + "time_hours": 30, + "approval_perbill": 926470589, + "support_perbill": 67519857, + "approval": 92.6470589, + "support": 6.7519857 + }, + { + "time_hours": 31, + "approval_perbill": 924019609, + "support_perbill": 65441280, + "approval": 92.4019609, + "support": 6.544128 + }, + { + "time_hours": 32, + "approval_perbill": 921568628, + "support_perbill": 63474386, + "approval": 92.1568628, + "support": 6.3474386 + }, + { + "time_hours": 33, + "approval_perbill": 919117648, + "support_perbill": 61610409, + "approval": 91.9117648, + "support": 6.1610409 + }, + { + "time_hours": 34, + "approval_perbill": 916666667, + "support_perbill": 59841478, + "approval": 91.6666667, + "support": 5.9841478 + }, + { + "time_hours": 35, + "approval_perbill": 914215687, + "support_perbill": 58160504, + "approval": 91.4215687, + "support": 5.8160504 + }, + { + "time_hours": 36, + "approval_perbill": 911764706, + "support_perbill": 56561084, + "approval": 91.1764706, + "support": 5.6561084 + }, + { + "time_hours": 37, + "approval_perbill": 909313726, + "support_perbill": 55037426, + "approval": 90.9313726, + "support": 5.5037426 + }, + { + "time_hours": 38, + "approval_perbill": 906862746, + "support_perbill": 53584271, + "approval": 90.6862746, + "support": 5.3584271 + }, + { + "time_hours": 39, + "approval_perbill": 904411766, + "support_perbill": 52196835, + "approval": 90.4411766, + "support": 5.2196835 + }, + { + "time_hours": 40, + "approval_perbill": 901960785, + "support_perbill": 50870759, + "approval": 90.1960785, + "support": 5.0870759 + }, + { + "time_hours": 41, + "approval_perbill": 899509805, + "support_perbill": 49602061, + "approval": 89.9509805, + "support": 4.9602061 + }, + { + "time_hours": 42, + "approval_perbill": 897058824, + "support_perbill": 48387095, + "approval": 89.7058824, + "support": 4.8387095 + }, + { + "time_hours": 43, + "approval_perbill": 894607844, + "support_perbill": 47222519, + "approval": 89.4607844, + "support": 4.7222519 + }, + { + "time_hours": 44, + "approval_perbill": 892156864, + "support_perbill": 46105262, + "approval": 89.2156864, + "support": 4.6105262 + }, + { + "time_hours": 45, + "approval_perbill": 889705883, + "support_perbill": 45032496, + "approval": 88.9705883, + "support": 4.5032496 + }, + { + "time_hours": 46, + "approval_perbill": 887254903, + "support_perbill": 44001617, + "approval": 88.7254903, + "support": 4.4001617 + }, + { + "time_hours": 47, + "approval_perbill": 884803922, + "support_perbill": 43010218, + "approval": 88.4803922, + "support": 4.3010218 + }, + { + "time_hours": 48, + "approval_perbill": 882352942, + "support_perbill": 42056074, + "approval": 88.2352942, + "support": 4.2056074 + }, + { + "time_hours": 49, + "approval_perbill": 879901962, + "support_perbill": 41137122, + "approval": 87.9901962, + "support": 4.1137122 + }, + { + "time_hours": 50, + "approval_perbill": 877450982, + "support_perbill": 40251453, + "approval": 87.7450982, + "support": 4.0251453 + }, + { + "time_hours": 51, + "approval_perbill": 875000001, + "support_perbill": 39397289, + "approval": 87.5000001, + "support": 3.9397289 + }, + { + "time_hours": 52, + "approval_perbill": 872549021, + "support_perbill": 38572980, + "approval": 87.2549021, + "support": 3.857298 + }, + { + "time_hours": 53, + "approval_perbill": 870098040, + "support_perbill": 37776985, + "approval": 87.009804, + "support": 3.7776985 + }, + { + "time_hours": 54, + "approval_perbill": 867647060, + "support_perbill": 37007873, + "approval": 86.764706, + "support": 3.7007873 + }, + { + "time_hours": 55, + "approval_perbill": 865196079, + "support_perbill": 36264302, + "approval": 86.5196079, + "support": 3.6264302 + }, + { + "time_hours": 56, + "approval_perbill": 862745099, + "support_perbill": 35545023, + "approval": 86.2745099, + "support": 3.5545023 + }, + { + "time_hours": 57, + "approval_perbill": 860294118, + "support_perbill": 34848862, + "approval": 86.0294118, + "support": 3.4848862 + }, + { + "time_hours": 58, + "approval_perbill": 857843138, + "support_perbill": 34174724, + "approval": 85.7843138, + "support": 3.4174724 + }, + { + "time_hours": 59, + "approval_perbill": 855392157, + "support_perbill": 33521580, + "approval": 85.5392157, + "support": 3.352158 + }, + { + "time_hours": 60, + "approval_perbill": 852941177, + "support_perbill": 32888464, + "approval": 85.2941177, + "support": 3.2888464 + }, + { + "time_hours": 61, + "approval_perbill": 850490197, + "support_perbill": 32274469, + "approval": 85.0490197, + "support": 3.2274469 + }, + { + "time_hours": 62, + "approval_perbill": 848039217, + "support_perbill": 31678741, + "approval": 84.8039217, + "support": 3.1678741 + }, + { + "time_hours": 63, + "approval_perbill": 845588236, + "support_perbill": 31100477, + "approval": 84.5588236, + "support": 3.1100477 + }, + { + "time_hours": 64, + "approval_perbill": 843137256, + "support_perbill": 30538921, + "approval": 84.3137256, + "support": 3.0538921 + }, + { + "time_hours": 65, + "approval_perbill": 840686276, + "support_perbill": 29993358, + "approval": 84.0686276, + "support": 2.9993358 + }, + { + "time_hours": 66, + "approval_perbill": 838235295, + "support_perbill": 29463116, + "approval": 83.8235295, + "support": 2.9463116 + }, + { + "time_hours": 67, + "approval_perbill": 835784315, + "support_perbill": 28947556, + "approval": 83.5784315, + "support": 2.8947556 + }, + { + "time_hours": 68, + "approval_perbill": 833333334, + "support_perbill": 28446079, + "approval": 83.3333334, + "support": 2.8446079 + }, + { + "time_hours": 69, + "approval_perbill": 830882354, + "support_perbill": 27958114, + "approval": 83.0882354, + "support": 2.7958114 + }, + { + "time_hours": 70, + "approval_perbill": 828431373, + "support_perbill": 27483123, + "approval": 82.8431373, + "support": 2.7483123 + }, + { + "time_hours": 71, + "approval_perbill": 825980393, + "support_perbill": 27020596, + "approval": 82.5980393, + "support": 2.7020596 + }, + { + "time_hours": 72, + "approval_perbill": 823529412, + "support_perbill": 26570047, + "approval": 82.3529412, + "support": 2.6570047 + }, + { + "time_hours": 73, + "approval_perbill": 821078432, + "support_perbill": 26131019, + "approval": 82.1078432, + "support": 2.6131019 + }, + { + "time_hours": 74, + "approval_perbill": 818627452, + "support_perbill": 25703073, + "approval": 81.8627452, + "support": 2.5703073 + }, + { + "time_hours": 75, + "approval_perbill": 816176472, + "support_perbill": 25285796, + "approval": 81.6176472, + "support": 2.5285796 + }, + { + "time_hours": 76, + "approval_perbill": 813725491, + "support_perbill": 24878795, + "approval": 81.3725491, + "support": 2.4878795 + }, + { + "time_hours": 77, + "approval_perbill": 811274511, + "support_perbill": 24481693, + "approval": 81.1274511, + "support": 2.4481693 + }, + { + "time_hours": 78, + "approval_perbill": 808823530, + "support_perbill": 24094134, + "approval": 80.882353, + "support": 2.4094134 + }, + { + "time_hours": 79, + "approval_perbill": 806372550, + "support_perbill": 23715779, + "approval": 80.637255, + "support": 2.3715779 + }, + { + "time_hours": 80, + "approval_perbill": 803921569, + "support_perbill": 23346303, + "approval": 80.3921569, + "support": 2.3346303 + }, + { + "time_hours": 81, + "approval_perbill": 801470589, + "support_perbill": 22985397, + "approval": 80.1470589, + "support": 2.2985397 + }, + { + "time_hours": 82, + "approval_perbill": 799019608, + "support_perbill": 22632766, + "approval": 79.9019608, + "support": 2.2632766 + }, + { + "time_hours": 83, + "approval_perbill": 796568628, + "support_perbill": 22288130, + "approval": 79.6568628, + "support": 2.228813 + }, + { + "time_hours": 84, + "approval_perbill": 794117648, + "support_perbill": 21951219, + "approval": 79.4117648, + "support": 2.1951219 + }, + { + "time_hours": 85, + "approval_perbill": 791666668, + "support_perbill": 21621776, + "approval": 79.1666668, + "support": 2.1621776 + }, + { + "time_hours": 86, + "approval_perbill": 789215688, + "support_perbill": 21299556, + "approval": 78.9215688, + "support": 2.1299556 + }, + { + "time_hours": 87, + "approval_perbill": 786764707, + "support_perbill": 20984324, + "approval": 78.6764707, + "support": 2.0984324 + }, + { + "time_hours": 88, + "approval_perbill": 784313727, + "support_perbill": 20675855, + "approval": 78.4313727, + "support": 2.0675855 + }, + { + "time_hours": 89, + "approval_perbill": 781862746, + "support_perbill": 20373934, + "approval": 78.1862746, + "support": 2.0373934 + }, + { + "time_hours": 90, + "approval_perbill": 779411766, + "support_perbill": 20078354, + "approval": 77.9411766, + "support": 2.0078354 + }, + { + "time_hours": 91, + "approval_perbill": 776960785, + "support_perbill": 19788917, + "approval": 77.6960785, + "support": 1.9788917 + }, + { + "time_hours": 92, + "approval_perbill": 774509805, + "support_perbill": 19505435, + "approval": 77.4509805, + "support": 1.9505435 + }, + { + "time_hours": 93, + "approval_perbill": 772058824, + "support_perbill": 19227725, + "approval": 77.2058824, + "support": 1.9227725 + }, + { + "time_hours": 94, + "approval_perbill": 769607844, + "support_perbill": 18955613, + "approval": 76.9607844, + "support": 1.8955613 + }, + { + "time_hours": 95, + "approval_perbill": 767156863, + "support_perbill": 18688931, + "approval": 76.7156863, + "support": 1.8688931 + }, + { + "time_hours": 96, + "approval_perbill": 764705883, + "support_perbill": 18427518, + "approval": 76.4705883, + "support": 1.8427518 + }, + { + "time_hours": 97, + "approval_perbill": 762254903, + "support_perbill": 18171219, + "approval": 76.2254903, + "support": 1.8171219 + }, + { + "time_hours": 98, + "approval_perbill": 759803923, + "support_perbill": 17919887, + "approval": 75.9803923, + "support": 1.7919887 + }, + { + "time_hours": 99, + "approval_perbill": 757352942, + "support_perbill": 17673377, + "approval": 75.7352942, + "support": 1.7673377 + }, + { + "time_hours": 100, + "approval_perbill": 754901962, + "support_perbill": 17431553, + "approval": 75.4901962, + "support": 1.7431553 + }, + { + "time_hours": 101, + "approval_perbill": 752450981, + "support_perbill": 17194282, + "approval": 75.2450981, + "support": 1.7194282 + }, + { + "time_hours": 102, + "approval_perbill": 750000001, + "support_perbill": 16961437, + "approval": 75.0000001, + "support": 1.6961437 + }, + { + "time_hours": 103, + "approval_perbill": 747549020, + "support_perbill": 16732895, + "approval": 74.754902, + "support": 1.6732895 + }, + { + "time_hours": 104, + "approval_perbill": 745098040, + "support_perbill": 16508538, + "approval": 74.509804, + "support": 1.6508538 + }, + { + "time_hours": 105, + "approval_perbill": 742647059, + "support_perbill": 16288252, + "approval": 74.2647059, + "support": 1.6288252 + }, + { + "time_hours": 106, + "approval_perbill": 740196079, + "support_perbill": 16071927, + "approval": 74.0196079, + "support": 1.6071927 + }, + { + "time_hours": 107, + "approval_perbill": 737745099, + "support_perbill": 15859457, + "approval": 73.7745099, + "support": 1.5859457 + }, + { + "time_hours": 108, + "approval_perbill": 735294118, + "support_perbill": 15650741, + "approval": 73.5294118, + "support": 1.5650741 + }, + { + "time_hours": 109, + "approval_perbill": 732843138, + "support_perbill": 15445679, + "approval": 73.2843138, + "support": 1.5445679 + }, + { + "time_hours": 110, + "approval_perbill": 730392158, + "support_perbill": 15244176, + "approval": 73.0392158, + "support": 1.5244176 + }, + { + "time_hours": 111, + "approval_perbill": 727941178, + "support_perbill": 15046141, + "approval": 72.7941178, + "support": 1.5046141 + }, + { + "time_hours": 112, + "approval_perbill": 725490197, + "support_perbill": 14851485, + "approval": 72.5490197, + "support": 1.4851485 + }, + { + "time_hours": 113, + "approval_perbill": 723039217, + "support_perbill": 14660121, + "approval": 72.3039217, + "support": 1.4660121 + }, + { + "time_hours": 114, + "approval_perbill": 720588236, + "support_perbill": 14471968, + "approval": 72.0588236, + "support": 1.4471968 + }, + { + "time_hours": 115, + "approval_perbill": 718137256, + "support_perbill": 14286945, + "approval": 71.8137256, + "support": 1.4286945 + }, + { + "time_hours": 116, + "approval_perbill": 715686275, + "support_perbill": 14104975, + "approval": 71.5686275, + "support": 1.4104975 + }, + { + "time_hours": 117, + "approval_perbill": 713235295, + "support_perbill": 13925982, + "approval": 71.3235295, + "support": 1.3925982 + }, + { + "time_hours": 118, + "approval_perbill": 710784314, + "support_perbill": 13749894, + "approval": 71.0784314, + "support": 1.3749894 + }, + { + "time_hours": 119, + "approval_perbill": 708333334, + "support_perbill": 13576642, + "approval": 70.8333334, + "support": 1.3576642 + }, + { + "time_hours": 120, + "approval_perbill": 705882353, + "support_perbill": 13406156, + "approval": 70.5882353, + "support": 1.3406156 + }, + { + "time_hours": 121, + "approval_perbill": 703431373, + "support_perbill": 13238372, + "approval": 70.3431373, + "support": 1.3238372 + }, + { + "time_hours": 122, + "approval_perbill": 700980393, + "support_perbill": 13073226, + "approval": 70.0980393, + "support": 1.3073226 + }, + { + "time_hours": 123, + "approval_perbill": 698529413, + "support_perbill": 12910655, + "approval": 69.8529413, + "support": 1.2910655 + }, + { + "time_hours": 124, + "approval_perbill": 696078432, + "support_perbill": 12750601, + "approval": 69.6078432, + "support": 1.2750601 + }, + { + "time_hours": 125, + "approval_perbill": 693627452, + "support_perbill": 12593005, + "approval": 69.3627452, + "support": 1.2593005 + }, + { + "time_hours": 126, + "approval_perbill": 691176471, + "support_perbill": 12437810, + "approval": 69.1176471, + "support": 1.243781 + }, + { + "time_hours": 127, + "approval_perbill": 688725491, + "support_perbill": 12284964, + "approval": 68.8725491, + "support": 1.2284964 + }, + { + "time_hours": 128, + "approval_perbill": 686274511, + "support_perbill": 12134411, + "approval": 68.6274511, + "support": 1.2134411 + }, + { + "time_hours": 129, + "approval_perbill": 683823530, + "support_perbill": 11986103, + "approval": 68.382353, + "support": 1.1986103 + }, + { + "time_hours": 130, + "approval_perbill": 681372550, + "support_perbill": 11839987, + "approval": 68.137255, + "support": 1.1839987 + }, + { + "time_hours": 131, + "approval_perbill": 678921569, + "support_perbill": 11696017, + "approval": 67.8921569, + "support": 1.1696017 + }, + { + "time_hours": 132, + "approval_perbill": 676470589, + "support_perbill": 11554145, + "approval": 67.6470589, + "support": 1.1554145 + }, + { + "time_hours": 133, + "approval_perbill": 674019609, + "support_perbill": 11414326, + "approval": 67.4019609, + "support": 1.1414326 + }, + { + "time_hours": 134, + "approval_perbill": 671568629, + "support_perbill": 11276516, + "approval": 67.1568629, + "support": 1.1276516 + }, + { + "time_hours": 135, + "approval_perbill": 669117648, + "support_perbill": 11140671, + "approval": 66.9117648, + "support": 1.1140671 + }, + { + "time_hours": 136, + "approval_perbill": 666666668, + "support_perbill": 11006750, + "approval": 66.6666668, + "support": 1.100675 + }, + { + "time_hours": 137, + "approval_perbill": 664215687, + "support_perbill": 10874713, + "approval": 66.4215687, + "support": 1.0874713 + }, + { + "time_hours": 138, + "approval_perbill": 661764707, + "support_perbill": 10744519, + "approval": 66.1764707, + "support": 1.0744519 + }, + { + "time_hours": 139, + "approval_perbill": 659313726, + "support_perbill": 10616130, + "approval": 65.9313726, + "support": 1.061613 + }, + { + "time_hours": 140, + "approval_perbill": 656862746, + "support_perbill": 10489510, + "approval": 65.6862746, + "support": 1.048951 + }, + { + "time_hours": 141, + "approval_perbill": 654411765, + "support_perbill": 10364622, + "approval": 65.4411765, + "support": 1.0364622 + }, + { + "time_hours": 142, + "approval_perbill": 651960785, + "support_perbill": 10241430, + "approval": 65.1960785, + "support": 1.024143 + }, + { + "time_hours": 143, + "approval_perbill": 649509804, + "support_perbill": 10119900, + "approval": 64.9509804, + "support": 1.01199 + }, + { + "time_hours": 144, + "approval_perbill": 647058824, + "support_perbill": 10000000, + "approval": 64.7058824, + "support": 1 + }, + { + "time_hours": 145, + "approval_perbill": 644607844, + "support_perbill": 9881695, + "approval": 64.4607844, + "support": 0.9881695 + }, + { + "time_hours": 146, + "approval_perbill": 642156864, + "support_perbill": 9764955, + "approval": 64.2156864, + "support": 0.9764955 + }, + { + "time_hours": 147, + "approval_perbill": 639705883, + "support_perbill": 9649749, + "approval": 63.9705883, + "support": 0.9649749 + }, + { + "time_hours": 148, + "approval_perbill": 637254903, + "support_perbill": 9536047, + "approval": 63.7254903, + "support": 0.9536047 + }, + { + "time_hours": 149, + "approval_perbill": 634803923, + "support_perbill": 9423820, + "approval": 63.4803923, + "support": 0.942382 + }, + { + "time_hours": 150, + "approval_perbill": 632352942, + "support_perbill": 9313038, + "approval": 63.2352942, + "support": 0.9313038 + }, + { + "time_hours": 151, + "approval_perbill": 629901962, + "support_perbill": 9203674, + "approval": 62.9901962, + "support": 0.9203674 + }, + { + "time_hours": 152, + "approval_perbill": 627450981, + "support_perbill": 9095702, + "approval": 62.7450981, + "support": 0.9095702 + }, + { + "time_hours": 153, + "approval_perbill": 625000001, + "support_perbill": 8989095, + "approval": 62.5000001, + "support": 0.8989095 + }, + { + "time_hours": 154, + "approval_perbill": 622549020, + "support_perbill": 8883826, + "approval": 62.254902, + "support": 0.8883826 + }, + { + "time_hours": 155, + "approval_perbill": 620098040, + "support_perbill": 8779872, + "approval": 62.009804, + "support": 0.8779872 + }, + { + "time_hours": 156, + "approval_perbill": 617647059, + "support_perbill": 8677207, + "approval": 61.7647059, + "support": 0.8677207 + }, + { + "time_hours": 157, + "approval_perbill": 615196079, + "support_perbill": 8575808, + "approval": 61.5196079, + "support": 0.8575808 + }, + { + "time_hours": 158, + "approval_perbill": 612745099, + "support_perbill": 8475652, + "approval": 61.2745099, + "support": 0.8475652 + }, + { + "time_hours": 159, + "approval_perbill": 610294119, + "support_perbill": 8376715, + "approval": 61.0294119, + "support": 0.8376715 + }, + { + "time_hours": 160, + "approval_perbill": 607843138, + "support_perbill": 8278976, + "approval": 60.7843138, + "support": 0.8278976 + }, + { + "time_hours": 161, + "approval_perbill": 605392158, + "support_perbill": 8182413, + "approval": 60.5392158, + "support": 0.8182413 + }, + { + "time_hours": 162, + "approval_perbill": 602941177, + "support_perbill": 8087005, + "approval": 60.2941177, + "support": 0.8087005 + }, + { + "time_hours": 163, + "approval_perbill": 600490197, + "support_perbill": 7992731, + "approval": 60.0490197, + "support": 0.7992731 + }, + { + "time_hours": 164, + "approval_perbill": 598039216, + "support_perbill": 7899571, + "approval": 59.8039216, + "support": 0.7899571 + }, + { + "time_hours": 165, + "approval_perbill": 595588236, + "support_perbill": 7807506, + "approval": 59.5588236, + "support": 0.7807506 + }, + { + "time_hours": 166, + "approval_perbill": 593137255, + "support_perbill": 7716516, + "approval": 59.3137255, + "support": 0.7716516 + }, + { + "time_hours": 167, + "approval_perbill": 590686275, + "support_perbill": 7626583, + "approval": 59.0686275, + "support": 0.7626583 + }, + { + "time_hours": 168, + "approval_perbill": 588235295, + "support_perbill": 7537688, + "approval": 58.8235295, + "support": 0.7537688 + }, + { + "time_hours": 169, + "approval_perbill": 585784315, + "support_perbill": 7449814, + "approval": 58.5784315, + "support": 0.7449814 + }, + { + "time_hours": 170, + "approval_perbill": 583333335, + "support_perbill": 7362942, + "approval": 58.3333335, + "support": 0.7362942 + }, + { + "time_hours": 171, + "approval_perbill": 580882354, + "support_perbill": 7277057, + "approval": 58.0882354, + "support": 0.7277057 + }, + { + "time_hours": 172, + "approval_perbill": 578431374, + "support_perbill": 7192141, + "approval": 57.8431374, + "support": 0.7192141 + }, + { + "time_hours": 173, + "approval_perbill": 575980393, + "support_perbill": 7108178, + "approval": 57.5980393, + "support": 0.7108178 + }, + { + "time_hours": 174, + "approval_perbill": 573529413, + "support_perbill": 7025151, + "approval": 57.3529413, + "support": 0.7025151 + }, + { + "time_hours": 175, + "approval_perbill": 571078432, + "support_perbill": 6943047, + "approval": 57.1078432, + "support": 0.6943047 + }, + { + "time_hours": 176, + "approval_perbill": 568627452, + "support_perbill": 6861848, + "approval": 56.8627452, + "support": 0.6861848 + }, + { + "time_hours": 177, + "approval_perbill": 566176471, + "support_perbill": 6781540, + "approval": 56.6176471, + "support": 0.678154 + }, + { + "time_hours": 178, + "approval_perbill": 563725491, + "support_perbill": 6702109, + "approval": 56.3725491, + "support": 0.6702109 + }, + { + "time_hours": 179, + "approval_perbill": 561274510, + "support_perbill": 6623541, + "approval": 56.127451, + "support": 0.6623541 + }, + { + "time_hours": 180, + "approval_perbill": 558823530, + "support_perbill": 6545820, + "approval": 55.882353, + "support": 0.654582 + }, + { + "time_hours": 181, + "approval_perbill": 556372550, + "support_perbill": 6468935, + "approval": 55.637255, + "support": 0.6468935 + }, + { + "time_hours": 182, + "approval_perbill": 553921570, + "support_perbill": 6392871, + "approval": 55.392157, + "support": 0.6392871 + }, + { + "time_hours": 183, + "approval_perbill": 551470589, + "support_perbill": 6317615, + "approval": 55.1470589, + "support": 0.6317615 + }, + { + "time_hours": 184, + "approval_perbill": 549019609, + "support_perbill": 6243154, + "approval": 54.9019609, + "support": 0.6243154 + }, + { + "time_hours": 185, + "approval_perbill": 546568628, + "support_perbill": 6169476, + "approval": 54.6568628, + "support": 0.6169476 + }, + { + "time_hours": 186, + "approval_perbill": 544117648, + "support_perbill": 6096569, + "approval": 54.4117648, + "support": 0.6096569 + }, + { + "time_hours": 187, + "approval_perbill": 541666667, + "support_perbill": 6024421, + "approval": 54.1666667, + "support": 0.6024421 + }, + { + "time_hours": 188, + "approval_perbill": 539215687, + "support_perbill": 5953019, + "approval": 53.9215687, + "support": 0.5953019 + }, + { + "time_hours": 189, + "approval_perbill": 536764706, + "support_perbill": 5882353, + "approval": 53.6764706, + "support": 0.5882353 + }, + { + "time_hours": 190, + "approval_perbill": 534313726, + "support_perbill": 5812410, + "approval": 53.4313726, + "support": 0.581241 + }, + { + "time_hours": 191, + "approval_perbill": 531862746, + "support_perbill": 5743181, + "approval": 53.1862746, + "support": 0.5743181 + }, + { + "time_hours": 192, + "approval_perbill": 529411765, + "support_perbill": 5674653, + "approval": 52.9411765, + "support": 0.5674653 + }, + { + "time_hours": 193, + "approval_perbill": 526960785, + "support_perbill": 5606817, + "approval": 52.6960785, + "support": 0.5606817 + }, + { + "time_hours": 194, + "approval_perbill": 524509805, + "support_perbill": 5539662, + "approval": 52.4509805, + "support": 0.5539662 + }, + { + "time_hours": 195, + "approval_perbill": 522058825, + "support_perbill": 5473177, + "approval": 52.2058825, + "support": 0.5473177 + }, + { + "time_hours": 196, + "approval_perbill": 519607844, + "support_perbill": 5407354, + "approval": 51.9607844, + "support": 0.5407354 + }, + { + "time_hours": 197, + "approval_perbill": 517156864, + "support_perbill": 5342181, + "approval": 51.7156864, + "support": 0.5342181 + }, + { + "time_hours": 198, + "approval_perbill": 514705883, + "support_perbill": 5277650, + "approval": 51.4705883, + "support": 0.527765 + }, + { + "time_hours": 199, + "approval_perbill": 512254903, + "support_perbill": 5213751, + "approval": 51.2254903, + "support": 0.5213751 + }, + { + "time_hours": 200, + "approval_perbill": 509803922, + "support_perbill": 5150474, + "approval": 50.9803922, + "support": 0.5150474 + }, + { + "time_hours": 201, + "approval_perbill": 507352942, + "support_perbill": 5087812, + "approval": 50.7352942, + "support": 0.5087812 + }, + { + "time_hours": 202, + "approval_perbill": 504901961, + "support_perbill": 5025754, + "approval": 50.4901961, + "support": 0.5025754 + }, + { + "time_hours": 203, + "approval_perbill": 502450981, + "support_perbill": 4964292, + "approval": 50.2450981, + "support": 0.4964292 + }, + { + "time_hours": 204, + "approval_perbill": 500000000, + "support_perbill": 4903417, + "approval": 50, + "support": 0.4903417 + }, + { + "time_hours": 205, + "approval_perbill": 500000000, + "support_perbill": 4843122, + "approval": 50, + "support": 0.4843122 + }, + { + "time_hours": 206, + "approval_perbill": 500000000, + "support_perbill": 4783398, + "approval": 50, + "support": 0.4783398 + }, + { + "time_hours": 207, + "approval_perbill": 500000000, + "support_perbill": 4724236, + "approval": 50, + "support": 0.4724236 + }, + { + "time_hours": 208, + "approval_perbill": 500000000, + "support_perbill": 4665630, + "approval": 50, + "support": 0.466563 + }, + { + "time_hours": 209, + "approval_perbill": 500000000, + "support_perbill": 4607570, + "approval": 50, + "support": 0.460757 + }, + { + "time_hours": 210, + "approval_perbill": 500000000, + "support_perbill": 4550050, + "approval": 50, + "support": 0.455005 + }, + { + "time_hours": 211, + "approval_perbill": 500000000, + "support_perbill": 4493062, + "approval": 50, + "support": 0.4493062 + }, + { + "time_hours": 212, + "approval_perbill": 500000000, + "support_perbill": 4436599, + "approval": 50, + "support": 0.4436599 + }, + { + "time_hours": 213, + "approval_perbill": 500000000, + "support_perbill": 4380654, + "approval": 50, + "support": 0.4380654 + }, + { + "time_hours": 214, + "approval_perbill": 500000000, + "support_perbill": 4325218, + "approval": 50, + "support": 0.4325218 + }, + { + "time_hours": 215, + "approval_perbill": 500000000, + "support_perbill": 4270287, + "approval": 50, + "support": 0.4270287 + }, + { + "time_hours": 216, + "approval_perbill": 500000000, + "support_perbill": 4215851, + "approval": 50, + "support": 0.4215851 + }, + { + "time_hours": 217, + "approval_perbill": 500000000, + "support_perbill": 4161906, + "approval": 50, + "support": 0.4161906 + }, + { + "time_hours": 218, + "approval_perbill": 500000000, + "support_perbill": 4108444, + "approval": 50, + "support": 0.4108444 + }, + { + "time_hours": 219, + "approval_perbill": 500000000, + "support_perbill": 4055459, + "approval": 50, + "support": 0.4055459 + }, + { + "time_hours": 220, + "approval_perbill": 500000000, + "support_perbill": 4002944, + "approval": 50, + "support": 0.4002944 + }, + { + "time_hours": 221, + "approval_perbill": 500000000, + "support_perbill": 3950894, + "approval": 50, + "support": 0.3950894 + }, + { + "time_hours": 222, + "approval_perbill": 500000000, + "support_perbill": 3899302, + "approval": 50, + "support": 0.3899302 + }, + { + "time_hours": 223, + "approval_perbill": 500000000, + "support_perbill": 3848162, + "approval": 50, + "support": 0.3848162 + }, + { + "time_hours": 224, + "approval_perbill": 500000000, + "support_perbill": 3797468, + "approval": 50, + "support": 0.3797468 + }, + { + "time_hours": 225, + "approval_perbill": 500000000, + "support_perbill": 3747215, + "approval": 50, + "support": 0.3747215 + }, + { + "time_hours": 226, + "approval_perbill": 500000000, + "support_perbill": 3697396, + "approval": 50, + "support": 0.3697396 + }, + { + "time_hours": 227, + "approval_perbill": 500000000, + "support_perbill": 3648006, + "approval": 50, + "support": 0.3648006 + }, + { + "time_hours": 228, + "approval_perbill": 500000000, + "support_perbill": 3599040, + "approval": 50, + "support": 0.359904 + }, + { + "time_hours": 229, + "approval_perbill": 500000000, + "support_perbill": 3550492, + "approval": 50, + "support": 0.3550492 + }, + { + "time_hours": 230, + "approval_perbill": 500000000, + "support_perbill": 3502357, + "approval": 50, + "support": 0.3502357 + }, + { + "time_hours": 231, + "approval_perbill": 500000000, + "support_perbill": 3454629, + "approval": 50, + "support": 0.3454629 + }, + { + "time_hours": 232, + "approval_perbill": 500000000, + "support_perbill": 3407304, + "approval": 50, + "support": 0.3407304 + }, + { + "time_hours": 233, + "approval_perbill": 500000000, + "support_perbill": 3360376, + "approval": 50, + "support": 0.3360376 + }, + { + "time_hours": 234, + "approval_perbill": 500000000, + "support_perbill": 3313840, + "approval": 50, + "support": 0.331384 + }, + { + "time_hours": 235, + "approval_perbill": 500000000, + "support_perbill": 3267692, + "approval": 50, + "support": 0.3267692 + }, + { + "time_hours": 236, + "approval_perbill": 500000000, + "support_perbill": 3221926, + "approval": 50, + "support": 0.3221926 + }, + { + "time_hours": 237, + "approval_perbill": 500000000, + "support_perbill": 3176538, + "approval": 50, + "support": 0.3176538 + }, + { + "time_hours": 238, + "approval_perbill": 500000000, + "support_perbill": 3131524, + "approval": 50, + "support": 0.3131524 + }, + { + "time_hours": 239, + "approval_perbill": 500000000, + "support_perbill": 3086878, + "approval": 50, + "support": 0.3086878 + }, + { + "time_hours": 240, + "approval_perbill": 500000000, + "support_perbill": 3042596, + "approval": 50, + "support": 0.3042596 + }, + { + "time_hours": 241, + "approval_perbill": 500000000, + "support_perbill": 2998674, + "approval": 50, + "support": 0.2998674 + }, + { + "time_hours": 242, + "approval_perbill": 500000000, + "support_perbill": 2955107, + "approval": 50, + "support": 0.2955107 + }, + { + "time_hours": 243, + "approval_perbill": 500000000, + "support_perbill": 2911892, + "approval": 50, + "support": 0.2911892 + }, + { + "time_hours": 244, + "approval_perbill": 500000000, + "support_perbill": 2869023, + "approval": 50, + "support": 0.2869023 + }, + { + "time_hours": 245, + "approval_perbill": 500000000, + "support_perbill": 2826496, + "approval": 50, + "support": 0.2826496 + }, + { + "time_hours": 246, + "approval_perbill": 500000000, + "support_perbill": 2784309, + "approval": 50, + "support": 0.2784309 + }, + { + "time_hours": 247, + "approval_perbill": 500000000, + "support_perbill": 2742455, + "approval": 50, + "support": 0.2742455 + }, + { + "time_hours": 248, + "approval_perbill": 500000000, + "support_perbill": 2700933, + "approval": 50, + "support": 0.2700933 + }, + { + "time_hours": 249, + "approval_perbill": 500000000, + "support_perbill": 2659737, + "approval": 50, + "support": 0.2659737 + }, + { + "time_hours": 250, + "approval_perbill": 500000000, + "support_perbill": 2618864, + "approval": 50, + "support": 0.2618864 + }, + { + "time_hours": 251, + "approval_perbill": 500000000, + "support_perbill": 2578310, + "approval": 50, + "support": 0.257831 + }, + { + "time_hours": 252, + "approval_perbill": 500000000, + "support_perbill": 2538071, + "approval": 50, + "support": 0.2538071 + }, + { + "time_hours": 253, + "approval_perbill": 500000000, + "support_perbill": 2498144, + "approval": 50, + "support": 0.2498144 + }, + { + "time_hours": 254, + "approval_perbill": 500000000, + "support_perbill": 2458525, + "approval": 50, + "support": 0.2458525 + }, + { + "time_hours": 255, + "approval_perbill": 500000000, + "support_perbill": 2419210, + "approval": 50, + "support": 0.241921 + }, + { + "time_hours": 256, + "approval_perbill": 500000000, + "support_perbill": 2380197, + "approval": 50, + "support": 0.2380197 + }, + { + "time_hours": 257, + "approval_perbill": 500000000, + "support_perbill": 2341481, + "approval": 50, + "support": 0.2341481 + }, + { + "time_hours": 258, + "approval_perbill": 500000000, + "support_perbill": 2303059, + "approval": 50, + "support": 0.2303059 + }, + { + "time_hours": 259, + "approval_perbill": 500000000, + "support_perbill": 2264928, + "approval": 50, + "support": 0.2264928 + }, + { + "time_hours": 260, + "approval_perbill": 500000000, + "support_perbill": 2227084, + "approval": 50, + "support": 0.2227084 + }, + { + "time_hours": 261, + "approval_perbill": 500000000, + "support_perbill": 2189525, + "approval": 50, + "support": 0.2189525 + }, + { + "time_hours": 262, + "approval_perbill": 500000000, + "support_perbill": 2152247, + "approval": 50, + "support": 0.2152247 + }, + { + "time_hours": 263, + "approval_perbill": 500000000, + "support_perbill": 2115247, + "approval": 50, + "support": 0.2115247 + }, + { + "time_hours": 264, + "approval_perbill": 500000000, + "support_perbill": 2078522, + "approval": 50, + "support": 0.2078522 + }, + { + "time_hours": 265, + "approval_perbill": 500000000, + "support_perbill": 2042068, + "approval": 50, + "support": 0.2042068 + }, + { + "time_hours": 266, + "approval_perbill": 500000000, + "support_perbill": 2005884, + "approval": 50, + "support": 0.2005884 + }, + { + "time_hours": 267, + "approval_perbill": 500000000, + "support_perbill": 1969965, + "approval": 50, + "support": 0.1969965 + }, + { + "time_hours": 268, + "approval_perbill": 500000000, + "support_perbill": 1934309, + "approval": 50, + "support": 0.1934309 + }, + { + "time_hours": 269, + "approval_perbill": 500000000, + "support_perbill": 1898913, + "approval": 50, + "support": 0.1898913 + }, + { + "time_hours": 270, + "approval_perbill": 500000000, + "support_perbill": 1863775, + "approval": 50, + "support": 0.1863775 + }, + { + "time_hours": 271, + "approval_perbill": 500000000, + "support_perbill": 1828891, + "approval": 50, + "support": 0.1828891 + }, + { + "time_hours": 272, + "approval_perbill": 500000000, + "support_perbill": 1794258, + "approval": 50, + "support": 0.1794258 + }, + { + "time_hours": 273, + "approval_perbill": 500000000, + "support_perbill": 1759875, + "approval": 50, + "support": 0.1759875 + }, + { + "time_hours": 274, + "approval_perbill": 500000000, + "support_perbill": 1725737, + "approval": 50, + "support": 0.1725737 + }, + { + "time_hours": 275, + "approval_perbill": 500000000, + "support_perbill": 1691844, + "approval": 50, + "support": 0.1691844 + }, + { + "time_hours": 276, + "approval_perbill": 500000000, + "support_perbill": 1658191, + "approval": 50, + "support": 0.1658191 + }, + { + "time_hours": 277, + "approval_perbill": 500000000, + "support_perbill": 1624777, + "approval": 50, + "support": 0.1624777 + }, + { + "time_hours": 278, + "approval_perbill": 500000000, + "support_perbill": 1591599, + "approval": 50, + "support": 0.1591599 + }, + { + "time_hours": 279, + "approval_perbill": 500000000, + "support_perbill": 1558654, + "approval": 50, + "support": 0.1558654 + }, + { + "time_hours": 280, + "approval_perbill": 500000000, + "support_perbill": 1525941, + "approval": 50, + "support": 0.1525941 + }, + { + "time_hours": 281, + "approval_perbill": 500000000, + "support_perbill": 1493456, + "approval": 50, + "support": 0.1493456 + }, + { + "time_hours": 282, + "approval_perbill": 500000000, + "support_perbill": 1461197, + "approval": 50, + "support": 0.1461197 + }, + { + "time_hours": 283, + "approval_perbill": 500000000, + "support_perbill": 1429162, + "approval": 50, + "support": 0.1429162 + }, + { + "time_hours": 284, + "approval_perbill": 500000000, + "support_perbill": 1397348, + "approval": 50, + "support": 0.1397348 + }, + { + "time_hours": 285, + "approval_perbill": 500000000, + "support_perbill": 1365754, + "approval": 50, + "support": 0.1365754 + }, + { + "time_hours": 286, + "approval_perbill": 500000000, + "support_perbill": 1334377, + "approval": 50, + "support": 0.1334377 + }, + { + "time_hours": 287, + "approval_perbill": 500000000, + "support_perbill": 1303214, + "approval": 50, + "support": 0.1303214 + }, + { + "time_hours": 288, + "approval_perbill": 500000000, + "support_perbill": 1272264, + "approval": 50, + "support": 0.1272264 + }, + { + "time_hours": 289, + "approval_perbill": 500000000, + "support_perbill": 1241525, + "approval": 50, + "support": 0.1241525 + }, + { + "time_hours": 290, + "approval_perbill": 500000000, + "support_perbill": 1210994, + "approval": 50, + "support": 0.1210994 + }, + { + "time_hours": 291, + "approval_perbill": 500000000, + "support_perbill": 1180668, + "approval": 50, + "support": 0.1180668 + }, + { + "time_hours": 292, + "approval_perbill": 500000000, + "support_perbill": 1150547, + "approval": 50, + "support": 0.1150547 + }, + { + "time_hours": 293, + "approval_perbill": 500000000, + "support_perbill": 1120628, + "approval": 50, + "support": 0.1120628 + }, + { + "time_hours": 294, + "approval_perbill": 500000000, + "support_perbill": 1090909, + "approval": 50, + "support": 0.1090909 + }, + { + "time_hours": 295, + "approval_perbill": 500000000, + "support_perbill": 1061388, + "approval": 50, + "support": 0.1061388 + }, + { + "time_hours": 296, + "approval_perbill": 500000000, + "support_perbill": 1032063, + "approval": 50, + "support": 0.1032063 + }, + { + "time_hours": 297, + "approval_perbill": 500000000, + "support_perbill": 1002932, + "approval": 50, + "support": 0.1002932 + }, + { + "time_hours": 298, + "approval_perbill": 500000000, + "support_perbill": 973993, + "approval": 50, + "support": 0.0973993 + }, + { + "time_hours": 299, + "approval_perbill": 500000000, + "support_perbill": 945244, + "approval": 50, + "support": 0.0945244 + }, + { + "time_hours": 300, + "approval_perbill": 500000000, + "support_perbill": 916684, + "approval": 50, + "support": 0.0916684 + }, + { + "time_hours": 301, + "approval_perbill": 500000000, + "support_perbill": 888310, + "approval": 50, + "support": 0.088831 + }, + { + "time_hours": 302, + "approval_perbill": 500000000, + "support_perbill": 860121, + "approval": 50, + "support": 0.0860121 + }, + { + "time_hours": 303, + "approval_perbill": 500000000, + "support_perbill": 832114, + "approval": 50, + "support": 0.0832114 + }, + { + "time_hours": 304, + "approval_perbill": 500000000, + "support_perbill": 804289, + "approval": 50, + "support": 0.0804289 + }, + { + "time_hours": 305, + "approval_perbill": 500000000, + "support_perbill": 776644, + "approval": 50, + "support": 0.0776644 + }, + { + "time_hours": 306, + "approval_perbill": 500000000, + "support_perbill": 749176, + "approval": 50, + "support": 0.0749176 + }, + { + "time_hours": 307, + "approval_perbill": 500000000, + "support_perbill": 721884, + "approval": 50, + "support": 0.0721884 + }, + { + "time_hours": 308, + "approval_perbill": 500000000, + "support_perbill": 694766, + "approval": 50, + "support": 0.0694766 + }, + { + "time_hours": 309, + "approval_perbill": 500000000, + "support_perbill": 667821, + "approval": 50, + "support": 0.0667821 + }, + { + "time_hours": 310, + "approval_perbill": 500000000, + "support_perbill": 641047, + "approval": 50, + "support": 0.0641047 + }, + { + "time_hours": 311, + "approval_perbill": 500000000, + "support_perbill": 614442, + "approval": 50, + "support": 0.0614442 + }, + { + "time_hours": 312, + "approval_perbill": 500000000, + "support_perbill": 588005, + "approval": 50, + "support": 0.0588005 + }, + { + "time_hours": 313, + "approval_perbill": 500000000, + "support_perbill": 561734, + "approval": 50, + "support": 0.0561734 + }, + { + "time_hours": 314, + "approval_perbill": 500000000, + "support_perbill": 535627, + "approval": 50, + "support": 0.0535627 + }, + { + "time_hours": 315, + "approval_perbill": 500000000, + "support_perbill": 509684, + "approval": 50, + "support": 0.0509684 + }, + { + "time_hours": 316, + "approval_perbill": 500000000, + "support_perbill": 483902, + "approval": 50, + "support": 0.0483902 + }, + { + "time_hours": 317, + "approval_perbill": 500000000, + "support_perbill": 458280, + "approval": 50, + "support": 0.045828 + }, + { + "time_hours": 318, + "approval_perbill": 500000000, + "support_perbill": 432817, + "approval": 50, + "support": 0.0432817 + }, + { + "time_hours": 319, + "approval_perbill": 500000000, + "support_perbill": 407511, + "approval": 50, + "support": 0.0407511 + }, + { + "time_hours": 320, + "approval_perbill": 500000000, + "support_perbill": 382360, + "approval": 50, + "support": 0.038236 + }, + { + "time_hours": 321, + "approval_perbill": 500000000, + "support_perbill": 357364, + "approval": 50, + "support": 0.0357364 + }, + { + "time_hours": 322, + "approval_perbill": 500000000, + "support_perbill": 332520, + "approval": 50, + "support": 0.033252 + }, + { + "time_hours": 323, + "approval_perbill": 500000000, + "support_perbill": 307828, + "approval": 50, + "support": 0.0307828 + }, + { + "time_hours": 324, + "approval_perbill": 500000000, + "support_perbill": 283286, + "approval": 50, + "support": 0.0283286 + }, + { + "time_hours": 325, + "approval_perbill": 500000000, + "support_perbill": 258892, + "approval": 50, + "support": 0.0258892 + }, + { + "time_hours": 326, + "approval_perbill": 500000000, + "support_perbill": 234646, + "approval": 50, + "support": 0.0234646 + }, + { + "time_hours": 327, + "approval_perbill": 500000000, + "support_perbill": 210546, + "approval": 50, + "support": 0.0210546 + }, + { + "time_hours": 328, + "approval_perbill": 500000000, + "support_perbill": 186590, + "approval": 50, + "support": 0.018659 + }, + { + "time_hours": 329, + "approval_perbill": 500000000, + "support_perbill": 162778, + "approval": 50, + "support": 0.0162778 + }, + { + "time_hours": 330, + "approval_perbill": 500000000, + "support_perbill": 139108, + "approval": 50, + "support": 0.0139108 + }, + { + "time_hours": 331, + "approval_perbill": 500000000, + "support_perbill": 115578, + "approval": 50, + "support": 0.0115578 + }, + { + "time_hours": 332, + "approval_perbill": 500000000, + "support_perbill": 92188, + "approval": 50, + "support": 0.0092188 + }, + { + "time_hours": 333, + "approval_perbill": 500000000, + "support_perbill": 68937, + "approval": 50, + "support": 0.0068937 + }, + { + "time_hours": 334, + "approval_perbill": 500000000, + "support_perbill": 45822, + "approval": 50, + "support": 0.0045822 + }, + { + "time_hours": 335, + "approval_perbill": 500000000, + "support_perbill": 22844, + "approval": 50, + "support": 0.0022844 + }, + { + "time_hours": 336, + "approval_perbill": 500000000, + "support_perbill": 0, + "approval": 50, + "support": 0 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/kusama/opengov_ref_killer.json b/components/utilities/charts_data/kusama/opengov_ref_killer.json new file mode 100644 index 000000000000..9c589d040233 --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_ref_killer.json @@ -0,0 +1,2361 @@ +[ + { + "time_hours": 0, + "approval_perbill": 1000000000, + "support_perbill": 500000026, + "approval": 100, + "support": 50.0000026 + }, + { + "time_hours": 1, + "approval_perbill": 997549020, + "support_perbill": 418401359, + "approval": 99.754902, + "support": 41.8401359 + }, + { + "time_hours": 2, + "approval_perbill": 995098040, + "support_perbill": 359397443, + "approval": 99.509804, + "support": 35.9397443 + }, + { + "time_hours": 3, + "approval_perbill": 992647060, + "support_perbill": 314744813, + "approval": 99.264706, + "support": 31.4744813 + }, + { + "time_hours": 4, + "approval_perbill": 990196080, + "support_perbill": 279775293, + "approval": 99.019608, + "support": 27.9775293 + }, + { + "time_hours": 5, + "approval_perbill": 987745099, + "support_perbill": 251647242, + "approval": 98.7745099, + "support": 25.1647242 + }, + { + "time_hours": 6, + "approval_perbill": 985294119, + "support_perbill": 228531862, + "approval": 98.5294119, + "support": 22.8531862 + }, + { + "time_hours": 7, + "approval_perbill": 982843138, + "support_perbill": 209198815, + "approval": 98.2843138, + "support": 20.9198815 + }, + { + "time_hours": 8, + "approval_perbill": 980392158, + "support_perbill": 192789972, + "approval": 98.0392158, + "support": 19.2789972 + }, + { + "time_hours": 9, + "approval_perbill": 977941177, + "support_perbill": 178688524, + "approval": 97.7941177, + "support": 17.8688524 + }, + { + "time_hours": 10, + "approval_perbill": 975490197, + "support_perbill": 166439756, + "approval": 97.5490197, + "support": 16.6439756 + }, + { + "time_hours": 11, + "approval_perbill": 973039216, + "support_perbill": 155701053, + "approval": 97.3039216, + "support": 15.5701053 + }, + { + "time_hours": 12, + "approval_perbill": 970588236, + "support_perbill": 146209386, + "approval": 97.0588236, + "support": 14.6209386 + }, + { + "time_hours": 13, + "approval_perbill": 968137256, + "support_perbill": 137759452, + "approval": 96.8137256, + "support": 13.7759452 + }, + { + "time_hours": 14, + "approval_perbill": 965686276, + "support_perbill": 130188679, + "approval": 96.5686276, + "support": 13.0188679 + }, + { + "time_hours": 15, + "approval_perbill": 963235295, + "support_perbill": 123366639, + "approval": 96.3235295, + "support": 12.3366639 + }, + { + "time_hours": 16, + "approval_perbill": 960784315, + "support_perbill": 117187499, + "approval": 96.0784315, + "support": 11.7187499 + }, + { + "time_hours": 17, + "approval_perbill": 958333334, + "support_perbill": 111564465, + "approval": 95.8333334, + "support": 11.1564465 + }, + { + "time_hours": 18, + "approval_perbill": 955882354, + "support_perbill": 106425701, + "approval": 95.5882354, + "support": 10.6425701 + }, + { + "time_hours": 19, + "approval_perbill": 953431373, + "support_perbill": 101711228, + "approval": 95.3431373, + "support": 10.1711228 + }, + { + "time_hours": 20, + "approval_perbill": 950980393, + "support_perbill": 97370582, + "approval": 95.0980393, + "support": 9.7370582 + }, + { + "time_hours": 21, + "approval_perbill": 948529412, + "support_perbill": 93360994, + "approval": 94.8529412, + "support": 9.3360994 + }, + { + "time_hours": 22, + "approval_perbill": 946078432, + "support_perbill": 89645982, + "approval": 94.6078432, + "support": 8.9645982 + }, + { + "time_hours": 23, + "approval_perbill": 943627452, + "support_perbill": 86194234, + "approval": 94.3627452, + "support": 8.6194234 + }, + { + "time_hours": 24, + "approval_perbill": 941176471, + "support_perbill": 82978722, + "approval": 94.1176471, + "support": 8.2978722 + }, + { + "time_hours": 25, + "approval_perbill": 938725491, + "support_perbill": 79975997, + "approval": 93.8725491, + "support": 7.9975997 + }, + { + "time_hours": 26, + "approval_perbill": 936274511, + "support_perbill": 77165614, + "approval": 93.6274511, + "support": 7.7165614 + }, + { + "time_hours": 27, + "approval_perbill": 933823531, + "support_perbill": 74529666, + "approval": 93.3823531, + "support": 7.4529666 + }, + { + "time_hours": 28, + "approval_perbill": 931372550, + "support_perbill": 72052400, + "approval": 93.137255, + "support": 7.20524 + }, + { + "time_hours": 29, + "approval_perbill": 928921570, + "support_perbill": 69719908, + "approval": 92.892157, + "support": 6.9719908 + }, + { + "time_hours": 30, + "approval_perbill": 926470589, + "support_perbill": 67519857, + "approval": 92.6470589, + "support": 6.7519857 + }, + { + "time_hours": 31, + "approval_perbill": 924019609, + "support_perbill": 65441280, + "approval": 92.4019609, + "support": 6.544128 + }, + { + "time_hours": 32, + "approval_perbill": 921568628, + "support_perbill": 63474386, + "approval": 92.1568628, + "support": 6.3474386 + }, + { + "time_hours": 33, + "approval_perbill": 919117648, + "support_perbill": 61610409, + "approval": 91.9117648, + "support": 6.1610409 + }, + { + "time_hours": 34, + "approval_perbill": 916666667, + "support_perbill": 59841478, + "approval": 91.6666667, + "support": 5.9841478 + }, + { + "time_hours": 35, + "approval_perbill": 914215687, + "support_perbill": 58160504, + "approval": 91.4215687, + "support": 5.8160504 + }, + { + "time_hours": 36, + "approval_perbill": 911764706, + "support_perbill": 56561084, + "approval": 91.1764706, + "support": 5.6561084 + }, + { + "time_hours": 37, + "approval_perbill": 909313726, + "support_perbill": 55037426, + "approval": 90.9313726, + "support": 5.5037426 + }, + { + "time_hours": 38, + "approval_perbill": 906862746, + "support_perbill": 53584271, + "approval": 90.6862746, + "support": 5.3584271 + }, + { + "time_hours": 39, + "approval_perbill": 904411766, + "support_perbill": 52196835, + "approval": 90.4411766, + "support": 5.2196835 + }, + { + "time_hours": 40, + "approval_perbill": 901960785, + "support_perbill": 50870759, + "approval": 90.1960785, + "support": 5.0870759 + }, + { + "time_hours": 41, + "approval_perbill": 899509805, + "support_perbill": 49602061, + "approval": 89.9509805, + "support": 4.9602061 + }, + { + "time_hours": 42, + "approval_perbill": 897058824, + "support_perbill": 48387095, + "approval": 89.7058824, + "support": 4.8387095 + }, + { + "time_hours": 43, + "approval_perbill": 894607844, + "support_perbill": 47222519, + "approval": 89.4607844, + "support": 4.7222519 + }, + { + "time_hours": 44, + "approval_perbill": 892156864, + "support_perbill": 46105262, + "approval": 89.2156864, + "support": 4.6105262 + }, + { + "time_hours": 45, + "approval_perbill": 889705883, + "support_perbill": 45032496, + "approval": 88.9705883, + "support": 4.5032496 + }, + { + "time_hours": 46, + "approval_perbill": 887254903, + "support_perbill": 44001617, + "approval": 88.7254903, + "support": 4.4001617 + }, + { + "time_hours": 47, + "approval_perbill": 884803922, + "support_perbill": 43010218, + "approval": 88.4803922, + "support": 4.3010218 + }, + { + "time_hours": 48, + "approval_perbill": 882352942, + "support_perbill": 42056074, + "approval": 88.2352942, + "support": 4.2056074 + }, + { + "time_hours": 49, + "approval_perbill": 879901962, + "support_perbill": 41137122, + "approval": 87.9901962, + "support": 4.1137122 + }, + { + "time_hours": 50, + "approval_perbill": 877450982, + "support_perbill": 40251453, + "approval": 87.7450982, + "support": 4.0251453 + }, + { + "time_hours": 51, + "approval_perbill": 875000001, + "support_perbill": 39397289, + "approval": 87.5000001, + "support": 3.9397289 + }, + { + "time_hours": 52, + "approval_perbill": 872549021, + "support_perbill": 38572980, + "approval": 87.2549021, + "support": 3.857298 + }, + { + "time_hours": 53, + "approval_perbill": 870098040, + "support_perbill": 37776985, + "approval": 87.009804, + "support": 3.7776985 + }, + { + "time_hours": 54, + "approval_perbill": 867647060, + "support_perbill": 37007873, + "approval": 86.764706, + "support": 3.7007873 + }, + { + "time_hours": 55, + "approval_perbill": 865196079, + "support_perbill": 36264302, + "approval": 86.5196079, + "support": 3.6264302 + }, + { + "time_hours": 56, + "approval_perbill": 862745099, + "support_perbill": 35545023, + "approval": 86.2745099, + "support": 3.5545023 + }, + { + "time_hours": 57, + "approval_perbill": 860294118, + "support_perbill": 34848862, + "approval": 86.0294118, + "support": 3.4848862 + }, + { + "time_hours": 58, + "approval_perbill": 857843138, + "support_perbill": 34174724, + "approval": 85.7843138, + "support": 3.4174724 + }, + { + "time_hours": 59, + "approval_perbill": 855392157, + "support_perbill": 33521580, + "approval": 85.5392157, + "support": 3.352158 + }, + { + "time_hours": 60, + "approval_perbill": 852941177, + "support_perbill": 32888464, + "approval": 85.2941177, + "support": 3.2888464 + }, + { + "time_hours": 61, + "approval_perbill": 850490197, + "support_perbill": 32274469, + "approval": 85.0490197, + "support": 3.2274469 + }, + { + "time_hours": 62, + "approval_perbill": 848039217, + "support_perbill": 31678741, + "approval": 84.8039217, + "support": 3.1678741 + }, + { + "time_hours": 63, + "approval_perbill": 845588236, + "support_perbill": 31100477, + "approval": 84.5588236, + "support": 3.1100477 + }, + { + "time_hours": 64, + "approval_perbill": 843137256, + "support_perbill": 30538921, + "approval": 84.3137256, + "support": 3.0538921 + }, + { + "time_hours": 65, + "approval_perbill": 840686276, + "support_perbill": 29993358, + "approval": 84.0686276, + "support": 2.9993358 + }, + { + "time_hours": 66, + "approval_perbill": 838235295, + "support_perbill": 29463116, + "approval": 83.8235295, + "support": 2.9463116 + }, + { + "time_hours": 67, + "approval_perbill": 835784315, + "support_perbill": 28947556, + "approval": 83.5784315, + "support": 2.8947556 + }, + { + "time_hours": 68, + "approval_perbill": 833333334, + "support_perbill": 28446079, + "approval": 83.3333334, + "support": 2.8446079 + }, + { + "time_hours": 69, + "approval_perbill": 830882354, + "support_perbill": 27958114, + "approval": 83.0882354, + "support": 2.7958114 + }, + { + "time_hours": 70, + "approval_perbill": 828431373, + "support_perbill": 27483123, + "approval": 82.8431373, + "support": 2.7483123 + }, + { + "time_hours": 71, + "approval_perbill": 825980393, + "support_perbill": 27020596, + "approval": 82.5980393, + "support": 2.7020596 + }, + { + "time_hours": 72, + "approval_perbill": 823529412, + "support_perbill": 26570047, + "approval": 82.3529412, + "support": 2.6570047 + }, + { + "time_hours": 73, + "approval_perbill": 821078432, + "support_perbill": 26131019, + "approval": 82.1078432, + "support": 2.6131019 + }, + { + "time_hours": 74, + "approval_perbill": 818627452, + "support_perbill": 25703073, + "approval": 81.8627452, + "support": 2.5703073 + }, + { + "time_hours": 75, + "approval_perbill": 816176472, + "support_perbill": 25285796, + "approval": 81.6176472, + "support": 2.5285796 + }, + { + "time_hours": 76, + "approval_perbill": 813725491, + "support_perbill": 24878795, + "approval": 81.3725491, + "support": 2.4878795 + }, + { + "time_hours": 77, + "approval_perbill": 811274511, + "support_perbill": 24481693, + "approval": 81.1274511, + "support": 2.4481693 + }, + { + "time_hours": 78, + "approval_perbill": 808823530, + "support_perbill": 24094134, + "approval": 80.882353, + "support": 2.4094134 + }, + { + "time_hours": 79, + "approval_perbill": 806372550, + "support_perbill": 23715779, + "approval": 80.637255, + "support": 2.3715779 + }, + { + "time_hours": 80, + "approval_perbill": 803921569, + "support_perbill": 23346303, + "approval": 80.3921569, + "support": 2.3346303 + }, + { + "time_hours": 81, + "approval_perbill": 801470589, + "support_perbill": 22985397, + "approval": 80.1470589, + "support": 2.2985397 + }, + { + "time_hours": 82, + "approval_perbill": 799019608, + "support_perbill": 22632766, + "approval": 79.9019608, + "support": 2.2632766 + }, + { + "time_hours": 83, + "approval_perbill": 796568628, + "support_perbill": 22288130, + "approval": 79.6568628, + "support": 2.228813 + }, + { + "time_hours": 84, + "approval_perbill": 794117648, + "support_perbill": 21951219, + "approval": 79.4117648, + "support": 2.1951219 + }, + { + "time_hours": 85, + "approval_perbill": 791666668, + "support_perbill": 21621776, + "approval": 79.1666668, + "support": 2.1621776 + }, + { + "time_hours": 86, + "approval_perbill": 789215688, + "support_perbill": 21299556, + "approval": 78.9215688, + "support": 2.1299556 + }, + { + "time_hours": 87, + "approval_perbill": 786764707, + "support_perbill": 20984324, + "approval": 78.6764707, + "support": 2.0984324 + }, + { + "time_hours": 88, + "approval_perbill": 784313727, + "support_perbill": 20675855, + "approval": 78.4313727, + "support": 2.0675855 + }, + { + "time_hours": 89, + "approval_perbill": 781862746, + "support_perbill": 20373934, + "approval": 78.1862746, + "support": 2.0373934 + }, + { + "time_hours": 90, + "approval_perbill": 779411766, + "support_perbill": 20078354, + "approval": 77.9411766, + "support": 2.0078354 + }, + { + "time_hours": 91, + "approval_perbill": 776960785, + "support_perbill": 19788917, + "approval": 77.6960785, + "support": 1.9788917 + }, + { + "time_hours": 92, + "approval_perbill": 774509805, + "support_perbill": 19505435, + "approval": 77.4509805, + "support": 1.9505435 + }, + { + "time_hours": 93, + "approval_perbill": 772058824, + "support_perbill": 19227725, + "approval": 77.2058824, + "support": 1.9227725 + }, + { + "time_hours": 94, + "approval_perbill": 769607844, + "support_perbill": 18955613, + "approval": 76.9607844, + "support": 1.8955613 + }, + { + "time_hours": 95, + "approval_perbill": 767156863, + "support_perbill": 18688931, + "approval": 76.7156863, + "support": 1.8688931 + }, + { + "time_hours": 96, + "approval_perbill": 764705883, + "support_perbill": 18427518, + "approval": 76.4705883, + "support": 1.8427518 + }, + { + "time_hours": 97, + "approval_perbill": 762254903, + "support_perbill": 18171219, + "approval": 76.2254903, + "support": 1.8171219 + }, + { + "time_hours": 98, + "approval_perbill": 759803923, + "support_perbill": 17919887, + "approval": 75.9803923, + "support": 1.7919887 + }, + { + "time_hours": 99, + "approval_perbill": 757352942, + "support_perbill": 17673377, + "approval": 75.7352942, + "support": 1.7673377 + }, + { + "time_hours": 100, + "approval_perbill": 754901962, + "support_perbill": 17431553, + "approval": 75.4901962, + "support": 1.7431553 + }, + { + "time_hours": 101, + "approval_perbill": 752450981, + "support_perbill": 17194282, + "approval": 75.2450981, + "support": 1.7194282 + }, + { + "time_hours": 102, + "approval_perbill": 750000001, + "support_perbill": 16961437, + "approval": 75.0000001, + "support": 1.6961437 + }, + { + "time_hours": 103, + "approval_perbill": 747549020, + "support_perbill": 16732895, + "approval": 74.754902, + "support": 1.6732895 + }, + { + "time_hours": 104, + "approval_perbill": 745098040, + "support_perbill": 16508538, + "approval": 74.509804, + "support": 1.6508538 + }, + { + "time_hours": 105, + "approval_perbill": 742647059, + "support_perbill": 16288252, + "approval": 74.2647059, + "support": 1.6288252 + }, + { + "time_hours": 106, + "approval_perbill": 740196079, + "support_perbill": 16071927, + "approval": 74.0196079, + "support": 1.6071927 + }, + { + "time_hours": 107, + "approval_perbill": 737745099, + "support_perbill": 15859457, + "approval": 73.7745099, + "support": 1.5859457 + }, + { + "time_hours": 108, + "approval_perbill": 735294118, + "support_perbill": 15650741, + "approval": 73.5294118, + "support": 1.5650741 + }, + { + "time_hours": 109, + "approval_perbill": 732843138, + "support_perbill": 15445679, + "approval": 73.2843138, + "support": 1.5445679 + }, + { + "time_hours": 110, + "approval_perbill": 730392158, + "support_perbill": 15244176, + "approval": 73.0392158, + "support": 1.5244176 + }, + { + "time_hours": 111, + "approval_perbill": 727941178, + "support_perbill": 15046141, + "approval": 72.7941178, + "support": 1.5046141 + }, + { + "time_hours": 112, + "approval_perbill": 725490197, + "support_perbill": 14851485, + "approval": 72.5490197, + "support": 1.4851485 + }, + { + "time_hours": 113, + "approval_perbill": 723039217, + "support_perbill": 14660121, + "approval": 72.3039217, + "support": 1.4660121 + }, + { + "time_hours": 114, + "approval_perbill": 720588236, + "support_perbill": 14471968, + "approval": 72.0588236, + "support": 1.4471968 + }, + { + "time_hours": 115, + "approval_perbill": 718137256, + "support_perbill": 14286945, + "approval": 71.8137256, + "support": 1.4286945 + }, + { + "time_hours": 116, + "approval_perbill": 715686275, + "support_perbill": 14104975, + "approval": 71.5686275, + "support": 1.4104975 + }, + { + "time_hours": 117, + "approval_perbill": 713235295, + "support_perbill": 13925982, + "approval": 71.3235295, + "support": 1.3925982 + }, + { + "time_hours": 118, + "approval_perbill": 710784314, + "support_perbill": 13749894, + "approval": 71.0784314, + "support": 1.3749894 + }, + { + "time_hours": 119, + "approval_perbill": 708333334, + "support_perbill": 13576642, + "approval": 70.8333334, + "support": 1.3576642 + }, + { + "time_hours": 120, + "approval_perbill": 705882353, + "support_perbill": 13406156, + "approval": 70.5882353, + "support": 1.3406156 + }, + { + "time_hours": 121, + "approval_perbill": 703431373, + "support_perbill": 13238372, + "approval": 70.3431373, + "support": 1.3238372 + }, + { + "time_hours": 122, + "approval_perbill": 700980393, + "support_perbill": 13073226, + "approval": 70.0980393, + "support": 1.3073226 + }, + { + "time_hours": 123, + "approval_perbill": 698529413, + "support_perbill": 12910655, + "approval": 69.8529413, + "support": 1.2910655 + }, + { + "time_hours": 124, + "approval_perbill": 696078432, + "support_perbill": 12750601, + "approval": 69.6078432, + "support": 1.2750601 + }, + { + "time_hours": 125, + "approval_perbill": 693627452, + "support_perbill": 12593005, + "approval": 69.3627452, + "support": 1.2593005 + }, + { + "time_hours": 126, + "approval_perbill": 691176471, + "support_perbill": 12437810, + "approval": 69.1176471, + "support": 1.243781 + }, + { + "time_hours": 127, + "approval_perbill": 688725491, + "support_perbill": 12284964, + "approval": 68.8725491, + "support": 1.2284964 + }, + { + "time_hours": 128, + "approval_perbill": 686274511, + "support_perbill": 12134411, + "approval": 68.6274511, + "support": 1.2134411 + }, + { + "time_hours": 129, + "approval_perbill": 683823530, + "support_perbill": 11986103, + "approval": 68.382353, + "support": 1.1986103 + }, + { + "time_hours": 130, + "approval_perbill": 681372550, + "support_perbill": 11839987, + "approval": 68.137255, + "support": 1.1839987 + }, + { + "time_hours": 131, + "approval_perbill": 678921569, + "support_perbill": 11696017, + "approval": 67.8921569, + "support": 1.1696017 + }, + { + "time_hours": 132, + "approval_perbill": 676470589, + "support_perbill": 11554145, + "approval": 67.6470589, + "support": 1.1554145 + }, + { + "time_hours": 133, + "approval_perbill": 674019609, + "support_perbill": 11414326, + "approval": 67.4019609, + "support": 1.1414326 + }, + { + "time_hours": 134, + "approval_perbill": 671568629, + "support_perbill": 11276516, + "approval": 67.1568629, + "support": 1.1276516 + }, + { + "time_hours": 135, + "approval_perbill": 669117648, + "support_perbill": 11140671, + "approval": 66.9117648, + "support": 1.1140671 + }, + { + "time_hours": 136, + "approval_perbill": 666666668, + "support_perbill": 11006750, + "approval": 66.6666668, + "support": 1.100675 + }, + { + "time_hours": 137, + "approval_perbill": 664215687, + "support_perbill": 10874713, + "approval": 66.4215687, + "support": 1.0874713 + }, + { + "time_hours": 138, + "approval_perbill": 661764707, + "support_perbill": 10744519, + "approval": 66.1764707, + "support": 1.0744519 + }, + { + "time_hours": 139, + "approval_perbill": 659313726, + "support_perbill": 10616130, + "approval": 65.9313726, + "support": 1.061613 + }, + { + "time_hours": 140, + "approval_perbill": 656862746, + "support_perbill": 10489510, + "approval": 65.6862746, + "support": 1.048951 + }, + { + "time_hours": 141, + "approval_perbill": 654411765, + "support_perbill": 10364622, + "approval": 65.4411765, + "support": 1.0364622 + }, + { + "time_hours": 142, + "approval_perbill": 651960785, + "support_perbill": 10241430, + "approval": 65.1960785, + "support": 1.024143 + }, + { + "time_hours": 143, + "approval_perbill": 649509804, + "support_perbill": 10119900, + "approval": 64.9509804, + "support": 1.01199 + }, + { + "time_hours": 144, + "approval_perbill": 647058824, + "support_perbill": 10000000, + "approval": 64.7058824, + "support": 1 + }, + { + "time_hours": 145, + "approval_perbill": 644607844, + "support_perbill": 9881695, + "approval": 64.4607844, + "support": 0.9881695 + }, + { + "time_hours": 146, + "approval_perbill": 642156864, + "support_perbill": 9764955, + "approval": 64.2156864, + "support": 0.9764955 + }, + { + "time_hours": 147, + "approval_perbill": 639705883, + "support_perbill": 9649749, + "approval": 63.9705883, + "support": 0.9649749 + }, + { + "time_hours": 148, + "approval_perbill": 637254903, + "support_perbill": 9536047, + "approval": 63.7254903, + "support": 0.9536047 + }, + { + "time_hours": 149, + "approval_perbill": 634803923, + "support_perbill": 9423820, + "approval": 63.4803923, + "support": 0.942382 + }, + { + "time_hours": 150, + "approval_perbill": 632352942, + "support_perbill": 9313038, + "approval": 63.2352942, + "support": 0.9313038 + }, + { + "time_hours": 151, + "approval_perbill": 629901962, + "support_perbill": 9203674, + "approval": 62.9901962, + "support": 0.9203674 + }, + { + "time_hours": 152, + "approval_perbill": 627450981, + "support_perbill": 9095702, + "approval": 62.7450981, + "support": 0.9095702 + }, + { + "time_hours": 153, + "approval_perbill": 625000001, + "support_perbill": 8989095, + "approval": 62.5000001, + "support": 0.8989095 + }, + { + "time_hours": 154, + "approval_perbill": 622549020, + "support_perbill": 8883826, + "approval": 62.254902, + "support": 0.8883826 + }, + { + "time_hours": 155, + "approval_perbill": 620098040, + "support_perbill": 8779872, + "approval": 62.009804, + "support": 0.8779872 + }, + { + "time_hours": 156, + "approval_perbill": 617647059, + "support_perbill": 8677207, + "approval": 61.7647059, + "support": 0.8677207 + }, + { + "time_hours": 157, + "approval_perbill": 615196079, + "support_perbill": 8575808, + "approval": 61.5196079, + "support": 0.8575808 + }, + { + "time_hours": 158, + "approval_perbill": 612745099, + "support_perbill": 8475652, + "approval": 61.2745099, + "support": 0.8475652 + }, + { + "time_hours": 159, + "approval_perbill": 610294119, + "support_perbill": 8376715, + "approval": 61.0294119, + "support": 0.8376715 + }, + { + "time_hours": 160, + "approval_perbill": 607843138, + "support_perbill": 8278976, + "approval": 60.7843138, + "support": 0.8278976 + }, + { + "time_hours": 161, + "approval_perbill": 605392158, + "support_perbill": 8182413, + "approval": 60.5392158, + "support": 0.8182413 + }, + { + "time_hours": 162, + "approval_perbill": 602941177, + "support_perbill": 8087005, + "approval": 60.2941177, + "support": 0.8087005 + }, + { + "time_hours": 163, + "approval_perbill": 600490197, + "support_perbill": 7992731, + "approval": 60.0490197, + "support": 0.7992731 + }, + { + "time_hours": 164, + "approval_perbill": 598039216, + "support_perbill": 7899571, + "approval": 59.8039216, + "support": 0.7899571 + }, + { + "time_hours": 165, + "approval_perbill": 595588236, + "support_perbill": 7807506, + "approval": 59.5588236, + "support": 0.7807506 + }, + { + "time_hours": 166, + "approval_perbill": 593137255, + "support_perbill": 7716516, + "approval": 59.3137255, + "support": 0.7716516 + }, + { + "time_hours": 167, + "approval_perbill": 590686275, + "support_perbill": 7626583, + "approval": 59.0686275, + "support": 0.7626583 + }, + { + "time_hours": 168, + "approval_perbill": 588235295, + "support_perbill": 7537688, + "approval": 58.8235295, + "support": 0.7537688 + }, + { + "time_hours": 169, + "approval_perbill": 585784315, + "support_perbill": 7449814, + "approval": 58.5784315, + "support": 0.7449814 + }, + { + "time_hours": 170, + "approval_perbill": 583333335, + "support_perbill": 7362942, + "approval": 58.3333335, + "support": 0.7362942 + }, + { + "time_hours": 171, + "approval_perbill": 580882354, + "support_perbill": 7277057, + "approval": 58.0882354, + "support": 0.7277057 + }, + { + "time_hours": 172, + "approval_perbill": 578431374, + "support_perbill": 7192141, + "approval": 57.8431374, + "support": 0.7192141 + }, + { + "time_hours": 173, + "approval_perbill": 575980393, + "support_perbill": 7108178, + "approval": 57.5980393, + "support": 0.7108178 + }, + { + "time_hours": 174, + "approval_perbill": 573529413, + "support_perbill": 7025151, + "approval": 57.3529413, + "support": 0.7025151 + }, + { + "time_hours": 175, + "approval_perbill": 571078432, + "support_perbill": 6943047, + "approval": 57.1078432, + "support": 0.6943047 + }, + { + "time_hours": 176, + "approval_perbill": 568627452, + "support_perbill": 6861848, + "approval": 56.8627452, + "support": 0.6861848 + }, + { + "time_hours": 177, + "approval_perbill": 566176471, + "support_perbill": 6781540, + "approval": 56.6176471, + "support": 0.678154 + }, + { + "time_hours": 178, + "approval_perbill": 563725491, + "support_perbill": 6702109, + "approval": 56.3725491, + "support": 0.6702109 + }, + { + "time_hours": 179, + "approval_perbill": 561274510, + "support_perbill": 6623541, + "approval": 56.127451, + "support": 0.6623541 + }, + { + "time_hours": 180, + "approval_perbill": 558823530, + "support_perbill": 6545820, + "approval": 55.882353, + "support": 0.654582 + }, + { + "time_hours": 181, + "approval_perbill": 556372550, + "support_perbill": 6468935, + "approval": 55.637255, + "support": 0.6468935 + }, + { + "time_hours": 182, + "approval_perbill": 553921570, + "support_perbill": 6392871, + "approval": 55.392157, + "support": 0.6392871 + }, + { + "time_hours": 183, + "approval_perbill": 551470589, + "support_perbill": 6317615, + "approval": 55.1470589, + "support": 0.6317615 + }, + { + "time_hours": 184, + "approval_perbill": 549019609, + "support_perbill": 6243154, + "approval": 54.9019609, + "support": 0.6243154 + }, + { + "time_hours": 185, + "approval_perbill": 546568628, + "support_perbill": 6169476, + "approval": 54.6568628, + "support": 0.6169476 + }, + { + "time_hours": 186, + "approval_perbill": 544117648, + "support_perbill": 6096569, + "approval": 54.4117648, + "support": 0.6096569 + }, + { + "time_hours": 187, + "approval_perbill": 541666667, + "support_perbill": 6024421, + "approval": 54.1666667, + "support": 0.6024421 + }, + { + "time_hours": 188, + "approval_perbill": 539215687, + "support_perbill": 5953019, + "approval": 53.9215687, + "support": 0.5953019 + }, + { + "time_hours": 189, + "approval_perbill": 536764706, + "support_perbill": 5882353, + "approval": 53.6764706, + "support": 0.5882353 + }, + { + "time_hours": 190, + "approval_perbill": 534313726, + "support_perbill": 5812410, + "approval": 53.4313726, + "support": 0.581241 + }, + { + "time_hours": 191, + "approval_perbill": 531862746, + "support_perbill": 5743181, + "approval": 53.1862746, + "support": 0.5743181 + }, + { + "time_hours": 192, + "approval_perbill": 529411765, + "support_perbill": 5674653, + "approval": 52.9411765, + "support": 0.5674653 + }, + { + "time_hours": 193, + "approval_perbill": 526960785, + "support_perbill": 5606817, + "approval": 52.6960785, + "support": 0.5606817 + }, + { + "time_hours": 194, + "approval_perbill": 524509805, + "support_perbill": 5539662, + "approval": 52.4509805, + "support": 0.5539662 + }, + { + "time_hours": 195, + "approval_perbill": 522058825, + "support_perbill": 5473177, + "approval": 52.2058825, + "support": 0.5473177 + }, + { + "time_hours": 196, + "approval_perbill": 519607844, + "support_perbill": 5407354, + "approval": 51.9607844, + "support": 0.5407354 + }, + { + "time_hours": 197, + "approval_perbill": 517156864, + "support_perbill": 5342181, + "approval": 51.7156864, + "support": 0.5342181 + }, + { + "time_hours": 198, + "approval_perbill": 514705883, + "support_perbill": 5277650, + "approval": 51.4705883, + "support": 0.527765 + }, + { + "time_hours": 199, + "approval_perbill": 512254903, + "support_perbill": 5213751, + "approval": 51.2254903, + "support": 0.5213751 + }, + { + "time_hours": 200, + "approval_perbill": 509803922, + "support_perbill": 5150474, + "approval": 50.9803922, + "support": 0.5150474 + }, + { + "time_hours": 201, + "approval_perbill": 507352942, + "support_perbill": 5087812, + "approval": 50.7352942, + "support": 0.5087812 + }, + { + "time_hours": 202, + "approval_perbill": 504901961, + "support_perbill": 5025754, + "approval": 50.4901961, + "support": 0.5025754 + }, + { + "time_hours": 203, + "approval_perbill": 502450981, + "support_perbill": 4964292, + "approval": 50.2450981, + "support": 0.4964292 + }, + { + "time_hours": 204, + "approval_perbill": 500000000, + "support_perbill": 4903417, + "approval": 50, + "support": 0.4903417 + }, + { + "time_hours": 205, + "approval_perbill": 500000000, + "support_perbill": 4843122, + "approval": 50, + "support": 0.4843122 + }, + { + "time_hours": 206, + "approval_perbill": 500000000, + "support_perbill": 4783398, + "approval": 50, + "support": 0.4783398 + }, + { + "time_hours": 207, + "approval_perbill": 500000000, + "support_perbill": 4724236, + "approval": 50, + "support": 0.4724236 + }, + { + "time_hours": 208, + "approval_perbill": 500000000, + "support_perbill": 4665630, + "approval": 50, + "support": 0.466563 + }, + { + "time_hours": 209, + "approval_perbill": 500000000, + "support_perbill": 4607570, + "approval": 50, + "support": 0.460757 + }, + { + "time_hours": 210, + "approval_perbill": 500000000, + "support_perbill": 4550050, + "approval": 50, + "support": 0.455005 + }, + { + "time_hours": 211, + "approval_perbill": 500000000, + "support_perbill": 4493062, + "approval": 50, + "support": 0.4493062 + }, + { + "time_hours": 212, + "approval_perbill": 500000000, + "support_perbill": 4436599, + "approval": 50, + "support": 0.4436599 + }, + { + "time_hours": 213, + "approval_perbill": 500000000, + "support_perbill": 4380654, + "approval": 50, + "support": 0.4380654 + }, + { + "time_hours": 214, + "approval_perbill": 500000000, + "support_perbill": 4325218, + "approval": 50, + "support": 0.4325218 + }, + { + "time_hours": 215, + "approval_perbill": 500000000, + "support_perbill": 4270287, + "approval": 50, + "support": 0.4270287 + }, + { + "time_hours": 216, + "approval_perbill": 500000000, + "support_perbill": 4215851, + "approval": 50, + "support": 0.4215851 + }, + { + "time_hours": 217, + "approval_perbill": 500000000, + "support_perbill": 4161906, + "approval": 50, + "support": 0.4161906 + }, + { + "time_hours": 218, + "approval_perbill": 500000000, + "support_perbill": 4108444, + "approval": 50, + "support": 0.4108444 + }, + { + "time_hours": 219, + "approval_perbill": 500000000, + "support_perbill": 4055459, + "approval": 50, + "support": 0.4055459 + }, + { + "time_hours": 220, + "approval_perbill": 500000000, + "support_perbill": 4002944, + "approval": 50, + "support": 0.4002944 + }, + { + "time_hours": 221, + "approval_perbill": 500000000, + "support_perbill": 3950894, + "approval": 50, + "support": 0.3950894 + }, + { + "time_hours": 222, + "approval_perbill": 500000000, + "support_perbill": 3899302, + "approval": 50, + "support": 0.3899302 + }, + { + "time_hours": 223, + "approval_perbill": 500000000, + "support_perbill": 3848162, + "approval": 50, + "support": 0.3848162 + }, + { + "time_hours": 224, + "approval_perbill": 500000000, + "support_perbill": 3797468, + "approval": 50, + "support": 0.3797468 + }, + { + "time_hours": 225, + "approval_perbill": 500000000, + "support_perbill": 3747215, + "approval": 50, + "support": 0.3747215 + }, + { + "time_hours": 226, + "approval_perbill": 500000000, + "support_perbill": 3697396, + "approval": 50, + "support": 0.3697396 + }, + { + "time_hours": 227, + "approval_perbill": 500000000, + "support_perbill": 3648006, + "approval": 50, + "support": 0.3648006 + }, + { + "time_hours": 228, + "approval_perbill": 500000000, + "support_perbill": 3599040, + "approval": 50, + "support": 0.359904 + }, + { + "time_hours": 229, + "approval_perbill": 500000000, + "support_perbill": 3550492, + "approval": 50, + "support": 0.3550492 + }, + { + "time_hours": 230, + "approval_perbill": 500000000, + "support_perbill": 3502357, + "approval": 50, + "support": 0.3502357 + }, + { + "time_hours": 231, + "approval_perbill": 500000000, + "support_perbill": 3454629, + "approval": 50, + "support": 0.3454629 + }, + { + "time_hours": 232, + "approval_perbill": 500000000, + "support_perbill": 3407304, + "approval": 50, + "support": 0.3407304 + }, + { + "time_hours": 233, + "approval_perbill": 500000000, + "support_perbill": 3360376, + "approval": 50, + "support": 0.3360376 + }, + { + "time_hours": 234, + "approval_perbill": 500000000, + "support_perbill": 3313840, + "approval": 50, + "support": 0.331384 + }, + { + "time_hours": 235, + "approval_perbill": 500000000, + "support_perbill": 3267692, + "approval": 50, + "support": 0.3267692 + }, + { + "time_hours": 236, + "approval_perbill": 500000000, + "support_perbill": 3221926, + "approval": 50, + "support": 0.3221926 + }, + { + "time_hours": 237, + "approval_perbill": 500000000, + "support_perbill": 3176538, + "approval": 50, + "support": 0.3176538 + }, + { + "time_hours": 238, + "approval_perbill": 500000000, + "support_perbill": 3131524, + "approval": 50, + "support": 0.3131524 + }, + { + "time_hours": 239, + "approval_perbill": 500000000, + "support_perbill": 3086878, + "approval": 50, + "support": 0.3086878 + }, + { + "time_hours": 240, + "approval_perbill": 500000000, + "support_perbill": 3042596, + "approval": 50, + "support": 0.3042596 + }, + { + "time_hours": 241, + "approval_perbill": 500000000, + "support_perbill": 2998674, + "approval": 50, + "support": 0.2998674 + }, + { + "time_hours": 242, + "approval_perbill": 500000000, + "support_perbill": 2955107, + "approval": 50, + "support": 0.2955107 + }, + { + "time_hours": 243, + "approval_perbill": 500000000, + "support_perbill": 2911892, + "approval": 50, + "support": 0.2911892 + }, + { + "time_hours": 244, + "approval_perbill": 500000000, + "support_perbill": 2869023, + "approval": 50, + "support": 0.2869023 + }, + { + "time_hours": 245, + "approval_perbill": 500000000, + "support_perbill": 2826496, + "approval": 50, + "support": 0.2826496 + }, + { + "time_hours": 246, + "approval_perbill": 500000000, + "support_perbill": 2784309, + "approval": 50, + "support": 0.2784309 + }, + { + "time_hours": 247, + "approval_perbill": 500000000, + "support_perbill": 2742455, + "approval": 50, + "support": 0.2742455 + }, + { + "time_hours": 248, + "approval_perbill": 500000000, + "support_perbill": 2700933, + "approval": 50, + "support": 0.2700933 + }, + { + "time_hours": 249, + "approval_perbill": 500000000, + "support_perbill": 2659737, + "approval": 50, + "support": 0.2659737 + }, + { + "time_hours": 250, + "approval_perbill": 500000000, + "support_perbill": 2618864, + "approval": 50, + "support": 0.2618864 + }, + { + "time_hours": 251, + "approval_perbill": 500000000, + "support_perbill": 2578310, + "approval": 50, + "support": 0.257831 + }, + { + "time_hours": 252, + "approval_perbill": 500000000, + "support_perbill": 2538071, + "approval": 50, + "support": 0.2538071 + }, + { + "time_hours": 253, + "approval_perbill": 500000000, + "support_perbill": 2498144, + "approval": 50, + "support": 0.2498144 + }, + { + "time_hours": 254, + "approval_perbill": 500000000, + "support_perbill": 2458525, + "approval": 50, + "support": 0.2458525 + }, + { + "time_hours": 255, + "approval_perbill": 500000000, + "support_perbill": 2419210, + "approval": 50, + "support": 0.241921 + }, + { + "time_hours": 256, + "approval_perbill": 500000000, + "support_perbill": 2380197, + "approval": 50, + "support": 0.2380197 + }, + { + "time_hours": 257, + "approval_perbill": 500000000, + "support_perbill": 2341481, + "approval": 50, + "support": 0.2341481 + }, + { + "time_hours": 258, + "approval_perbill": 500000000, + "support_perbill": 2303059, + "approval": 50, + "support": 0.2303059 + }, + { + "time_hours": 259, + "approval_perbill": 500000000, + "support_perbill": 2264928, + "approval": 50, + "support": 0.2264928 + }, + { + "time_hours": 260, + "approval_perbill": 500000000, + "support_perbill": 2227084, + "approval": 50, + "support": 0.2227084 + }, + { + "time_hours": 261, + "approval_perbill": 500000000, + "support_perbill": 2189525, + "approval": 50, + "support": 0.2189525 + }, + { + "time_hours": 262, + "approval_perbill": 500000000, + "support_perbill": 2152247, + "approval": 50, + "support": 0.2152247 + }, + { + "time_hours": 263, + "approval_perbill": 500000000, + "support_perbill": 2115247, + "approval": 50, + "support": 0.2115247 + }, + { + "time_hours": 264, + "approval_perbill": 500000000, + "support_perbill": 2078522, + "approval": 50, + "support": 0.2078522 + }, + { + "time_hours": 265, + "approval_perbill": 500000000, + "support_perbill": 2042068, + "approval": 50, + "support": 0.2042068 + }, + { + "time_hours": 266, + "approval_perbill": 500000000, + "support_perbill": 2005884, + "approval": 50, + "support": 0.2005884 + }, + { + "time_hours": 267, + "approval_perbill": 500000000, + "support_perbill": 1969965, + "approval": 50, + "support": 0.1969965 + }, + { + "time_hours": 268, + "approval_perbill": 500000000, + "support_perbill": 1934309, + "approval": 50, + "support": 0.1934309 + }, + { + "time_hours": 269, + "approval_perbill": 500000000, + "support_perbill": 1898913, + "approval": 50, + "support": 0.1898913 + }, + { + "time_hours": 270, + "approval_perbill": 500000000, + "support_perbill": 1863775, + "approval": 50, + "support": 0.1863775 + }, + { + "time_hours": 271, + "approval_perbill": 500000000, + "support_perbill": 1828891, + "approval": 50, + "support": 0.1828891 + }, + { + "time_hours": 272, + "approval_perbill": 500000000, + "support_perbill": 1794258, + "approval": 50, + "support": 0.1794258 + }, + { + "time_hours": 273, + "approval_perbill": 500000000, + "support_perbill": 1759875, + "approval": 50, + "support": 0.1759875 + }, + { + "time_hours": 274, + "approval_perbill": 500000000, + "support_perbill": 1725737, + "approval": 50, + "support": 0.1725737 + }, + { + "time_hours": 275, + "approval_perbill": 500000000, + "support_perbill": 1691844, + "approval": 50, + "support": 0.1691844 + }, + { + "time_hours": 276, + "approval_perbill": 500000000, + "support_perbill": 1658191, + "approval": 50, + "support": 0.1658191 + }, + { + "time_hours": 277, + "approval_perbill": 500000000, + "support_perbill": 1624777, + "approval": 50, + "support": 0.1624777 + }, + { + "time_hours": 278, + "approval_perbill": 500000000, + "support_perbill": 1591599, + "approval": 50, + "support": 0.1591599 + }, + { + "time_hours": 279, + "approval_perbill": 500000000, + "support_perbill": 1558654, + "approval": 50, + "support": 0.1558654 + }, + { + "time_hours": 280, + "approval_perbill": 500000000, + "support_perbill": 1525941, + "approval": 50, + "support": 0.1525941 + }, + { + "time_hours": 281, + "approval_perbill": 500000000, + "support_perbill": 1493456, + "approval": 50, + "support": 0.1493456 + }, + { + "time_hours": 282, + "approval_perbill": 500000000, + "support_perbill": 1461197, + "approval": 50, + "support": 0.1461197 + }, + { + "time_hours": 283, + "approval_perbill": 500000000, + "support_perbill": 1429162, + "approval": 50, + "support": 0.1429162 + }, + { + "time_hours": 284, + "approval_perbill": 500000000, + "support_perbill": 1397348, + "approval": 50, + "support": 0.1397348 + }, + { + "time_hours": 285, + "approval_perbill": 500000000, + "support_perbill": 1365754, + "approval": 50, + "support": 0.1365754 + }, + { + "time_hours": 286, + "approval_perbill": 500000000, + "support_perbill": 1334377, + "approval": 50, + "support": 0.1334377 + }, + { + "time_hours": 287, + "approval_perbill": 500000000, + "support_perbill": 1303214, + "approval": 50, + "support": 0.1303214 + }, + { + "time_hours": 288, + "approval_perbill": 500000000, + "support_perbill": 1272264, + "approval": 50, + "support": 0.1272264 + }, + { + "time_hours": 289, + "approval_perbill": 500000000, + "support_perbill": 1241525, + "approval": 50, + "support": 0.1241525 + }, + { + "time_hours": 290, + "approval_perbill": 500000000, + "support_perbill": 1210994, + "approval": 50, + "support": 0.1210994 + }, + { + "time_hours": 291, + "approval_perbill": 500000000, + "support_perbill": 1180668, + "approval": 50, + "support": 0.1180668 + }, + { + "time_hours": 292, + "approval_perbill": 500000000, + "support_perbill": 1150547, + "approval": 50, + "support": 0.1150547 + }, + { + "time_hours": 293, + "approval_perbill": 500000000, + "support_perbill": 1120628, + "approval": 50, + "support": 0.1120628 + }, + { + "time_hours": 294, + "approval_perbill": 500000000, + "support_perbill": 1090909, + "approval": 50, + "support": 0.1090909 + }, + { + "time_hours": 295, + "approval_perbill": 500000000, + "support_perbill": 1061388, + "approval": 50, + "support": 0.1061388 + }, + { + "time_hours": 296, + "approval_perbill": 500000000, + "support_perbill": 1032063, + "approval": 50, + "support": 0.1032063 + }, + { + "time_hours": 297, + "approval_perbill": 500000000, + "support_perbill": 1002932, + "approval": 50, + "support": 0.1002932 + }, + { + "time_hours": 298, + "approval_perbill": 500000000, + "support_perbill": 973993, + "approval": 50, + "support": 0.0973993 + }, + { + "time_hours": 299, + "approval_perbill": 500000000, + "support_perbill": 945244, + "approval": 50, + "support": 0.0945244 + }, + { + "time_hours": 300, + "approval_perbill": 500000000, + "support_perbill": 916684, + "approval": 50, + "support": 0.0916684 + }, + { + "time_hours": 301, + "approval_perbill": 500000000, + "support_perbill": 888310, + "approval": 50, + "support": 0.088831 + }, + { + "time_hours": 302, + "approval_perbill": 500000000, + "support_perbill": 860121, + "approval": 50, + "support": 0.0860121 + }, + { + "time_hours": 303, + "approval_perbill": 500000000, + "support_perbill": 832114, + "approval": 50, + "support": 0.0832114 + }, + { + "time_hours": 304, + "approval_perbill": 500000000, + "support_perbill": 804289, + "approval": 50, + "support": 0.0804289 + }, + { + "time_hours": 305, + "approval_perbill": 500000000, + "support_perbill": 776644, + "approval": 50, + "support": 0.0776644 + }, + { + "time_hours": 306, + "approval_perbill": 500000000, + "support_perbill": 749176, + "approval": 50, + "support": 0.0749176 + }, + { + "time_hours": 307, + "approval_perbill": 500000000, + "support_perbill": 721884, + "approval": 50, + "support": 0.0721884 + }, + { + "time_hours": 308, + "approval_perbill": 500000000, + "support_perbill": 694766, + "approval": 50, + "support": 0.0694766 + }, + { + "time_hours": 309, + "approval_perbill": 500000000, + "support_perbill": 667821, + "approval": 50, + "support": 0.0667821 + }, + { + "time_hours": 310, + "approval_perbill": 500000000, + "support_perbill": 641047, + "approval": 50, + "support": 0.0641047 + }, + { + "time_hours": 311, + "approval_perbill": 500000000, + "support_perbill": 614442, + "approval": 50, + "support": 0.0614442 + }, + { + "time_hours": 312, + "approval_perbill": 500000000, + "support_perbill": 588005, + "approval": 50, + "support": 0.0588005 + }, + { + "time_hours": 313, + "approval_perbill": 500000000, + "support_perbill": 561734, + "approval": 50, + "support": 0.0561734 + }, + { + "time_hours": 314, + "approval_perbill": 500000000, + "support_perbill": 535627, + "approval": 50, + "support": 0.0535627 + }, + { + "time_hours": 315, + "approval_perbill": 500000000, + "support_perbill": 509684, + "approval": 50, + "support": 0.0509684 + }, + { + "time_hours": 316, + "approval_perbill": 500000000, + "support_perbill": 483902, + "approval": 50, + "support": 0.0483902 + }, + { + "time_hours": 317, + "approval_perbill": 500000000, + "support_perbill": 458280, + "approval": 50, + "support": 0.045828 + }, + { + "time_hours": 318, + "approval_perbill": 500000000, + "support_perbill": 432817, + "approval": 50, + "support": 0.0432817 + }, + { + "time_hours": 319, + "approval_perbill": 500000000, + "support_perbill": 407511, + "approval": 50, + "support": 0.0407511 + }, + { + "time_hours": 320, + "approval_perbill": 500000000, + "support_perbill": 382360, + "approval": 50, + "support": 0.038236 + }, + { + "time_hours": 321, + "approval_perbill": 500000000, + "support_perbill": 357364, + "approval": 50, + "support": 0.0357364 + }, + { + "time_hours": 322, + "approval_perbill": 500000000, + "support_perbill": 332520, + "approval": 50, + "support": 0.033252 + }, + { + "time_hours": 323, + "approval_perbill": 500000000, + "support_perbill": 307828, + "approval": 50, + "support": 0.0307828 + }, + { + "time_hours": 324, + "approval_perbill": 500000000, + "support_perbill": 283286, + "approval": 50, + "support": 0.0283286 + }, + { + "time_hours": 325, + "approval_perbill": 500000000, + "support_perbill": 258892, + "approval": 50, + "support": 0.0258892 + }, + { + "time_hours": 326, + "approval_perbill": 500000000, + "support_perbill": 234646, + "approval": 50, + "support": 0.0234646 + }, + { + "time_hours": 327, + "approval_perbill": 500000000, + "support_perbill": 210546, + "approval": 50, + "support": 0.0210546 + }, + { + "time_hours": 328, + "approval_perbill": 500000000, + "support_perbill": 186590, + "approval": 50, + "support": 0.018659 + }, + { + "time_hours": 329, + "approval_perbill": 500000000, + "support_perbill": 162778, + "approval": 50, + "support": 0.0162778 + }, + { + "time_hours": 330, + "approval_perbill": 500000000, + "support_perbill": 139108, + "approval": 50, + "support": 0.0139108 + }, + { + "time_hours": 331, + "approval_perbill": 500000000, + "support_perbill": 115578, + "approval": 50, + "support": 0.0115578 + }, + { + "time_hours": 332, + "approval_perbill": 500000000, + "support_perbill": 92188, + "approval": 50, + "support": 0.0092188 + }, + { + "time_hours": 333, + "approval_perbill": 500000000, + "support_perbill": 68937, + "approval": 50, + "support": 0.0068937 + }, + { + "time_hours": 334, + "approval_perbill": 500000000, + "support_perbill": 45822, + "approval": 50, + "support": 0.0045822 + }, + { + "time_hours": 335, + "approval_perbill": 500000000, + "support_perbill": 22844, + "approval": 50, + "support": 0.0022844 + }, + { + "time_hours": 336, + "approval_perbill": 500000000, + "support_perbill": 0, + "approval": 50, + "support": 0 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/kusama/opengov_root.json b/components/utilities/charts_data/kusama/opengov_root.json new file mode 100644 index 000000000000..6103c3e7e5a4 --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_root.json @@ -0,0 +1,2361 @@ +[ + { + "time_hours": 0, + "approval_perbill": 1000000000, + "support_perbill": 500000000, + "approval": 100, + "support": 50 + }, + { + "time_hours": 1, + "approval_perbill": 994100296, + "support_perbill": 498511905, + "approval": 99.4100296, + "support": 49.8511905 + }, + { + "time_hours": 2, + "approval_perbill": 988304096, + "support_perbill": 497023810, + "approval": 98.8304096, + "support": 49.702381 + }, + { + "time_hours": 3, + "approval_perbill": 982608697, + "support_perbill": 495535715, + "approval": 98.2608697, + "support": 49.5535715 + }, + { + "time_hours": 4, + "approval_perbill": 977011496, + "support_perbill": 494047620, + "approval": 97.7011496, + "support": 49.404762 + }, + { + "time_hours": 5, + "approval_perbill": 971509972, + "support_perbill": 492559524, + "approval": 97.1509972, + "support": 49.2559524 + }, + { + "time_hours": 6, + "approval_perbill": 966101697, + "support_perbill": 491071429, + "approval": 96.6101697, + "support": 49.1071429 + }, + { + "time_hours": 7, + "approval_perbill": 960784315, + "support_perbill": 489583334, + "approval": 96.0784315, + "support": 48.9583334 + }, + { + "time_hours": 8, + "approval_perbill": 955555557, + "support_perbill": 488095239, + "approval": 95.5555557, + "support": 48.8095239 + }, + { + "time_hours": 9, + "approval_perbill": 950413224, + "support_perbill": 486607143, + "approval": 95.0413224, + "support": 48.6607143 + }, + { + "time_hours": 10, + "approval_perbill": 945355193, + "support_perbill": 485119048, + "approval": 94.5355193, + "support": 48.5119048 + }, + { + "time_hours": 11, + "approval_perbill": 940379404, + "support_perbill": 483630953, + "approval": 94.0379404, + "support": 48.3630953 + }, + { + "time_hours": 12, + "approval_perbill": 935483872, + "support_perbill": 482142858, + "approval": 93.5483872, + "support": 48.2142858 + }, + { + "time_hours": 13, + "approval_perbill": 930666667, + "support_perbill": 480654762, + "approval": 93.0666667, + "support": 48.0654762 + }, + { + "time_hours": 14, + "approval_perbill": 925925927, + "support_perbill": 479166667, + "approval": 92.5925927, + "support": 47.9166667 + }, + { + "time_hours": 15, + "approval_perbill": 921259843, + "support_perbill": 477678572, + "approval": 92.1259843, + "support": 47.7678572 + }, + { + "time_hours": 16, + "approval_perbill": 916666668, + "support_perbill": 476190477, + "approval": 91.6666668, + "support": 47.6190477 + }, + { + "time_hours": 17, + "approval_perbill": 912144703, + "support_perbill": 474702381, + "approval": 91.2144703, + "support": 47.4702381 + }, + { + "time_hours": 18, + "approval_perbill": 907692309, + "support_perbill": 473214286, + "approval": 90.7692309, + "support": 47.3214286 + }, + { + "time_hours": 19, + "approval_perbill": 903307888, + "support_perbill": 471726191, + "approval": 90.3307888, + "support": 47.1726191 + }, + { + "time_hours": 20, + "approval_perbill": 898989900, + "support_perbill": 470238096, + "approval": 89.89899, + "support": 47.0238096 + }, + { + "time_hours": 21, + "approval_perbill": 894736842, + "support_perbill": 468750000, + "approval": 89.4736842, + "support": 46.875 + }, + { + "time_hours": 22, + "approval_perbill": 890547265, + "support_perbill": 467261905, + "approval": 89.0547265, + "support": 46.7261905 + }, + { + "time_hours": 23, + "approval_perbill": 886419755, + "support_perbill": 465773810, + "approval": 88.6419755, + "support": 46.577381 + }, + { + "time_hours": 24, + "approval_perbill": 882352942, + "support_perbill": 464285715, + "approval": 88.2352942, + "support": 46.4285715 + }, + { + "time_hours": 25, + "approval_perbill": 878345500, + "support_perbill": 462797620, + "approval": 87.83455, + "support": 46.279762 + }, + { + "time_hours": 26, + "approval_perbill": 874396136, + "support_perbill": 461309524, + "approval": 87.4396136, + "support": 46.1309524 + }, + { + "time_hours": 27, + "approval_perbill": 870503599, + "support_perbill": 459821429, + "approval": 87.0503599, + "support": 45.9821429 + }, + { + "time_hours": 28, + "approval_perbill": 866666667, + "support_perbill": 458333334, + "approval": 86.6666667, + "support": 45.8333334 + }, + { + "time_hours": 29, + "approval_perbill": 862884162, + "support_perbill": 456845239, + "approval": 86.2884162, + "support": 45.6845239 + }, + { + "time_hours": 30, + "approval_perbill": 859154930, + "support_perbill": 455357143, + "approval": 85.915493, + "support": 45.5357143 + }, + { + "time_hours": 31, + "approval_perbill": 855477857, + "support_perbill": 453869048, + "approval": 85.5477857, + "support": 45.3869048 + }, + { + "time_hours": 32, + "approval_perbill": 851851852, + "support_perbill": 452380953, + "approval": 85.1851852, + "support": 45.2380953 + }, + { + "time_hours": 33, + "approval_perbill": 848275863, + "support_perbill": 450892858, + "approval": 84.8275863, + "support": 45.0892858 + }, + { + "time_hours": 34, + "approval_perbill": 844748859, + "support_perbill": 449404762, + "approval": 84.4748859, + "support": 44.9404762 + }, + { + "time_hours": 35, + "approval_perbill": 841269842, + "support_perbill": 447916667, + "approval": 84.1269842, + "support": 44.7916667 + }, + { + "time_hours": 36, + "approval_perbill": 837837838, + "support_perbill": 446428572, + "approval": 83.7837838, + "support": 44.6428572 + }, + { + "time_hours": 37, + "approval_perbill": 834451903, + "support_perbill": 444940477, + "approval": 83.4451903, + "support": 44.4940477 + }, + { + "time_hours": 38, + "approval_perbill": 831111112, + "support_perbill": 443452381, + "approval": 83.1111112, + "support": 44.3452381 + }, + { + "time_hours": 39, + "approval_perbill": 827814570, + "support_perbill": 441964286, + "approval": 82.781457, + "support": 44.1964286 + }, + { + "time_hours": 40, + "approval_perbill": 824561404, + "support_perbill": 440476191, + "approval": 82.4561404, + "support": 44.0476191 + }, + { + "time_hours": 41, + "approval_perbill": 821350763, + "support_perbill": 438988096, + "approval": 82.1350763, + "support": 43.8988096 + }, + { + "time_hours": 42, + "approval_perbill": 818181818, + "support_perbill": 437500000, + "approval": 81.8181818, + "support": 43.75 + }, + { + "time_hours": 43, + "approval_perbill": 815053764, + "support_perbill": 436011905, + "approval": 81.5053764, + "support": 43.6011905 + }, + { + "time_hours": 44, + "approval_perbill": 811965813, + "support_perbill": 434523810, + "approval": 81.1965813, + "support": 43.452381 + }, + { + "time_hours": 45, + "approval_perbill": 808917198, + "support_perbill": 433035715, + "approval": 80.8917198, + "support": 43.3035715 + }, + { + "time_hours": 46, + "approval_perbill": 805907174, + "support_perbill": 431547620, + "approval": 80.5907174, + "support": 43.154762 + }, + { + "time_hours": 47, + "approval_perbill": 802935011, + "support_perbill": 430059524, + "approval": 80.2935011, + "support": 43.0059524 + }, + { + "time_hours": 48, + "approval_perbill": 800000001, + "support_perbill": 428571429, + "approval": 80.0000001, + "support": 42.8571429 + }, + { + "time_hours": 49, + "approval_perbill": 797101450, + "support_perbill": 427083334, + "approval": 79.710145, + "support": 42.7083334 + }, + { + "time_hours": 50, + "approval_perbill": 794238684, + "support_perbill": 425595239, + "approval": 79.4238684, + "support": 42.5595239 + }, + { + "time_hours": 51, + "approval_perbill": 791411043, + "support_perbill": 424107143, + "approval": 79.1411043, + "support": 42.4107143 + }, + { + "time_hours": 52, + "approval_perbill": 788617887, + "support_perbill": 422619048, + "approval": 78.8617887, + "support": 42.2619048 + }, + { + "time_hours": 53, + "approval_perbill": 785858586, + "support_perbill": 421130953, + "approval": 78.5858586, + "support": 42.1130953 + }, + { + "time_hours": 54, + "approval_perbill": 783132531, + "support_perbill": 419642858, + "approval": 78.3132531, + "support": 41.9642858 + }, + { + "time_hours": 55, + "approval_perbill": 780439122, + "support_perbill": 418154762, + "approval": 78.0439122, + "support": 41.8154762 + }, + { + "time_hours": 56, + "approval_perbill": 777777779, + "support_perbill": 416666667, + "approval": 77.7777779, + "support": 41.6666667 + }, + { + "time_hours": 57, + "approval_perbill": 775147929, + "support_perbill": 415178572, + "approval": 77.5147929, + "support": 41.5178572 + }, + { + "time_hours": 58, + "approval_perbill": 772549020, + "support_perbill": 413690477, + "approval": 77.254902, + "support": 41.3690477 + }, + { + "time_hours": 59, + "approval_perbill": 769980507, + "support_perbill": 412202381, + "approval": 76.9980507, + "support": 41.2202381 + }, + { + "time_hours": 60, + "approval_perbill": 767441861, + "support_perbill": 410714286, + "approval": 76.7441861, + "support": 41.0714286 + }, + { + "time_hours": 61, + "approval_perbill": 764932563, + "support_perbill": 409226191, + "approval": 76.4932563, + "support": 40.9226191 + }, + { + "time_hours": 62, + "approval_perbill": 762452108, + "support_perbill": 407738096, + "approval": 76.2452108, + "support": 40.7738096 + }, + { + "time_hours": 63, + "approval_perbill": 760000000, + "support_perbill": 406250000, + "approval": 76, + "support": 40.625 + }, + { + "time_hours": 64, + "approval_perbill": 757575758, + "support_perbill": 404761905, + "approval": 75.7575758, + "support": 40.4761905 + }, + { + "time_hours": 65, + "approval_perbill": 755178909, + "support_perbill": 403273810, + "approval": 75.5178909, + "support": 40.327381 + }, + { + "time_hours": 66, + "approval_perbill": 752808989, + "support_perbill": 401785715, + "approval": 75.2808989, + "support": 40.1785715 + }, + { + "time_hours": 67, + "approval_perbill": 750465550, + "support_perbill": 400297620, + "approval": 75.046555, + "support": 40.029762 + }, + { + "time_hours": 68, + "approval_perbill": 748148149, + "support_perbill": 398809524, + "approval": 74.8148149, + "support": 39.8809524 + }, + { + "time_hours": 69, + "approval_perbill": 745856354, + "support_perbill": 397321429, + "approval": 74.5856354, + "support": 39.7321429 + }, + { + "time_hours": 70, + "approval_perbill": 743589744, + "support_perbill": 395833334, + "approval": 74.3589744, + "support": 39.5833334 + }, + { + "time_hours": 71, + "approval_perbill": 741347906, + "support_perbill": 394345239, + "approval": 74.1347906, + "support": 39.4345239 + }, + { + "time_hours": 72, + "approval_perbill": 739130435, + "support_perbill": 392857143, + "approval": 73.9130435, + "support": 39.2857143 + }, + { + "time_hours": 73, + "approval_perbill": 736936938, + "support_perbill": 391369048, + "approval": 73.6936938, + "support": 39.1369048 + }, + { + "time_hours": 74, + "approval_perbill": 734767025, + "support_perbill": 389880953, + "approval": 73.4767025, + "support": 38.9880953 + }, + { + "time_hours": 75, + "approval_perbill": 732620322, + "support_perbill": 388392858, + "approval": 73.2620322, + "support": 38.8392858 + }, + { + "time_hours": 76, + "approval_perbill": 730496454, + "support_perbill": 386904762, + "approval": 73.0496454, + "support": 38.6904762 + }, + { + "time_hours": 77, + "approval_perbill": 728395062, + "support_perbill": 385416667, + "approval": 72.8395062, + "support": 38.5416667 + }, + { + "time_hours": 78, + "approval_perbill": 726315790, + "support_perbill": 383928572, + "approval": 72.631579, + "support": 38.3928572 + }, + { + "time_hours": 79, + "approval_perbill": 724258290, + "support_perbill": 382440477, + "approval": 72.425829, + "support": 38.2440477 + }, + { + "time_hours": 80, + "approval_perbill": 722222222, + "support_perbill": 380952381, + "approval": 72.2222222, + "support": 38.0952381 + }, + { + "time_hours": 81, + "approval_perbill": 720207254, + "support_perbill": 379464286, + "approval": 72.0207254, + "support": 37.9464286 + }, + { + "time_hours": 82, + "approval_perbill": 718213059, + "support_perbill": 377976191, + "approval": 71.8213059, + "support": 37.7976191 + }, + { + "time_hours": 83, + "approval_perbill": 716239317, + "support_perbill": 376488096, + "approval": 71.6239317, + "support": 37.6488096 + }, + { + "time_hours": 84, + "approval_perbill": 714285714, + "support_perbill": 375000000, + "approval": 71.4285714, + "support": 37.5 + }, + { + "time_hours": 85, + "approval_perbill": 712351946, + "support_perbill": 373511905, + "approval": 71.2351946, + "support": 37.3511905 + }, + { + "time_hours": 86, + "approval_perbill": 710437711, + "support_perbill": 372023810, + "approval": 71.0437711, + "support": 37.202381 + }, + { + "time_hours": 87, + "approval_perbill": 708542714, + "support_perbill": 370535715, + "approval": 70.8542714, + "support": 37.0535715 + }, + { + "time_hours": 88, + "approval_perbill": 706666667, + "support_perbill": 369047620, + "approval": 70.6666667, + "support": 36.904762 + }, + { + "time_hours": 89, + "approval_perbill": 704809287, + "support_perbill": 367559524, + "approval": 70.4809287, + "support": 36.7559524 + }, + { + "time_hours": 90, + "approval_perbill": 702970298, + "support_perbill": 366071429, + "approval": 70.2970298, + "support": 36.6071429 + }, + { + "time_hours": 91, + "approval_perbill": 701149426, + "support_perbill": 364583334, + "approval": 70.1149426, + "support": 36.4583334 + }, + { + "time_hours": 92, + "approval_perbill": 699346406, + "support_perbill": 363095239, + "approval": 69.9346406, + "support": 36.3095239 + }, + { + "time_hours": 93, + "approval_perbill": 697560976, + "support_perbill": 361607143, + "approval": 69.7560976, + "support": 36.1607143 + }, + { + "time_hours": 94, + "approval_perbill": 695792881, + "support_perbill": 360119048, + "approval": 69.5792881, + "support": 36.0119048 + }, + { + "time_hours": 95, + "approval_perbill": 694041868, + "support_perbill": 358630953, + "approval": 69.4041868, + "support": 35.8630953 + }, + { + "time_hours": 96, + "approval_perbill": 692307693, + "support_perbill": 357142858, + "approval": 69.2307693, + "support": 35.7142858 + }, + { + "time_hours": 97, + "approval_perbill": 690590112, + "support_perbill": 355654762, + "approval": 69.0590112, + "support": 35.5654762 + }, + { + "time_hours": 98, + "approval_perbill": 688888889, + "support_perbill": 354166667, + "approval": 68.8888889, + "support": 35.4166667 + }, + { + "time_hours": 99, + "approval_perbill": 687203792, + "support_perbill": 352678572, + "approval": 68.7203792, + "support": 35.2678572 + }, + { + "time_hours": 100, + "approval_perbill": 685534592, + "support_perbill": 351190477, + "approval": 68.5534592, + "support": 35.1190477 + }, + { + "time_hours": 101, + "approval_perbill": 683881064, + "support_perbill": 349702381, + "approval": 68.3881064, + "support": 34.9702381 + }, + { + "time_hours": 102, + "approval_perbill": 682242991, + "support_perbill": 348214286, + "approval": 68.2242991, + "support": 34.8214286 + }, + { + "time_hours": 103, + "approval_perbill": 680620155, + "support_perbill": 346726191, + "approval": 68.0620155, + "support": 34.6726191 + }, + { + "time_hours": 104, + "approval_perbill": 679012346, + "support_perbill": 345238096, + "approval": 67.9012346, + "support": 34.5238096 + }, + { + "time_hours": 105, + "approval_perbill": 677419355, + "support_perbill": 343750000, + "approval": 67.7419355, + "support": 34.375 + }, + { + "time_hours": 106, + "approval_perbill": 675840979, + "support_perbill": 342261905, + "approval": 67.5840979, + "support": 34.2261905 + }, + { + "time_hours": 107, + "approval_perbill": 674277017, + "support_perbill": 340773810, + "approval": 67.4277017, + "support": 34.077381 + }, + { + "time_hours": 108, + "approval_perbill": 672727273, + "support_perbill": 339285715, + "approval": 67.2727273, + "support": 33.9285715 + }, + { + "time_hours": 109, + "approval_perbill": 671191554, + "support_perbill": 337797620, + "approval": 67.1191554, + "support": 33.779762 + }, + { + "time_hours": 110, + "approval_perbill": 669669670, + "support_perbill": 336309524, + "approval": 66.966967, + "support": 33.6309524 + }, + { + "time_hours": 111, + "approval_perbill": 668161435, + "support_perbill": 334821429, + "approval": 66.8161435, + "support": 33.4821429 + }, + { + "time_hours": 112, + "approval_perbill": 666666667, + "support_perbill": 333333334, + "approval": 66.6666667, + "support": 33.3333334 + }, + { + "time_hours": 113, + "approval_perbill": 665185186, + "support_perbill": 331845239, + "approval": 66.5185186, + "support": 33.1845239 + }, + { + "time_hours": 114, + "approval_perbill": 663716814, + "support_perbill": 330357143, + "approval": 66.3716814, + "support": 33.0357143 + }, + { + "time_hours": 115, + "approval_perbill": 662261381, + "support_perbill": 328869048, + "approval": 66.2261381, + "support": 32.8869048 + }, + { + "time_hours": 116, + "approval_perbill": 660818714, + "support_perbill": 327380953, + "approval": 66.0818714, + "support": 32.7380953 + }, + { + "time_hours": 117, + "approval_perbill": 659388647, + "support_perbill": 325892858, + "approval": 65.9388647, + "support": 32.5892858 + }, + { + "time_hours": 118, + "approval_perbill": 657971015, + "support_perbill": 324404762, + "approval": 65.7971015, + "support": 32.4404762 + }, + { + "time_hours": 119, + "approval_perbill": 656565657, + "support_perbill": 322916667, + "approval": 65.6565657, + "support": 32.2916667 + }, + { + "time_hours": 120, + "approval_perbill": 655172414, + "support_perbill": 321428572, + "approval": 65.5172414, + "support": 32.1428572 + }, + { + "time_hours": 121, + "approval_perbill": 653791130, + "support_perbill": 319940477, + "approval": 65.379113, + "support": 31.9940477 + }, + { + "time_hours": 122, + "approval_perbill": 652421652, + "support_perbill": 318452381, + "approval": 65.2421652, + "support": 31.8452381 + }, + { + "time_hours": 123, + "approval_perbill": 651063830, + "support_perbill": 316964286, + "approval": 65.106383, + "support": 31.6964286 + }, + { + "time_hours": 124, + "approval_perbill": 649717514, + "support_perbill": 315476191, + "approval": 64.9717514, + "support": 31.5476191 + }, + { + "time_hours": 125, + "approval_perbill": 648382560, + "support_perbill": 313988096, + "approval": 64.838256, + "support": 31.3988096 + }, + { + "time_hours": 126, + "approval_perbill": 647058823, + "support_perbill": 312500000, + "approval": 64.7058823, + "support": 31.25 + }, + { + "time_hours": 127, + "approval_perbill": 645746165, + "support_perbill": 311011905, + "approval": 64.5746165, + "support": 31.1011905 + }, + { + "time_hours": 128, + "approval_perbill": 644444445, + "support_perbill": 309523810, + "approval": 64.4444445, + "support": 30.952381 + }, + { + "time_hours": 129, + "approval_perbill": 643153527, + "support_perbill": 308035715, + "approval": 64.3153527, + "support": 30.8035715 + }, + { + "time_hours": 130, + "approval_perbill": 641873279, + "support_perbill": 306547620, + "approval": 64.1873279, + "support": 30.654762 + }, + { + "time_hours": 131, + "approval_perbill": 640603567, + "support_perbill": 305059524, + "approval": 64.0603567, + "support": 30.5059524 + }, + { + "time_hours": 132, + "approval_perbill": 639344263, + "support_perbill": 303571429, + "approval": 63.9344263, + "support": 30.3571429 + }, + { + "time_hours": 133, + "approval_perbill": 638095238, + "support_perbill": 302083334, + "approval": 63.8095238, + "support": 30.2083334 + }, + { + "time_hours": 134, + "approval_perbill": 636856369, + "support_perbill": 300595239, + "approval": 63.6856369, + "support": 30.0595239 + }, + { + "time_hours": 135, + "approval_perbill": 635627530, + "support_perbill": 299107143, + "approval": 63.562753, + "support": 29.9107143 + }, + { + "time_hours": 136, + "approval_perbill": 634408602, + "support_perbill": 297619048, + "approval": 63.4408602, + "support": 29.7619048 + }, + { + "time_hours": 137, + "approval_perbill": 633199465, + "support_perbill": 296130953, + "approval": 63.3199465, + "support": 29.6130953 + }, + { + "time_hours": 138, + "approval_perbill": 632000000, + "support_perbill": 294642858, + "approval": 63.2, + "support": 29.4642858 + }, + { + "time_hours": 139, + "approval_perbill": 630810093, + "support_perbill": 293154762, + "approval": 63.0810093, + "support": 29.3154762 + }, + { + "time_hours": 140, + "approval_perbill": 629629630, + "support_perbill": 291666667, + "approval": 62.962963, + "support": 29.1666667 + }, + { + "time_hours": 141, + "approval_perbill": 628458498, + "support_perbill": 290178572, + "approval": 62.8458498, + "support": 29.0178572 + }, + { + "time_hours": 142, + "approval_perbill": 627296588, + "support_perbill": 288690477, + "approval": 62.7296588, + "support": 28.8690477 + }, + { + "time_hours": 143, + "approval_perbill": 626143791, + "support_perbill": 287202381, + "approval": 62.6143791, + "support": 28.7202381 + }, + { + "time_hours": 144, + "approval_perbill": 625000000, + "support_perbill": 285714286, + "approval": 62.5, + "support": 28.5714286 + }, + { + "time_hours": 145, + "approval_perbill": 623865110, + "support_perbill": 284226191, + "approval": 62.386511, + "support": 28.4226191 + }, + { + "time_hours": 146, + "approval_perbill": 622739018, + "support_perbill": 282738096, + "approval": 62.2739018, + "support": 28.2738096 + }, + { + "time_hours": 147, + "approval_perbill": 621621621, + "support_perbill": 281250000, + "approval": 62.1621621, + "support": 28.125 + }, + { + "time_hours": 148, + "approval_perbill": 620512821, + "support_perbill": 279761905, + "approval": 62.0512821, + "support": 27.9761905 + }, + { + "time_hours": 149, + "approval_perbill": 619412516, + "support_perbill": 278273810, + "approval": 61.9412516, + "support": 27.827381 + }, + { + "time_hours": 150, + "approval_perbill": 618320611, + "support_perbill": 276785715, + "approval": 61.8320611, + "support": 27.6785715 + }, + { + "time_hours": 151, + "approval_perbill": 617237009, + "support_perbill": 275297620, + "approval": 61.7237009, + "support": 27.529762 + }, + { + "time_hours": 152, + "approval_perbill": 616161616, + "support_perbill": 273809524, + "approval": 61.6161616, + "support": 27.3809524 + }, + { + "time_hours": 153, + "approval_perbill": 615094340, + "support_perbill": 272321429, + "approval": 61.509434, + "support": 27.2321429 + }, + { + "time_hours": 154, + "approval_perbill": 614035088, + "support_perbill": 270833334, + "approval": 61.4035088, + "support": 27.0833334 + }, + { + "time_hours": 155, + "approval_perbill": 612983770, + "support_perbill": 269345239, + "approval": 61.298377, + "support": 26.9345239 + }, + { + "time_hours": 156, + "approval_perbill": 611940298, + "support_perbill": 267857143, + "approval": 61.1940298, + "support": 26.7857143 + }, + { + "time_hours": 157, + "approval_perbill": 610904585, + "support_perbill": 266369048, + "approval": 61.0904585, + "support": 26.6369048 + }, + { + "time_hours": 158, + "approval_perbill": 609876543, + "support_perbill": 264880953, + "approval": 60.9876543, + "support": 26.4880953 + }, + { + "time_hours": 159, + "approval_perbill": 608856089, + "support_perbill": 263392858, + "approval": 60.8856089, + "support": 26.3392858 + }, + { + "time_hours": 160, + "approval_perbill": 607843137, + "support_perbill": 261904762, + "approval": 60.7843137, + "support": 26.1904762 + }, + { + "time_hours": 161, + "approval_perbill": 606837607, + "support_perbill": 260416667, + "approval": 60.6837607, + "support": 26.0416667 + }, + { + "time_hours": 162, + "approval_perbill": 605839416, + "support_perbill": 258928572, + "approval": 60.5839416, + "support": 25.8928572 + }, + { + "time_hours": 163, + "approval_perbill": 604848485, + "support_perbill": 257440477, + "approval": 60.4848485, + "support": 25.7440477 + }, + { + "time_hours": 164, + "approval_perbill": 603864734, + "support_perbill": 255952381, + "approval": 60.3864734, + "support": 25.5952381 + }, + { + "time_hours": 165, + "approval_perbill": 602888087, + "support_perbill": 254464286, + "approval": 60.2888087, + "support": 25.4464286 + }, + { + "time_hours": 166, + "approval_perbill": 601918465, + "support_perbill": 252976191, + "approval": 60.1918465, + "support": 25.2976191 + }, + { + "time_hours": 167, + "approval_perbill": 600955794, + "support_perbill": 251488096, + "approval": 60.0955794, + "support": 25.1488096 + }, + { + "time_hours": 168, + "approval_perbill": 600000000, + "support_perbill": 250000000, + "approval": 60, + "support": 25 + }, + { + "time_hours": 169, + "approval_perbill": 599051008, + "support_perbill": 248511905, + "approval": 59.9051008, + "support": 24.8511905 + }, + { + "time_hours": 170, + "approval_perbill": 598108747, + "support_perbill": 247023810, + "approval": 59.8108747, + "support": 24.702381 + }, + { + "time_hours": 171, + "approval_perbill": 597173145, + "support_perbill": 245535715, + "approval": 59.7173145, + "support": 24.5535715 + }, + { + "time_hours": 172, + "approval_perbill": 596244131, + "support_perbill": 244047620, + "approval": 59.6244131, + "support": 24.404762 + }, + { + "time_hours": 173, + "approval_perbill": 595321637, + "support_perbill": 242559524, + "approval": 59.5321637, + "support": 24.2559524 + }, + { + "time_hours": 174, + "approval_perbill": 594405594, + "support_perbill": 241071429, + "approval": 59.4405594, + "support": 24.1071429 + }, + { + "time_hours": 175, + "approval_perbill": 593495935, + "support_perbill": 239583334, + "approval": 59.3495935, + "support": 23.9583334 + }, + { + "time_hours": 176, + "approval_perbill": 592592593, + "support_perbill": 238095239, + "approval": 59.2592593, + "support": 23.8095239 + }, + { + "time_hours": 177, + "approval_perbill": 591695502, + "support_perbill": 236607143, + "approval": 59.1695502, + "support": 23.6607143 + }, + { + "time_hours": 178, + "approval_perbill": 590804598, + "support_perbill": 235119048, + "approval": 59.0804598, + "support": 23.5119048 + }, + { + "time_hours": 179, + "approval_perbill": 589919817, + "support_perbill": 233630953, + "approval": 58.9919817, + "support": 23.3630953 + }, + { + "time_hours": 180, + "approval_perbill": 589041096, + "support_perbill": 232142858, + "approval": 58.9041096, + "support": 23.2142858 + }, + { + "time_hours": 181, + "approval_perbill": 588168373, + "support_perbill": 230654762, + "approval": 58.8168373, + "support": 23.0654762 + }, + { + "time_hours": 182, + "approval_perbill": 587301587, + "support_perbill": 229166667, + "approval": 58.7301587, + "support": 22.9166667 + }, + { + "time_hours": 183, + "approval_perbill": 586440678, + "support_perbill": 227678572, + "approval": 58.6440678, + "support": 22.7678572 + }, + { + "time_hours": 184, + "approval_perbill": 585585585, + "support_perbill": 226190477, + "approval": 58.5585585, + "support": 22.6190477 + }, + { + "time_hours": 185, + "approval_perbill": 584736251, + "support_perbill": 224702381, + "approval": 58.4736251, + "support": 22.4702381 + }, + { + "time_hours": 186, + "approval_perbill": 583892617, + "support_perbill": 223214286, + "approval": 58.3892617, + "support": 22.3214286 + }, + { + "time_hours": 187, + "approval_perbill": 583054626, + "support_perbill": 221726191, + "approval": 58.3054626, + "support": 22.1726191 + }, + { + "time_hours": 188, + "approval_perbill": 582222222, + "support_perbill": 220238096, + "approval": 58.2222222, + "support": 22.0238096 + }, + { + "time_hours": 189, + "approval_perbill": 581395349, + "support_perbill": 218750000, + "approval": 58.1395349, + "support": 21.875 + }, + { + "time_hours": 190, + "approval_perbill": 580573951, + "support_perbill": 217261905, + "approval": 58.0573951, + "support": 21.7261905 + }, + { + "time_hours": 191, + "approval_perbill": 579757976, + "support_perbill": 215773810, + "approval": 57.9757976, + "support": 21.577381 + }, + { + "time_hours": 192, + "approval_perbill": 578947368, + "support_perbill": 214285715, + "approval": 57.8947368, + "support": 21.4285715 + }, + { + "time_hours": 193, + "approval_perbill": 578142076, + "support_perbill": 212797620, + "approval": 57.8142076, + "support": 21.279762 + }, + { + "time_hours": 194, + "approval_perbill": 577342048, + "support_perbill": 211309524, + "approval": 57.7342048, + "support": 21.1309524 + }, + { + "time_hours": 195, + "approval_perbill": 576547231, + "support_perbill": 209821429, + "approval": 57.6547231, + "support": 20.9821429 + }, + { + "time_hours": 196, + "approval_perbill": 575757576, + "support_perbill": 208333334, + "approval": 57.5757576, + "support": 20.8333334 + }, + { + "time_hours": 197, + "approval_perbill": 574973031, + "support_perbill": 206845239, + "approval": 57.4973031, + "support": 20.6845239 + }, + { + "time_hours": 198, + "approval_perbill": 574193548, + "support_perbill": 205357143, + "approval": 57.4193548, + "support": 20.5357143 + }, + { + "time_hours": 199, + "approval_perbill": 573419078, + "support_perbill": 203869048, + "approval": 57.3419078, + "support": 20.3869048 + }, + { + "time_hours": 200, + "approval_perbill": 572649572, + "support_perbill": 202380953, + "approval": 57.2649572, + "support": 20.2380953 + }, + { + "time_hours": 201, + "approval_perbill": 571884984, + "support_perbill": 200892858, + "approval": 57.1884984, + "support": 20.0892858 + }, + { + "time_hours": 202, + "approval_perbill": 571125265, + "support_perbill": 199404762, + "approval": 57.1125265, + "support": 19.9404762 + }, + { + "time_hours": 203, + "approval_perbill": 570370370, + "support_perbill": 197916667, + "approval": 57.037037, + "support": 19.7916667 + }, + { + "time_hours": 204, + "approval_perbill": 569620253, + "support_perbill": 196428572, + "approval": 56.9620253, + "support": 19.6428572 + }, + { + "time_hours": 205, + "approval_perbill": 568874868, + "support_perbill": 194940477, + "approval": 56.8874868, + "support": 19.4940477 + }, + { + "time_hours": 206, + "approval_perbill": 568134172, + "support_perbill": 193452381, + "approval": 56.8134172, + "support": 19.3452381 + }, + { + "time_hours": 207, + "approval_perbill": 567398119, + "support_perbill": 191964286, + "approval": 56.7398119, + "support": 19.1964286 + }, + { + "time_hours": 208, + "approval_perbill": 566666666, + "support_perbill": 190476191, + "approval": 56.6666666, + "support": 19.0476191 + }, + { + "time_hours": 209, + "approval_perbill": 565939771, + "support_perbill": 188988096, + "approval": 56.5939771, + "support": 18.8988096 + }, + { + "time_hours": 210, + "approval_perbill": 565217391, + "support_perbill": 187500000, + "approval": 56.5217391, + "support": 18.75 + }, + { + "time_hours": 211, + "approval_perbill": 564499484, + "support_perbill": 186011905, + "approval": 56.4499484, + "support": 18.6011905 + }, + { + "time_hours": 212, + "approval_perbill": 563786008, + "support_perbill": 184523810, + "approval": 56.3786008, + "support": 18.452381 + }, + { + "time_hours": 213, + "approval_perbill": 563076923, + "support_perbill": 183035715, + "approval": 56.3076923, + "support": 18.3035715 + }, + { + "time_hours": 214, + "approval_perbill": 562372188, + "support_perbill": 181547620, + "approval": 56.2372188, + "support": 18.154762 + }, + { + "time_hours": 215, + "approval_perbill": 561671763, + "support_perbill": 180059524, + "approval": 56.1671763, + "support": 18.0059524 + }, + { + "time_hours": 216, + "approval_perbill": 560975610, + "support_perbill": 178571429, + "approval": 56.097561, + "support": 17.8571429 + }, + { + "time_hours": 217, + "approval_perbill": 560283688, + "support_perbill": 177083334, + "approval": 56.0283688, + "support": 17.7083334 + }, + { + "time_hours": 218, + "approval_perbill": 559595959, + "support_perbill": 175595239, + "approval": 55.9595959, + "support": 17.5595239 + }, + { + "time_hours": 219, + "approval_perbill": 558912386, + "support_perbill": 174107143, + "approval": 55.8912386, + "support": 17.4107143 + }, + { + "time_hours": 220, + "approval_perbill": 558232931, + "support_perbill": 172619048, + "approval": 55.8232931, + "support": 17.2619048 + }, + { + "time_hours": 221, + "approval_perbill": 557557557, + "support_perbill": 171130953, + "approval": 55.7557557, + "support": 17.1130953 + }, + { + "time_hours": 222, + "approval_perbill": 556886227, + "support_perbill": 169642858, + "approval": 55.6886227, + "support": 16.9642858 + }, + { + "time_hours": 223, + "approval_perbill": 556218905, + "support_perbill": 168154762, + "approval": 55.6218905, + "support": 16.8154762 + }, + { + "time_hours": 224, + "approval_perbill": 555555555, + "support_perbill": 166666667, + "approval": 55.5555555, + "support": 16.6666667 + }, + { + "time_hours": 225, + "approval_perbill": 554896142, + "support_perbill": 165178572, + "approval": 55.4896142, + "support": 16.5178572 + }, + { + "time_hours": 226, + "approval_perbill": 554240631, + "support_perbill": 163690477, + "approval": 55.4240631, + "support": 16.3690477 + }, + { + "time_hours": 227, + "approval_perbill": 553588987, + "support_perbill": 162202381, + "approval": 55.3588987, + "support": 16.2202381 + }, + { + "time_hours": 228, + "approval_perbill": 552941176, + "support_perbill": 160714286, + "approval": 55.2941176, + "support": 16.0714286 + }, + { + "time_hours": 229, + "approval_perbill": 552297165, + "support_perbill": 159226191, + "approval": 55.2297165, + "support": 15.9226191 + }, + { + "time_hours": 230, + "approval_perbill": 551656920, + "support_perbill": 157738096, + "approval": 55.165692, + "support": 15.7738096 + }, + { + "time_hours": 231, + "approval_perbill": 551020408, + "support_perbill": 156250000, + "approval": 55.1020408, + "support": 15.625 + }, + { + "time_hours": 232, + "approval_perbill": 550387597, + "support_perbill": 154761905, + "approval": 55.0387597, + "support": 15.4761905 + }, + { + "time_hours": 233, + "approval_perbill": 549758454, + "support_perbill": 153273810, + "approval": 54.9758454, + "support": 15.327381 + }, + { + "time_hours": 234, + "approval_perbill": 549132948, + "support_perbill": 151785715, + "approval": 54.9132948, + "support": 15.1785715 + }, + { + "time_hours": 235, + "approval_perbill": 548511047, + "support_perbill": 150297620, + "approval": 54.8511047, + "support": 15.029762 + }, + { + "time_hours": 236, + "approval_perbill": 547892720, + "support_perbill": 148809524, + "approval": 54.789272, + "support": 14.8809524 + }, + { + "time_hours": 237, + "approval_perbill": 547277937, + "support_perbill": 147321429, + "approval": 54.7277937, + "support": 14.7321429 + }, + { + "time_hours": 238, + "approval_perbill": 546666666, + "support_perbill": 145833334, + "approval": 54.6666666, + "support": 14.5833334 + }, + { + "time_hours": 239, + "approval_perbill": 546058879, + "support_perbill": 144345239, + "approval": 54.6058879, + "support": 14.4345239 + }, + { + "time_hours": 240, + "approval_perbill": 545454545, + "support_perbill": 142857143, + "approval": 54.5454545, + "support": 14.2857143 + }, + { + "time_hours": 241, + "approval_perbill": 544853635, + "support_perbill": 141369048, + "approval": 54.4853635, + "support": 14.1369048 + }, + { + "time_hours": 242, + "approval_perbill": 544256120, + "support_perbill": 139880953, + "approval": 54.425612, + "support": 13.9880953 + }, + { + "time_hours": 243, + "approval_perbill": 543661971, + "support_perbill": 138392858, + "approval": 54.3661971, + "support": 13.8392858 + }, + { + "time_hours": 244, + "approval_perbill": 543071161, + "support_perbill": 136904762, + "approval": 54.3071161, + "support": 13.6904762 + }, + { + "time_hours": 245, + "approval_perbill": 542483660, + "support_perbill": 135416667, + "approval": 54.248366, + "support": 13.5416667 + }, + { + "time_hours": 246, + "approval_perbill": 541899441, + "support_perbill": 133928572, + "approval": 54.1899441, + "support": 13.3928572 + }, + { + "time_hours": 247, + "approval_perbill": 541318477, + "support_perbill": 132440477, + "approval": 54.1318477, + "support": 13.2440477 + }, + { + "time_hours": 248, + "approval_perbill": 540740740, + "support_perbill": 130952381, + "approval": 54.074074, + "support": 13.0952381 + }, + { + "time_hours": 249, + "approval_perbill": 540166205, + "support_perbill": 129464286, + "approval": 54.0166205, + "support": 12.9464286 + }, + { + "time_hours": 250, + "approval_perbill": 539594843, + "support_perbill": 127976191, + "approval": 53.9594843, + "support": 12.7976191 + }, + { + "time_hours": 251, + "approval_perbill": 539026630, + "support_perbill": 126488096, + "approval": 53.902663, + "support": 12.6488096 + }, + { + "time_hours": 252, + "approval_perbill": 538461538, + "support_perbill": 125000000, + "approval": 53.8461538, + "support": 12.5 + }, + { + "time_hours": 253, + "approval_perbill": 537899543, + "support_perbill": 123511905, + "approval": 53.7899543, + "support": 12.3511905 + }, + { + "time_hours": 254, + "approval_perbill": 537340619, + "support_perbill": 122023810, + "approval": 53.7340619, + "support": 12.202381 + }, + { + "time_hours": 255, + "approval_perbill": 536784741, + "support_perbill": 120535715, + "approval": 53.6784741, + "support": 12.0535715 + }, + { + "time_hours": 256, + "approval_perbill": 536231884, + "support_perbill": 119047620, + "approval": 53.6231884, + "support": 11.904762 + }, + { + "time_hours": 257, + "approval_perbill": 535682023, + "support_perbill": 117559524, + "approval": 53.5682023, + "support": 11.7559524 + }, + { + "time_hours": 258, + "approval_perbill": 535135135, + "support_perbill": 116071429, + "approval": 53.5135135, + "support": 11.6071429 + }, + { + "time_hours": 259, + "approval_perbill": 534591195, + "support_perbill": 114583334, + "approval": 53.4591195, + "support": 11.4583334 + }, + { + "time_hours": 260, + "approval_perbill": 534050179, + "support_perbill": 113095239, + "approval": 53.4050179, + "support": 11.3095239 + }, + { + "time_hours": 261, + "approval_perbill": 533512064, + "support_perbill": 111607143, + "approval": 53.3512064, + "support": 11.1607143 + }, + { + "time_hours": 262, + "approval_perbill": 532976827, + "support_perbill": 110119048, + "approval": 53.2976827, + "support": 11.0119048 + }, + { + "time_hours": 263, + "approval_perbill": 532444444, + "support_perbill": 108630953, + "approval": 53.2444444, + "support": 10.8630953 + }, + { + "time_hours": 264, + "approval_perbill": 531914893, + "support_perbill": 107142858, + "approval": 53.1914893, + "support": 10.7142858 + }, + { + "time_hours": 265, + "approval_perbill": 531388152, + "support_perbill": 105654762, + "approval": 53.1388152, + "support": 10.5654762 + }, + { + "time_hours": 266, + "approval_perbill": 530864197, + "support_perbill": 104166667, + "approval": 53.0864197, + "support": 10.4166667 + }, + { + "time_hours": 267, + "approval_perbill": 530343007, + "support_perbill": 102678572, + "approval": 53.0343007, + "support": 10.2678572 + }, + { + "time_hours": 268, + "approval_perbill": 529824561, + "support_perbill": 101190477, + "approval": 52.9824561, + "support": 10.1190477 + }, + { + "time_hours": 269, + "approval_perbill": 529308836, + "support_perbill": 99702381, + "approval": 52.9308836, + "support": 9.9702381 + }, + { + "time_hours": 270, + "approval_perbill": 528795811, + "support_perbill": 98214286, + "approval": 52.8795811, + "support": 9.8214286 + }, + { + "time_hours": 271, + "approval_perbill": 528285465, + "support_perbill": 96726191, + "approval": 52.8285465, + "support": 9.6726191 + }, + { + "time_hours": 272, + "approval_perbill": 527777777, + "support_perbill": 95238096, + "approval": 52.7777777, + "support": 9.5238096 + }, + { + "time_hours": 273, + "approval_perbill": 527272727, + "support_perbill": 93750000, + "approval": 52.7272727, + "support": 9.375 + }, + { + "time_hours": 274, + "approval_perbill": 526770293, + "support_perbill": 92261905, + "approval": 52.6770293, + "support": 9.2261905 + }, + { + "time_hours": 275, + "approval_perbill": 526270456, + "support_perbill": 90773810, + "approval": 52.6270456, + "support": 9.077381 + }, + { + "time_hours": 276, + "approval_perbill": 525773195, + "support_perbill": 89285715, + "approval": 52.5773195, + "support": 8.9285715 + }, + { + "time_hours": 277, + "approval_perbill": 525278491, + "support_perbill": 87797620, + "approval": 52.5278491, + "support": 8.779762 + }, + { + "time_hours": 278, + "approval_perbill": 524786324, + "support_perbill": 86309524, + "approval": 52.4786324, + "support": 8.6309524 + }, + { + "time_hours": 279, + "approval_perbill": 524296675, + "support_perbill": 84821429, + "approval": 52.4296675, + "support": 8.4821429 + }, + { + "time_hours": 280, + "approval_perbill": 523809523, + "support_perbill": 83333334, + "approval": 52.3809523, + "support": 8.3333334 + }, + { + "time_hours": 281, + "approval_perbill": 523324851, + "support_perbill": 81845239, + "approval": 52.3324851, + "support": 8.1845239 + }, + { + "time_hours": 282, + "approval_perbill": 522842639, + "support_perbill": 80357143, + "approval": 52.2842639, + "support": 8.0357143 + }, + { + "time_hours": 283, + "approval_perbill": 522362869, + "support_perbill": 78869048, + "approval": 52.2362869, + "support": 7.8869048 + }, + { + "time_hours": 284, + "approval_perbill": 521885521, + "support_perbill": 77380953, + "approval": 52.1885521, + "support": 7.7380953 + }, + { + "time_hours": 285, + "approval_perbill": 521410579, + "support_perbill": 75892858, + "approval": 52.1410579, + "support": 7.5892858 + }, + { + "time_hours": 286, + "approval_perbill": 520938023, + "support_perbill": 74404762, + "approval": 52.0938023, + "support": 7.4404762 + }, + { + "time_hours": 287, + "approval_perbill": 520467836, + "support_perbill": 72916667, + "approval": 52.0467836, + "support": 7.2916667 + }, + { + "time_hours": 288, + "approval_perbill": 519999999, + "support_perbill": 71428572, + "approval": 51.9999999, + "support": 7.1428572 + }, + { + "time_hours": 289, + "approval_perbill": 519534497, + "support_perbill": 69940477, + "approval": 51.9534497, + "support": 6.9940477 + }, + { + "time_hours": 290, + "approval_perbill": 519071310, + "support_perbill": 68452381, + "approval": 51.907131, + "support": 6.8452381 + }, + { + "time_hours": 291, + "approval_perbill": 518610421, + "support_perbill": 66964286, + "approval": 51.8610421, + "support": 6.6964286 + }, + { + "time_hours": 292, + "approval_perbill": 518151815, + "support_perbill": 65476191, + "approval": 51.8151815, + "support": 6.5476191 + }, + { + "time_hours": 293, + "approval_perbill": 517695473, + "support_perbill": 63988096, + "approval": 51.7695473, + "support": 6.3988096 + }, + { + "time_hours": 294, + "approval_perbill": 517241379, + "support_perbill": 62500000, + "approval": 51.7241379, + "support": 6.25 + }, + { + "time_hours": 295, + "approval_perbill": 516789516, + "support_perbill": 61011905, + "approval": 51.6789516, + "support": 6.1011905 + }, + { + "time_hours": 296, + "approval_perbill": 516339869, + "support_perbill": 59523810, + "approval": 51.6339869, + "support": 5.952381 + }, + { + "time_hours": 297, + "approval_perbill": 515892420, + "support_perbill": 58035715, + "approval": 51.589242, + "support": 5.8035715 + }, + { + "time_hours": 298, + "approval_perbill": 515447154, + "support_perbill": 56547620, + "approval": 51.5447154, + "support": 5.654762 + }, + { + "time_hours": 299, + "approval_perbill": 515004055, + "support_perbill": 55059524, + "approval": 51.5004055, + "support": 5.5059524 + }, + { + "time_hours": 300, + "approval_perbill": 514563106, + "support_perbill": 53571429, + "approval": 51.4563106, + "support": 5.3571429 + }, + { + "time_hours": 301, + "approval_perbill": 514124293, + "support_perbill": 52083334, + "approval": 51.4124293, + "support": 5.2083334 + }, + { + "time_hours": 302, + "approval_perbill": 513687600, + "support_perbill": 50595239, + "approval": 51.36876, + "support": 5.0595239 + }, + { + "time_hours": 303, + "approval_perbill": 513253011, + "support_perbill": 49107143, + "approval": 51.3253011, + "support": 4.9107143 + }, + { + "time_hours": 304, + "approval_perbill": 512820512, + "support_perbill": 47619048, + "approval": 51.2820512, + "support": 4.7619048 + }, + { + "time_hours": 305, + "approval_perbill": 512390087, + "support_perbill": 46130953, + "approval": 51.2390087, + "support": 4.6130953 + }, + { + "time_hours": 306, + "approval_perbill": 511961722, + "support_perbill": 44642858, + "approval": 51.1961722, + "support": 4.4642858 + }, + { + "time_hours": 307, + "approval_perbill": 511535401, + "support_perbill": 43154762, + "approval": 51.1535401, + "support": 4.3154762 + }, + { + "time_hours": 308, + "approval_perbill": 511111111, + "support_perbill": 41666667, + "approval": 51.1111111, + "support": 4.1666667 + }, + { + "time_hours": 309, + "approval_perbill": 510688835, + "support_perbill": 40178572, + "approval": 51.0688835, + "support": 4.0178572 + }, + { + "time_hours": 310, + "approval_perbill": 510268562, + "support_perbill": 38690477, + "approval": 51.0268562, + "support": 3.8690477 + }, + { + "time_hours": 311, + "approval_perbill": 509850275, + "support_perbill": 37202381, + "approval": 50.9850275, + "support": 3.7202381 + }, + { + "time_hours": 312, + "approval_perbill": 509433962, + "support_perbill": 35714286, + "approval": 50.9433962, + "support": 3.5714286 + }, + { + "time_hours": 313, + "approval_perbill": 509019607, + "support_perbill": 34226191, + "approval": 50.9019607, + "support": 3.4226191 + }, + { + "time_hours": 314, + "approval_perbill": 508607198, + "support_perbill": 32738096, + "approval": 50.8607198, + "support": 3.2738096 + }, + { + "time_hours": 315, + "approval_perbill": 508196721, + "support_perbill": 31250000, + "approval": 50.8196721, + "support": 3.125 + }, + { + "time_hours": 316, + "approval_perbill": 507788161, + "support_perbill": 29761905, + "approval": 50.7788161, + "support": 2.9761905 + }, + { + "time_hours": 317, + "approval_perbill": 507381507, + "support_perbill": 28273810, + "approval": 50.7381507, + "support": 2.827381 + }, + { + "time_hours": 318, + "approval_perbill": 506976744, + "support_perbill": 26785715, + "approval": 50.6976744, + "support": 2.6785715 + }, + { + "time_hours": 319, + "approval_perbill": 506573859, + "support_perbill": 25297620, + "approval": 50.6573859, + "support": 2.529762 + }, + { + "time_hours": 320, + "approval_perbill": 506172839, + "support_perbill": 23809524, + "approval": 50.6172839, + "support": 2.3809524 + }, + { + "time_hours": 321, + "approval_perbill": 505773671, + "support_perbill": 22321429, + "approval": 50.5773671, + "support": 2.2321429 + }, + { + "time_hours": 322, + "approval_perbill": 505376343, + "support_perbill": 20833334, + "approval": 50.5376343, + "support": 2.0833334 + }, + { + "time_hours": 323, + "approval_perbill": 504980842, + "support_perbill": 19345239, + "approval": 50.4980842, + "support": 1.9345239 + }, + { + "time_hours": 324, + "approval_perbill": 504587155, + "support_perbill": 17857143, + "approval": 50.4587155, + "support": 1.7857143 + }, + { + "time_hours": 325, + "approval_perbill": 504195270, + "support_perbill": 16369048, + "approval": 50.419527, + "support": 1.6369048 + }, + { + "time_hours": 326, + "approval_perbill": 503805174, + "support_perbill": 14880953, + "approval": 50.3805174, + "support": 1.4880953 + }, + { + "time_hours": 327, + "approval_perbill": 503416856, + "support_perbill": 13392858, + "approval": 50.3416856, + "support": 1.3392858 + }, + { + "time_hours": 328, + "approval_perbill": 503030302, + "support_perbill": 11904762, + "approval": 50.3030302, + "support": 1.1904762 + }, + { + "time_hours": 329, + "approval_perbill": 502645502, + "support_perbill": 10416667, + "approval": 50.2645502, + "support": 1.0416667 + }, + { + "time_hours": 330, + "approval_perbill": 502262443, + "support_perbill": 8928572, + "approval": 50.2262443, + "support": 0.8928572 + }, + { + "time_hours": 331, + "approval_perbill": 501881113, + "support_perbill": 7440477, + "approval": 50.1881113, + "support": 0.7440477 + }, + { + "time_hours": 332, + "approval_perbill": 501501501, + "support_perbill": 5952381, + "approval": 50.1501501, + "support": 0.5952381 + }, + { + "time_hours": 333, + "approval_perbill": 501123595, + "support_perbill": 4464286, + "approval": 50.1123595, + "support": 0.4464286 + }, + { + "time_hours": 334, + "approval_perbill": 500747383, + "support_perbill": 2976191, + "approval": 50.0747383, + "support": 0.2976191 + }, + { + "time_hours": 335, + "approval_perbill": 500372855, + "support_perbill": 1488096, + "approval": 50.0372855, + "support": 0.1488096 + }, + { + "time_hours": 336, + "approval_perbill": 499999999, + "support_perbill": 0, + "approval": 49.9999999, + "support": 0 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/kusama/opengov_small_spender.json b/components/utilities/charts_data/kusama/opengov_small_spender.json new file mode 100644 index 000000000000..9c589d040233 --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_small_spender.json @@ -0,0 +1,2361 @@ +[ + { + "time_hours": 0, + "approval_perbill": 1000000000, + "support_perbill": 500000026, + "approval": 100, + "support": 50.0000026 + }, + { + "time_hours": 1, + "approval_perbill": 997549020, + "support_perbill": 418401359, + "approval": 99.754902, + "support": 41.8401359 + }, + { + "time_hours": 2, + "approval_perbill": 995098040, + "support_perbill": 359397443, + "approval": 99.509804, + "support": 35.9397443 + }, + { + "time_hours": 3, + "approval_perbill": 992647060, + "support_perbill": 314744813, + "approval": 99.264706, + "support": 31.4744813 + }, + { + "time_hours": 4, + "approval_perbill": 990196080, + "support_perbill": 279775293, + "approval": 99.019608, + "support": 27.9775293 + }, + { + "time_hours": 5, + "approval_perbill": 987745099, + "support_perbill": 251647242, + "approval": 98.7745099, + "support": 25.1647242 + }, + { + "time_hours": 6, + "approval_perbill": 985294119, + "support_perbill": 228531862, + "approval": 98.5294119, + "support": 22.8531862 + }, + { + "time_hours": 7, + "approval_perbill": 982843138, + "support_perbill": 209198815, + "approval": 98.2843138, + "support": 20.9198815 + }, + { + "time_hours": 8, + "approval_perbill": 980392158, + "support_perbill": 192789972, + "approval": 98.0392158, + "support": 19.2789972 + }, + { + "time_hours": 9, + "approval_perbill": 977941177, + "support_perbill": 178688524, + "approval": 97.7941177, + "support": 17.8688524 + }, + { + "time_hours": 10, + "approval_perbill": 975490197, + "support_perbill": 166439756, + "approval": 97.5490197, + "support": 16.6439756 + }, + { + "time_hours": 11, + "approval_perbill": 973039216, + "support_perbill": 155701053, + "approval": 97.3039216, + "support": 15.5701053 + }, + { + "time_hours": 12, + "approval_perbill": 970588236, + "support_perbill": 146209386, + "approval": 97.0588236, + "support": 14.6209386 + }, + { + "time_hours": 13, + "approval_perbill": 968137256, + "support_perbill": 137759452, + "approval": 96.8137256, + "support": 13.7759452 + }, + { + "time_hours": 14, + "approval_perbill": 965686276, + "support_perbill": 130188679, + "approval": 96.5686276, + "support": 13.0188679 + }, + { + "time_hours": 15, + "approval_perbill": 963235295, + "support_perbill": 123366639, + "approval": 96.3235295, + "support": 12.3366639 + }, + { + "time_hours": 16, + "approval_perbill": 960784315, + "support_perbill": 117187499, + "approval": 96.0784315, + "support": 11.7187499 + }, + { + "time_hours": 17, + "approval_perbill": 958333334, + "support_perbill": 111564465, + "approval": 95.8333334, + "support": 11.1564465 + }, + { + "time_hours": 18, + "approval_perbill": 955882354, + "support_perbill": 106425701, + "approval": 95.5882354, + "support": 10.6425701 + }, + { + "time_hours": 19, + "approval_perbill": 953431373, + "support_perbill": 101711228, + "approval": 95.3431373, + "support": 10.1711228 + }, + { + "time_hours": 20, + "approval_perbill": 950980393, + "support_perbill": 97370582, + "approval": 95.0980393, + "support": 9.7370582 + }, + { + "time_hours": 21, + "approval_perbill": 948529412, + "support_perbill": 93360994, + "approval": 94.8529412, + "support": 9.3360994 + }, + { + "time_hours": 22, + "approval_perbill": 946078432, + "support_perbill": 89645982, + "approval": 94.6078432, + "support": 8.9645982 + }, + { + "time_hours": 23, + "approval_perbill": 943627452, + "support_perbill": 86194234, + "approval": 94.3627452, + "support": 8.6194234 + }, + { + "time_hours": 24, + "approval_perbill": 941176471, + "support_perbill": 82978722, + "approval": 94.1176471, + "support": 8.2978722 + }, + { + "time_hours": 25, + "approval_perbill": 938725491, + "support_perbill": 79975997, + "approval": 93.8725491, + "support": 7.9975997 + }, + { + "time_hours": 26, + "approval_perbill": 936274511, + "support_perbill": 77165614, + "approval": 93.6274511, + "support": 7.7165614 + }, + { + "time_hours": 27, + "approval_perbill": 933823531, + "support_perbill": 74529666, + "approval": 93.3823531, + "support": 7.4529666 + }, + { + "time_hours": 28, + "approval_perbill": 931372550, + "support_perbill": 72052400, + "approval": 93.137255, + "support": 7.20524 + }, + { + "time_hours": 29, + "approval_perbill": 928921570, + "support_perbill": 69719908, + "approval": 92.892157, + "support": 6.9719908 + }, + { + "time_hours": 30, + "approval_perbill": 926470589, + "support_perbill": 67519857, + "approval": 92.6470589, + "support": 6.7519857 + }, + { + "time_hours": 31, + "approval_perbill": 924019609, + "support_perbill": 65441280, + "approval": 92.4019609, + "support": 6.544128 + }, + { + "time_hours": 32, + "approval_perbill": 921568628, + "support_perbill": 63474386, + "approval": 92.1568628, + "support": 6.3474386 + }, + { + "time_hours": 33, + "approval_perbill": 919117648, + "support_perbill": 61610409, + "approval": 91.9117648, + "support": 6.1610409 + }, + { + "time_hours": 34, + "approval_perbill": 916666667, + "support_perbill": 59841478, + "approval": 91.6666667, + "support": 5.9841478 + }, + { + "time_hours": 35, + "approval_perbill": 914215687, + "support_perbill": 58160504, + "approval": 91.4215687, + "support": 5.8160504 + }, + { + "time_hours": 36, + "approval_perbill": 911764706, + "support_perbill": 56561084, + "approval": 91.1764706, + "support": 5.6561084 + }, + { + "time_hours": 37, + "approval_perbill": 909313726, + "support_perbill": 55037426, + "approval": 90.9313726, + "support": 5.5037426 + }, + { + "time_hours": 38, + "approval_perbill": 906862746, + "support_perbill": 53584271, + "approval": 90.6862746, + "support": 5.3584271 + }, + { + "time_hours": 39, + "approval_perbill": 904411766, + "support_perbill": 52196835, + "approval": 90.4411766, + "support": 5.2196835 + }, + { + "time_hours": 40, + "approval_perbill": 901960785, + "support_perbill": 50870759, + "approval": 90.1960785, + "support": 5.0870759 + }, + { + "time_hours": 41, + "approval_perbill": 899509805, + "support_perbill": 49602061, + "approval": 89.9509805, + "support": 4.9602061 + }, + { + "time_hours": 42, + "approval_perbill": 897058824, + "support_perbill": 48387095, + "approval": 89.7058824, + "support": 4.8387095 + }, + { + "time_hours": 43, + "approval_perbill": 894607844, + "support_perbill": 47222519, + "approval": 89.4607844, + "support": 4.7222519 + }, + { + "time_hours": 44, + "approval_perbill": 892156864, + "support_perbill": 46105262, + "approval": 89.2156864, + "support": 4.6105262 + }, + { + "time_hours": 45, + "approval_perbill": 889705883, + "support_perbill": 45032496, + "approval": 88.9705883, + "support": 4.5032496 + }, + { + "time_hours": 46, + "approval_perbill": 887254903, + "support_perbill": 44001617, + "approval": 88.7254903, + "support": 4.4001617 + }, + { + "time_hours": 47, + "approval_perbill": 884803922, + "support_perbill": 43010218, + "approval": 88.4803922, + "support": 4.3010218 + }, + { + "time_hours": 48, + "approval_perbill": 882352942, + "support_perbill": 42056074, + "approval": 88.2352942, + "support": 4.2056074 + }, + { + "time_hours": 49, + "approval_perbill": 879901962, + "support_perbill": 41137122, + "approval": 87.9901962, + "support": 4.1137122 + }, + { + "time_hours": 50, + "approval_perbill": 877450982, + "support_perbill": 40251453, + "approval": 87.7450982, + "support": 4.0251453 + }, + { + "time_hours": 51, + "approval_perbill": 875000001, + "support_perbill": 39397289, + "approval": 87.5000001, + "support": 3.9397289 + }, + { + "time_hours": 52, + "approval_perbill": 872549021, + "support_perbill": 38572980, + "approval": 87.2549021, + "support": 3.857298 + }, + { + "time_hours": 53, + "approval_perbill": 870098040, + "support_perbill": 37776985, + "approval": 87.009804, + "support": 3.7776985 + }, + { + "time_hours": 54, + "approval_perbill": 867647060, + "support_perbill": 37007873, + "approval": 86.764706, + "support": 3.7007873 + }, + { + "time_hours": 55, + "approval_perbill": 865196079, + "support_perbill": 36264302, + "approval": 86.5196079, + "support": 3.6264302 + }, + { + "time_hours": 56, + "approval_perbill": 862745099, + "support_perbill": 35545023, + "approval": 86.2745099, + "support": 3.5545023 + }, + { + "time_hours": 57, + "approval_perbill": 860294118, + "support_perbill": 34848862, + "approval": 86.0294118, + "support": 3.4848862 + }, + { + "time_hours": 58, + "approval_perbill": 857843138, + "support_perbill": 34174724, + "approval": 85.7843138, + "support": 3.4174724 + }, + { + "time_hours": 59, + "approval_perbill": 855392157, + "support_perbill": 33521580, + "approval": 85.5392157, + "support": 3.352158 + }, + { + "time_hours": 60, + "approval_perbill": 852941177, + "support_perbill": 32888464, + "approval": 85.2941177, + "support": 3.2888464 + }, + { + "time_hours": 61, + "approval_perbill": 850490197, + "support_perbill": 32274469, + "approval": 85.0490197, + "support": 3.2274469 + }, + { + "time_hours": 62, + "approval_perbill": 848039217, + "support_perbill": 31678741, + "approval": 84.8039217, + "support": 3.1678741 + }, + { + "time_hours": 63, + "approval_perbill": 845588236, + "support_perbill": 31100477, + "approval": 84.5588236, + "support": 3.1100477 + }, + { + "time_hours": 64, + "approval_perbill": 843137256, + "support_perbill": 30538921, + "approval": 84.3137256, + "support": 3.0538921 + }, + { + "time_hours": 65, + "approval_perbill": 840686276, + "support_perbill": 29993358, + "approval": 84.0686276, + "support": 2.9993358 + }, + { + "time_hours": 66, + "approval_perbill": 838235295, + "support_perbill": 29463116, + "approval": 83.8235295, + "support": 2.9463116 + }, + { + "time_hours": 67, + "approval_perbill": 835784315, + "support_perbill": 28947556, + "approval": 83.5784315, + "support": 2.8947556 + }, + { + "time_hours": 68, + "approval_perbill": 833333334, + "support_perbill": 28446079, + "approval": 83.3333334, + "support": 2.8446079 + }, + { + "time_hours": 69, + "approval_perbill": 830882354, + "support_perbill": 27958114, + "approval": 83.0882354, + "support": 2.7958114 + }, + { + "time_hours": 70, + "approval_perbill": 828431373, + "support_perbill": 27483123, + "approval": 82.8431373, + "support": 2.7483123 + }, + { + "time_hours": 71, + "approval_perbill": 825980393, + "support_perbill": 27020596, + "approval": 82.5980393, + "support": 2.7020596 + }, + { + "time_hours": 72, + "approval_perbill": 823529412, + "support_perbill": 26570047, + "approval": 82.3529412, + "support": 2.6570047 + }, + { + "time_hours": 73, + "approval_perbill": 821078432, + "support_perbill": 26131019, + "approval": 82.1078432, + "support": 2.6131019 + }, + { + "time_hours": 74, + "approval_perbill": 818627452, + "support_perbill": 25703073, + "approval": 81.8627452, + "support": 2.5703073 + }, + { + "time_hours": 75, + "approval_perbill": 816176472, + "support_perbill": 25285796, + "approval": 81.6176472, + "support": 2.5285796 + }, + { + "time_hours": 76, + "approval_perbill": 813725491, + "support_perbill": 24878795, + "approval": 81.3725491, + "support": 2.4878795 + }, + { + "time_hours": 77, + "approval_perbill": 811274511, + "support_perbill": 24481693, + "approval": 81.1274511, + "support": 2.4481693 + }, + { + "time_hours": 78, + "approval_perbill": 808823530, + "support_perbill": 24094134, + "approval": 80.882353, + "support": 2.4094134 + }, + { + "time_hours": 79, + "approval_perbill": 806372550, + "support_perbill": 23715779, + "approval": 80.637255, + "support": 2.3715779 + }, + { + "time_hours": 80, + "approval_perbill": 803921569, + "support_perbill": 23346303, + "approval": 80.3921569, + "support": 2.3346303 + }, + { + "time_hours": 81, + "approval_perbill": 801470589, + "support_perbill": 22985397, + "approval": 80.1470589, + "support": 2.2985397 + }, + { + "time_hours": 82, + "approval_perbill": 799019608, + "support_perbill": 22632766, + "approval": 79.9019608, + "support": 2.2632766 + }, + { + "time_hours": 83, + "approval_perbill": 796568628, + "support_perbill": 22288130, + "approval": 79.6568628, + "support": 2.228813 + }, + { + "time_hours": 84, + "approval_perbill": 794117648, + "support_perbill": 21951219, + "approval": 79.4117648, + "support": 2.1951219 + }, + { + "time_hours": 85, + "approval_perbill": 791666668, + "support_perbill": 21621776, + "approval": 79.1666668, + "support": 2.1621776 + }, + { + "time_hours": 86, + "approval_perbill": 789215688, + "support_perbill": 21299556, + "approval": 78.9215688, + "support": 2.1299556 + }, + { + "time_hours": 87, + "approval_perbill": 786764707, + "support_perbill": 20984324, + "approval": 78.6764707, + "support": 2.0984324 + }, + { + "time_hours": 88, + "approval_perbill": 784313727, + "support_perbill": 20675855, + "approval": 78.4313727, + "support": 2.0675855 + }, + { + "time_hours": 89, + "approval_perbill": 781862746, + "support_perbill": 20373934, + "approval": 78.1862746, + "support": 2.0373934 + }, + { + "time_hours": 90, + "approval_perbill": 779411766, + "support_perbill": 20078354, + "approval": 77.9411766, + "support": 2.0078354 + }, + { + "time_hours": 91, + "approval_perbill": 776960785, + "support_perbill": 19788917, + "approval": 77.6960785, + "support": 1.9788917 + }, + { + "time_hours": 92, + "approval_perbill": 774509805, + "support_perbill": 19505435, + "approval": 77.4509805, + "support": 1.9505435 + }, + { + "time_hours": 93, + "approval_perbill": 772058824, + "support_perbill": 19227725, + "approval": 77.2058824, + "support": 1.9227725 + }, + { + "time_hours": 94, + "approval_perbill": 769607844, + "support_perbill": 18955613, + "approval": 76.9607844, + "support": 1.8955613 + }, + { + "time_hours": 95, + "approval_perbill": 767156863, + "support_perbill": 18688931, + "approval": 76.7156863, + "support": 1.8688931 + }, + { + "time_hours": 96, + "approval_perbill": 764705883, + "support_perbill": 18427518, + "approval": 76.4705883, + "support": 1.8427518 + }, + { + "time_hours": 97, + "approval_perbill": 762254903, + "support_perbill": 18171219, + "approval": 76.2254903, + "support": 1.8171219 + }, + { + "time_hours": 98, + "approval_perbill": 759803923, + "support_perbill": 17919887, + "approval": 75.9803923, + "support": 1.7919887 + }, + { + "time_hours": 99, + "approval_perbill": 757352942, + "support_perbill": 17673377, + "approval": 75.7352942, + "support": 1.7673377 + }, + { + "time_hours": 100, + "approval_perbill": 754901962, + "support_perbill": 17431553, + "approval": 75.4901962, + "support": 1.7431553 + }, + { + "time_hours": 101, + "approval_perbill": 752450981, + "support_perbill": 17194282, + "approval": 75.2450981, + "support": 1.7194282 + }, + { + "time_hours": 102, + "approval_perbill": 750000001, + "support_perbill": 16961437, + "approval": 75.0000001, + "support": 1.6961437 + }, + { + "time_hours": 103, + "approval_perbill": 747549020, + "support_perbill": 16732895, + "approval": 74.754902, + "support": 1.6732895 + }, + { + "time_hours": 104, + "approval_perbill": 745098040, + "support_perbill": 16508538, + "approval": 74.509804, + "support": 1.6508538 + }, + { + "time_hours": 105, + "approval_perbill": 742647059, + "support_perbill": 16288252, + "approval": 74.2647059, + "support": 1.6288252 + }, + { + "time_hours": 106, + "approval_perbill": 740196079, + "support_perbill": 16071927, + "approval": 74.0196079, + "support": 1.6071927 + }, + { + "time_hours": 107, + "approval_perbill": 737745099, + "support_perbill": 15859457, + "approval": 73.7745099, + "support": 1.5859457 + }, + { + "time_hours": 108, + "approval_perbill": 735294118, + "support_perbill": 15650741, + "approval": 73.5294118, + "support": 1.5650741 + }, + { + "time_hours": 109, + "approval_perbill": 732843138, + "support_perbill": 15445679, + "approval": 73.2843138, + "support": 1.5445679 + }, + { + "time_hours": 110, + "approval_perbill": 730392158, + "support_perbill": 15244176, + "approval": 73.0392158, + "support": 1.5244176 + }, + { + "time_hours": 111, + "approval_perbill": 727941178, + "support_perbill": 15046141, + "approval": 72.7941178, + "support": 1.5046141 + }, + { + "time_hours": 112, + "approval_perbill": 725490197, + "support_perbill": 14851485, + "approval": 72.5490197, + "support": 1.4851485 + }, + { + "time_hours": 113, + "approval_perbill": 723039217, + "support_perbill": 14660121, + "approval": 72.3039217, + "support": 1.4660121 + }, + { + "time_hours": 114, + "approval_perbill": 720588236, + "support_perbill": 14471968, + "approval": 72.0588236, + "support": 1.4471968 + }, + { + "time_hours": 115, + "approval_perbill": 718137256, + "support_perbill": 14286945, + "approval": 71.8137256, + "support": 1.4286945 + }, + { + "time_hours": 116, + "approval_perbill": 715686275, + "support_perbill": 14104975, + "approval": 71.5686275, + "support": 1.4104975 + }, + { + "time_hours": 117, + "approval_perbill": 713235295, + "support_perbill": 13925982, + "approval": 71.3235295, + "support": 1.3925982 + }, + { + "time_hours": 118, + "approval_perbill": 710784314, + "support_perbill": 13749894, + "approval": 71.0784314, + "support": 1.3749894 + }, + { + "time_hours": 119, + "approval_perbill": 708333334, + "support_perbill": 13576642, + "approval": 70.8333334, + "support": 1.3576642 + }, + { + "time_hours": 120, + "approval_perbill": 705882353, + "support_perbill": 13406156, + "approval": 70.5882353, + "support": 1.3406156 + }, + { + "time_hours": 121, + "approval_perbill": 703431373, + "support_perbill": 13238372, + "approval": 70.3431373, + "support": 1.3238372 + }, + { + "time_hours": 122, + "approval_perbill": 700980393, + "support_perbill": 13073226, + "approval": 70.0980393, + "support": 1.3073226 + }, + { + "time_hours": 123, + "approval_perbill": 698529413, + "support_perbill": 12910655, + "approval": 69.8529413, + "support": 1.2910655 + }, + { + "time_hours": 124, + "approval_perbill": 696078432, + "support_perbill": 12750601, + "approval": 69.6078432, + "support": 1.2750601 + }, + { + "time_hours": 125, + "approval_perbill": 693627452, + "support_perbill": 12593005, + "approval": 69.3627452, + "support": 1.2593005 + }, + { + "time_hours": 126, + "approval_perbill": 691176471, + "support_perbill": 12437810, + "approval": 69.1176471, + "support": 1.243781 + }, + { + "time_hours": 127, + "approval_perbill": 688725491, + "support_perbill": 12284964, + "approval": 68.8725491, + "support": 1.2284964 + }, + { + "time_hours": 128, + "approval_perbill": 686274511, + "support_perbill": 12134411, + "approval": 68.6274511, + "support": 1.2134411 + }, + { + "time_hours": 129, + "approval_perbill": 683823530, + "support_perbill": 11986103, + "approval": 68.382353, + "support": 1.1986103 + }, + { + "time_hours": 130, + "approval_perbill": 681372550, + "support_perbill": 11839987, + "approval": 68.137255, + "support": 1.1839987 + }, + { + "time_hours": 131, + "approval_perbill": 678921569, + "support_perbill": 11696017, + "approval": 67.8921569, + "support": 1.1696017 + }, + { + "time_hours": 132, + "approval_perbill": 676470589, + "support_perbill": 11554145, + "approval": 67.6470589, + "support": 1.1554145 + }, + { + "time_hours": 133, + "approval_perbill": 674019609, + "support_perbill": 11414326, + "approval": 67.4019609, + "support": 1.1414326 + }, + { + "time_hours": 134, + "approval_perbill": 671568629, + "support_perbill": 11276516, + "approval": 67.1568629, + "support": 1.1276516 + }, + { + "time_hours": 135, + "approval_perbill": 669117648, + "support_perbill": 11140671, + "approval": 66.9117648, + "support": 1.1140671 + }, + { + "time_hours": 136, + "approval_perbill": 666666668, + "support_perbill": 11006750, + "approval": 66.6666668, + "support": 1.100675 + }, + { + "time_hours": 137, + "approval_perbill": 664215687, + "support_perbill": 10874713, + "approval": 66.4215687, + "support": 1.0874713 + }, + { + "time_hours": 138, + "approval_perbill": 661764707, + "support_perbill": 10744519, + "approval": 66.1764707, + "support": 1.0744519 + }, + { + "time_hours": 139, + "approval_perbill": 659313726, + "support_perbill": 10616130, + "approval": 65.9313726, + "support": 1.061613 + }, + { + "time_hours": 140, + "approval_perbill": 656862746, + "support_perbill": 10489510, + "approval": 65.6862746, + "support": 1.048951 + }, + { + "time_hours": 141, + "approval_perbill": 654411765, + "support_perbill": 10364622, + "approval": 65.4411765, + "support": 1.0364622 + }, + { + "time_hours": 142, + "approval_perbill": 651960785, + "support_perbill": 10241430, + "approval": 65.1960785, + "support": 1.024143 + }, + { + "time_hours": 143, + "approval_perbill": 649509804, + "support_perbill": 10119900, + "approval": 64.9509804, + "support": 1.01199 + }, + { + "time_hours": 144, + "approval_perbill": 647058824, + "support_perbill": 10000000, + "approval": 64.7058824, + "support": 1 + }, + { + "time_hours": 145, + "approval_perbill": 644607844, + "support_perbill": 9881695, + "approval": 64.4607844, + "support": 0.9881695 + }, + { + "time_hours": 146, + "approval_perbill": 642156864, + "support_perbill": 9764955, + "approval": 64.2156864, + "support": 0.9764955 + }, + { + "time_hours": 147, + "approval_perbill": 639705883, + "support_perbill": 9649749, + "approval": 63.9705883, + "support": 0.9649749 + }, + { + "time_hours": 148, + "approval_perbill": 637254903, + "support_perbill": 9536047, + "approval": 63.7254903, + "support": 0.9536047 + }, + { + "time_hours": 149, + "approval_perbill": 634803923, + "support_perbill": 9423820, + "approval": 63.4803923, + "support": 0.942382 + }, + { + "time_hours": 150, + "approval_perbill": 632352942, + "support_perbill": 9313038, + "approval": 63.2352942, + "support": 0.9313038 + }, + { + "time_hours": 151, + "approval_perbill": 629901962, + "support_perbill": 9203674, + "approval": 62.9901962, + "support": 0.9203674 + }, + { + "time_hours": 152, + "approval_perbill": 627450981, + "support_perbill": 9095702, + "approval": 62.7450981, + "support": 0.9095702 + }, + { + "time_hours": 153, + "approval_perbill": 625000001, + "support_perbill": 8989095, + "approval": 62.5000001, + "support": 0.8989095 + }, + { + "time_hours": 154, + "approval_perbill": 622549020, + "support_perbill": 8883826, + "approval": 62.254902, + "support": 0.8883826 + }, + { + "time_hours": 155, + "approval_perbill": 620098040, + "support_perbill": 8779872, + "approval": 62.009804, + "support": 0.8779872 + }, + { + "time_hours": 156, + "approval_perbill": 617647059, + "support_perbill": 8677207, + "approval": 61.7647059, + "support": 0.8677207 + }, + { + "time_hours": 157, + "approval_perbill": 615196079, + "support_perbill": 8575808, + "approval": 61.5196079, + "support": 0.8575808 + }, + { + "time_hours": 158, + "approval_perbill": 612745099, + "support_perbill": 8475652, + "approval": 61.2745099, + "support": 0.8475652 + }, + { + "time_hours": 159, + "approval_perbill": 610294119, + "support_perbill": 8376715, + "approval": 61.0294119, + "support": 0.8376715 + }, + { + "time_hours": 160, + "approval_perbill": 607843138, + "support_perbill": 8278976, + "approval": 60.7843138, + "support": 0.8278976 + }, + { + "time_hours": 161, + "approval_perbill": 605392158, + "support_perbill": 8182413, + "approval": 60.5392158, + "support": 0.8182413 + }, + { + "time_hours": 162, + "approval_perbill": 602941177, + "support_perbill": 8087005, + "approval": 60.2941177, + "support": 0.8087005 + }, + { + "time_hours": 163, + "approval_perbill": 600490197, + "support_perbill": 7992731, + "approval": 60.0490197, + "support": 0.7992731 + }, + { + "time_hours": 164, + "approval_perbill": 598039216, + "support_perbill": 7899571, + "approval": 59.8039216, + "support": 0.7899571 + }, + { + "time_hours": 165, + "approval_perbill": 595588236, + "support_perbill": 7807506, + "approval": 59.5588236, + "support": 0.7807506 + }, + { + "time_hours": 166, + "approval_perbill": 593137255, + "support_perbill": 7716516, + "approval": 59.3137255, + "support": 0.7716516 + }, + { + "time_hours": 167, + "approval_perbill": 590686275, + "support_perbill": 7626583, + "approval": 59.0686275, + "support": 0.7626583 + }, + { + "time_hours": 168, + "approval_perbill": 588235295, + "support_perbill": 7537688, + "approval": 58.8235295, + "support": 0.7537688 + }, + { + "time_hours": 169, + "approval_perbill": 585784315, + "support_perbill": 7449814, + "approval": 58.5784315, + "support": 0.7449814 + }, + { + "time_hours": 170, + "approval_perbill": 583333335, + "support_perbill": 7362942, + "approval": 58.3333335, + "support": 0.7362942 + }, + { + "time_hours": 171, + "approval_perbill": 580882354, + "support_perbill": 7277057, + "approval": 58.0882354, + "support": 0.7277057 + }, + { + "time_hours": 172, + "approval_perbill": 578431374, + "support_perbill": 7192141, + "approval": 57.8431374, + "support": 0.7192141 + }, + { + "time_hours": 173, + "approval_perbill": 575980393, + "support_perbill": 7108178, + "approval": 57.5980393, + "support": 0.7108178 + }, + { + "time_hours": 174, + "approval_perbill": 573529413, + "support_perbill": 7025151, + "approval": 57.3529413, + "support": 0.7025151 + }, + { + "time_hours": 175, + "approval_perbill": 571078432, + "support_perbill": 6943047, + "approval": 57.1078432, + "support": 0.6943047 + }, + { + "time_hours": 176, + "approval_perbill": 568627452, + "support_perbill": 6861848, + "approval": 56.8627452, + "support": 0.6861848 + }, + { + "time_hours": 177, + "approval_perbill": 566176471, + "support_perbill": 6781540, + "approval": 56.6176471, + "support": 0.678154 + }, + { + "time_hours": 178, + "approval_perbill": 563725491, + "support_perbill": 6702109, + "approval": 56.3725491, + "support": 0.6702109 + }, + { + "time_hours": 179, + "approval_perbill": 561274510, + "support_perbill": 6623541, + "approval": 56.127451, + "support": 0.6623541 + }, + { + "time_hours": 180, + "approval_perbill": 558823530, + "support_perbill": 6545820, + "approval": 55.882353, + "support": 0.654582 + }, + { + "time_hours": 181, + "approval_perbill": 556372550, + "support_perbill": 6468935, + "approval": 55.637255, + "support": 0.6468935 + }, + { + "time_hours": 182, + "approval_perbill": 553921570, + "support_perbill": 6392871, + "approval": 55.392157, + "support": 0.6392871 + }, + { + "time_hours": 183, + "approval_perbill": 551470589, + "support_perbill": 6317615, + "approval": 55.1470589, + "support": 0.6317615 + }, + { + "time_hours": 184, + "approval_perbill": 549019609, + "support_perbill": 6243154, + "approval": 54.9019609, + "support": 0.6243154 + }, + { + "time_hours": 185, + "approval_perbill": 546568628, + "support_perbill": 6169476, + "approval": 54.6568628, + "support": 0.6169476 + }, + { + "time_hours": 186, + "approval_perbill": 544117648, + "support_perbill": 6096569, + "approval": 54.4117648, + "support": 0.6096569 + }, + { + "time_hours": 187, + "approval_perbill": 541666667, + "support_perbill": 6024421, + "approval": 54.1666667, + "support": 0.6024421 + }, + { + "time_hours": 188, + "approval_perbill": 539215687, + "support_perbill": 5953019, + "approval": 53.9215687, + "support": 0.5953019 + }, + { + "time_hours": 189, + "approval_perbill": 536764706, + "support_perbill": 5882353, + "approval": 53.6764706, + "support": 0.5882353 + }, + { + "time_hours": 190, + "approval_perbill": 534313726, + "support_perbill": 5812410, + "approval": 53.4313726, + "support": 0.581241 + }, + { + "time_hours": 191, + "approval_perbill": 531862746, + "support_perbill": 5743181, + "approval": 53.1862746, + "support": 0.5743181 + }, + { + "time_hours": 192, + "approval_perbill": 529411765, + "support_perbill": 5674653, + "approval": 52.9411765, + "support": 0.5674653 + }, + { + "time_hours": 193, + "approval_perbill": 526960785, + "support_perbill": 5606817, + "approval": 52.6960785, + "support": 0.5606817 + }, + { + "time_hours": 194, + "approval_perbill": 524509805, + "support_perbill": 5539662, + "approval": 52.4509805, + "support": 0.5539662 + }, + { + "time_hours": 195, + "approval_perbill": 522058825, + "support_perbill": 5473177, + "approval": 52.2058825, + "support": 0.5473177 + }, + { + "time_hours": 196, + "approval_perbill": 519607844, + "support_perbill": 5407354, + "approval": 51.9607844, + "support": 0.5407354 + }, + { + "time_hours": 197, + "approval_perbill": 517156864, + "support_perbill": 5342181, + "approval": 51.7156864, + "support": 0.5342181 + }, + { + "time_hours": 198, + "approval_perbill": 514705883, + "support_perbill": 5277650, + "approval": 51.4705883, + "support": 0.527765 + }, + { + "time_hours": 199, + "approval_perbill": 512254903, + "support_perbill": 5213751, + "approval": 51.2254903, + "support": 0.5213751 + }, + { + "time_hours": 200, + "approval_perbill": 509803922, + "support_perbill": 5150474, + "approval": 50.9803922, + "support": 0.5150474 + }, + { + "time_hours": 201, + "approval_perbill": 507352942, + "support_perbill": 5087812, + "approval": 50.7352942, + "support": 0.5087812 + }, + { + "time_hours": 202, + "approval_perbill": 504901961, + "support_perbill": 5025754, + "approval": 50.4901961, + "support": 0.5025754 + }, + { + "time_hours": 203, + "approval_perbill": 502450981, + "support_perbill": 4964292, + "approval": 50.2450981, + "support": 0.4964292 + }, + { + "time_hours": 204, + "approval_perbill": 500000000, + "support_perbill": 4903417, + "approval": 50, + "support": 0.4903417 + }, + { + "time_hours": 205, + "approval_perbill": 500000000, + "support_perbill": 4843122, + "approval": 50, + "support": 0.4843122 + }, + { + "time_hours": 206, + "approval_perbill": 500000000, + "support_perbill": 4783398, + "approval": 50, + "support": 0.4783398 + }, + { + "time_hours": 207, + "approval_perbill": 500000000, + "support_perbill": 4724236, + "approval": 50, + "support": 0.4724236 + }, + { + "time_hours": 208, + "approval_perbill": 500000000, + "support_perbill": 4665630, + "approval": 50, + "support": 0.466563 + }, + { + "time_hours": 209, + "approval_perbill": 500000000, + "support_perbill": 4607570, + "approval": 50, + "support": 0.460757 + }, + { + "time_hours": 210, + "approval_perbill": 500000000, + "support_perbill": 4550050, + "approval": 50, + "support": 0.455005 + }, + { + "time_hours": 211, + "approval_perbill": 500000000, + "support_perbill": 4493062, + "approval": 50, + "support": 0.4493062 + }, + { + "time_hours": 212, + "approval_perbill": 500000000, + "support_perbill": 4436599, + "approval": 50, + "support": 0.4436599 + }, + { + "time_hours": 213, + "approval_perbill": 500000000, + "support_perbill": 4380654, + "approval": 50, + "support": 0.4380654 + }, + { + "time_hours": 214, + "approval_perbill": 500000000, + "support_perbill": 4325218, + "approval": 50, + "support": 0.4325218 + }, + { + "time_hours": 215, + "approval_perbill": 500000000, + "support_perbill": 4270287, + "approval": 50, + "support": 0.4270287 + }, + { + "time_hours": 216, + "approval_perbill": 500000000, + "support_perbill": 4215851, + "approval": 50, + "support": 0.4215851 + }, + { + "time_hours": 217, + "approval_perbill": 500000000, + "support_perbill": 4161906, + "approval": 50, + "support": 0.4161906 + }, + { + "time_hours": 218, + "approval_perbill": 500000000, + "support_perbill": 4108444, + "approval": 50, + "support": 0.4108444 + }, + { + "time_hours": 219, + "approval_perbill": 500000000, + "support_perbill": 4055459, + "approval": 50, + "support": 0.4055459 + }, + { + "time_hours": 220, + "approval_perbill": 500000000, + "support_perbill": 4002944, + "approval": 50, + "support": 0.4002944 + }, + { + "time_hours": 221, + "approval_perbill": 500000000, + "support_perbill": 3950894, + "approval": 50, + "support": 0.3950894 + }, + { + "time_hours": 222, + "approval_perbill": 500000000, + "support_perbill": 3899302, + "approval": 50, + "support": 0.3899302 + }, + { + "time_hours": 223, + "approval_perbill": 500000000, + "support_perbill": 3848162, + "approval": 50, + "support": 0.3848162 + }, + { + "time_hours": 224, + "approval_perbill": 500000000, + "support_perbill": 3797468, + "approval": 50, + "support": 0.3797468 + }, + { + "time_hours": 225, + "approval_perbill": 500000000, + "support_perbill": 3747215, + "approval": 50, + "support": 0.3747215 + }, + { + "time_hours": 226, + "approval_perbill": 500000000, + "support_perbill": 3697396, + "approval": 50, + "support": 0.3697396 + }, + { + "time_hours": 227, + "approval_perbill": 500000000, + "support_perbill": 3648006, + "approval": 50, + "support": 0.3648006 + }, + { + "time_hours": 228, + "approval_perbill": 500000000, + "support_perbill": 3599040, + "approval": 50, + "support": 0.359904 + }, + { + "time_hours": 229, + "approval_perbill": 500000000, + "support_perbill": 3550492, + "approval": 50, + "support": 0.3550492 + }, + { + "time_hours": 230, + "approval_perbill": 500000000, + "support_perbill": 3502357, + "approval": 50, + "support": 0.3502357 + }, + { + "time_hours": 231, + "approval_perbill": 500000000, + "support_perbill": 3454629, + "approval": 50, + "support": 0.3454629 + }, + { + "time_hours": 232, + "approval_perbill": 500000000, + "support_perbill": 3407304, + "approval": 50, + "support": 0.3407304 + }, + { + "time_hours": 233, + "approval_perbill": 500000000, + "support_perbill": 3360376, + "approval": 50, + "support": 0.3360376 + }, + { + "time_hours": 234, + "approval_perbill": 500000000, + "support_perbill": 3313840, + "approval": 50, + "support": 0.331384 + }, + { + "time_hours": 235, + "approval_perbill": 500000000, + "support_perbill": 3267692, + "approval": 50, + "support": 0.3267692 + }, + { + "time_hours": 236, + "approval_perbill": 500000000, + "support_perbill": 3221926, + "approval": 50, + "support": 0.3221926 + }, + { + "time_hours": 237, + "approval_perbill": 500000000, + "support_perbill": 3176538, + "approval": 50, + "support": 0.3176538 + }, + { + "time_hours": 238, + "approval_perbill": 500000000, + "support_perbill": 3131524, + "approval": 50, + "support": 0.3131524 + }, + { + "time_hours": 239, + "approval_perbill": 500000000, + "support_perbill": 3086878, + "approval": 50, + "support": 0.3086878 + }, + { + "time_hours": 240, + "approval_perbill": 500000000, + "support_perbill": 3042596, + "approval": 50, + "support": 0.3042596 + }, + { + "time_hours": 241, + "approval_perbill": 500000000, + "support_perbill": 2998674, + "approval": 50, + "support": 0.2998674 + }, + { + "time_hours": 242, + "approval_perbill": 500000000, + "support_perbill": 2955107, + "approval": 50, + "support": 0.2955107 + }, + { + "time_hours": 243, + "approval_perbill": 500000000, + "support_perbill": 2911892, + "approval": 50, + "support": 0.2911892 + }, + { + "time_hours": 244, + "approval_perbill": 500000000, + "support_perbill": 2869023, + "approval": 50, + "support": 0.2869023 + }, + { + "time_hours": 245, + "approval_perbill": 500000000, + "support_perbill": 2826496, + "approval": 50, + "support": 0.2826496 + }, + { + "time_hours": 246, + "approval_perbill": 500000000, + "support_perbill": 2784309, + "approval": 50, + "support": 0.2784309 + }, + { + "time_hours": 247, + "approval_perbill": 500000000, + "support_perbill": 2742455, + "approval": 50, + "support": 0.2742455 + }, + { + "time_hours": 248, + "approval_perbill": 500000000, + "support_perbill": 2700933, + "approval": 50, + "support": 0.2700933 + }, + { + "time_hours": 249, + "approval_perbill": 500000000, + "support_perbill": 2659737, + "approval": 50, + "support": 0.2659737 + }, + { + "time_hours": 250, + "approval_perbill": 500000000, + "support_perbill": 2618864, + "approval": 50, + "support": 0.2618864 + }, + { + "time_hours": 251, + "approval_perbill": 500000000, + "support_perbill": 2578310, + "approval": 50, + "support": 0.257831 + }, + { + "time_hours": 252, + "approval_perbill": 500000000, + "support_perbill": 2538071, + "approval": 50, + "support": 0.2538071 + }, + { + "time_hours": 253, + "approval_perbill": 500000000, + "support_perbill": 2498144, + "approval": 50, + "support": 0.2498144 + }, + { + "time_hours": 254, + "approval_perbill": 500000000, + "support_perbill": 2458525, + "approval": 50, + "support": 0.2458525 + }, + { + "time_hours": 255, + "approval_perbill": 500000000, + "support_perbill": 2419210, + "approval": 50, + "support": 0.241921 + }, + { + "time_hours": 256, + "approval_perbill": 500000000, + "support_perbill": 2380197, + "approval": 50, + "support": 0.2380197 + }, + { + "time_hours": 257, + "approval_perbill": 500000000, + "support_perbill": 2341481, + "approval": 50, + "support": 0.2341481 + }, + { + "time_hours": 258, + "approval_perbill": 500000000, + "support_perbill": 2303059, + "approval": 50, + "support": 0.2303059 + }, + { + "time_hours": 259, + "approval_perbill": 500000000, + "support_perbill": 2264928, + "approval": 50, + "support": 0.2264928 + }, + { + "time_hours": 260, + "approval_perbill": 500000000, + "support_perbill": 2227084, + "approval": 50, + "support": 0.2227084 + }, + { + "time_hours": 261, + "approval_perbill": 500000000, + "support_perbill": 2189525, + "approval": 50, + "support": 0.2189525 + }, + { + "time_hours": 262, + "approval_perbill": 500000000, + "support_perbill": 2152247, + "approval": 50, + "support": 0.2152247 + }, + { + "time_hours": 263, + "approval_perbill": 500000000, + "support_perbill": 2115247, + "approval": 50, + "support": 0.2115247 + }, + { + "time_hours": 264, + "approval_perbill": 500000000, + "support_perbill": 2078522, + "approval": 50, + "support": 0.2078522 + }, + { + "time_hours": 265, + "approval_perbill": 500000000, + "support_perbill": 2042068, + "approval": 50, + "support": 0.2042068 + }, + { + "time_hours": 266, + "approval_perbill": 500000000, + "support_perbill": 2005884, + "approval": 50, + "support": 0.2005884 + }, + { + "time_hours": 267, + "approval_perbill": 500000000, + "support_perbill": 1969965, + "approval": 50, + "support": 0.1969965 + }, + { + "time_hours": 268, + "approval_perbill": 500000000, + "support_perbill": 1934309, + "approval": 50, + "support": 0.1934309 + }, + { + "time_hours": 269, + "approval_perbill": 500000000, + "support_perbill": 1898913, + "approval": 50, + "support": 0.1898913 + }, + { + "time_hours": 270, + "approval_perbill": 500000000, + "support_perbill": 1863775, + "approval": 50, + "support": 0.1863775 + }, + { + "time_hours": 271, + "approval_perbill": 500000000, + "support_perbill": 1828891, + "approval": 50, + "support": 0.1828891 + }, + { + "time_hours": 272, + "approval_perbill": 500000000, + "support_perbill": 1794258, + "approval": 50, + "support": 0.1794258 + }, + { + "time_hours": 273, + "approval_perbill": 500000000, + "support_perbill": 1759875, + "approval": 50, + "support": 0.1759875 + }, + { + "time_hours": 274, + "approval_perbill": 500000000, + "support_perbill": 1725737, + "approval": 50, + "support": 0.1725737 + }, + { + "time_hours": 275, + "approval_perbill": 500000000, + "support_perbill": 1691844, + "approval": 50, + "support": 0.1691844 + }, + { + "time_hours": 276, + "approval_perbill": 500000000, + "support_perbill": 1658191, + "approval": 50, + "support": 0.1658191 + }, + { + "time_hours": 277, + "approval_perbill": 500000000, + "support_perbill": 1624777, + "approval": 50, + "support": 0.1624777 + }, + { + "time_hours": 278, + "approval_perbill": 500000000, + "support_perbill": 1591599, + "approval": 50, + "support": 0.1591599 + }, + { + "time_hours": 279, + "approval_perbill": 500000000, + "support_perbill": 1558654, + "approval": 50, + "support": 0.1558654 + }, + { + "time_hours": 280, + "approval_perbill": 500000000, + "support_perbill": 1525941, + "approval": 50, + "support": 0.1525941 + }, + { + "time_hours": 281, + "approval_perbill": 500000000, + "support_perbill": 1493456, + "approval": 50, + "support": 0.1493456 + }, + { + "time_hours": 282, + "approval_perbill": 500000000, + "support_perbill": 1461197, + "approval": 50, + "support": 0.1461197 + }, + { + "time_hours": 283, + "approval_perbill": 500000000, + "support_perbill": 1429162, + "approval": 50, + "support": 0.1429162 + }, + { + "time_hours": 284, + "approval_perbill": 500000000, + "support_perbill": 1397348, + "approval": 50, + "support": 0.1397348 + }, + { + "time_hours": 285, + "approval_perbill": 500000000, + "support_perbill": 1365754, + "approval": 50, + "support": 0.1365754 + }, + { + "time_hours": 286, + "approval_perbill": 500000000, + "support_perbill": 1334377, + "approval": 50, + "support": 0.1334377 + }, + { + "time_hours": 287, + "approval_perbill": 500000000, + "support_perbill": 1303214, + "approval": 50, + "support": 0.1303214 + }, + { + "time_hours": 288, + "approval_perbill": 500000000, + "support_perbill": 1272264, + "approval": 50, + "support": 0.1272264 + }, + { + "time_hours": 289, + "approval_perbill": 500000000, + "support_perbill": 1241525, + "approval": 50, + "support": 0.1241525 + }, + { + "time_hours": 290, + "approval_perbill": 500000000, + "support_perbill": 1210994, + "approval": 50, + "support": 0.1210994 + }, + { + "time_hours": 291, + "approval_perbill": 500000000, + "support_perbill": 1180668, + "approval": 50, + "support": 0.1180668 + }, + { + "time_hours": 292, + "approval_perbill": 500000000, + "support_perbill": 1150547, + "approval": 50, + "support": 0.1150547 + }, + { + "time_hours": 293, + "approval_perbill": 500000000, + "support_perbill": 1120628, + "approval": 50, + "support": 0.1120628 + }, + { + "time_hours": 294, + "approval_perbill": 500000000, + "support_perbill": 1090909, + "approval": 50, + "support": 0.1090909 + }, + { + "time_hours": 295, + "approval_perbill": 500000000, + "support_perbill": 1061388, + "approval": 50, + "support": 0.1061388 + }, + { + "time_hours": 296, + "approval_perbill": 500000000, + "support_perbill": 1032063, + "approval": 50, + "support": 0.1032063 + }, + { + "time_hours": 297, + "approval_perbill": 500000000, + "support_perbill": 1002932, + "approval": 50, + "support": 0.1002932 + }, + { + "time_hours": 298, + "approval_perbill": 500000000, + "support_perbill": 973993, + "approval": 50, + "support": 0.0973993 + }, + { + "time_hours": 299, + "approval_perbill": 500000000, + "support_perbill": 945244, + "approval": 50, + "support": 0.0945244 + }, + { + "time_hours": 300, + "approval_perbill": 500000000, + "support_perbill": 916684, + "approval": 50, + "support": 0.0916684 + }, + { + "time_hours": 301, + "approval_perbill": 500000000, + "support_perbill": 888310, + "approval": 50, + "support": 0.088831 + }, + { + "time_hours": 302, + "approval_perbill": 500000000, + "support_perbill": 860121, + "approval": 50, + "support": 0.0860121 + }, + { + "time_hours": 303, + "approval_perbill": 500000000, + "support_perbill": 832114, + "approval": 50, + "support": 0.0832114 + }, + { + "time_hours": 304, + "approval_perbill": 500000000, + "support_perbill": 804289, + "approval": 50, + "support": 0.0804289 + }, + { + "time_hours": 305, + "approval_perbill": 500000000, + "support_perbill": 776644, + "approval": 50, + "support": 0.0776644 + }, + { + "time_hours": 306, + "approval_perbill": 500000000, + "support_perbill": 749176, + "approval": 50, + "support": 0.0749176 + }, + { + "time_hours": 307, + "approval_perbill": 500000000, + "support_perbill": 721884, + "approval": 50, + "support": 0.0721884 + }, + { + "time_hours": 308, + "approval_perbill": 500000000, + "support_perbill": 694766, + "approval": 50, + "support": 0.0694766 + }, + { + "time_hours": 309, + "approval_perbill": 500000000, + "support_perbill": 667821, + "approval": 50, + "support": 0.0667821 + }, + { + "time_hours": 310, + "approval_perbill": 500000000, + "support_perbill": 641047, + "approval": 50, + "support": 0.0641047 + }, + { + "time_hours": 311, + "approval_perbill": 500000000, + "support_perbill": 614442, + "approval": 50, + "support": 0.0614442 + }, + { + "time_hours": 312, + "approval_perbill": 500000000, + "support_perbill": 588005, + "approval": 50, + "support": 0.0588005 + }, + { + "time_hours": 313, + "approval_perbill": 500000000, + "support_perbill": 561734, + "approval": 50, + "support": 0.0561734 + }, + { + "time_hours": 314, + "approval_perbill": 500000000, + "support_perbill": 535627, + "approval": 50, + "support": 0.0535627 + }, + { + "time_hours": 315, + "approval_perbill": 500000000, + "support_perbill": 509684, + "approval": 50, + "support": 0.0509684 + }, + { + "time_hours": 316, + "approval_perbill": 500000000, + "support_perbill": 483902, + "approval": 50, + "support": 0.0483902 + }, + { + "time_hours": 317, + "approval_perbill": 500000000, + "support_perbill": 458280, + "approval": 50, + "support": 0.045828 + }, + { + "time_hours": 318, + "approval_perbill": 500000000, + "support_perbill": 432817, + "approval": 50, + "support": 0.0432817 + }, + { + "time_hours": 319, + "approval_perbill": 500000000, + "support_perbill": 407511, + "approval": 50, + "support": 0.0407511 + }, + { + "time_hours": 320, + "approval_perbill": 500000000, + "support_perbill": 382360, + "approval": 50, + "support": 0.038236 + }, + { + "time_hours": 321, + "approval_perbill": 500000000, + "support_perbill": 357364, + "approval": 50, + "support": 0.0357364 + }, + { + "time_hours": 322, + "approval_perbill": 500000000, + "support_perbill": 332520, + "approval": 50, + "support": 0.033252 + }, + { + "time_hours": 323, + "approval_perbill": 500000000, + "support_perbill": 307828, + "approval": 50, + "support": 0.0307828 + }, + { + "time_hours": 324, + "approval_perbill": 500000000, + "support_perbill": 283286, + "approval": 50, + "support": 0.0283286 + }, + { + "time_hours": 325, + "approval_perbill": 500000000, + "support_perbill": 258892, + "approval": 50, + "support": 0.0258892 + }, + { + "time_hours": 326, + "approval_perbill": 500000000, + "support_perbill": 234646, + "approval": 50, + "support": 0.0234646 + }, + { + "time_hours": 327, + "approval_perbill": 500000000, + "support_perbill": 210546, + "approval": 50, + "support": 0.0210546 + }, + { + "time_hours": 328, + "approval_perbill": 500000000, + "support_perbill": 186590, + "approval": 50, + "support": 0.018659 + }, + { + "time_hours": 329, + "approval_perbill": 500000000, + "support_perbill": 162778, + "approval": 50, + "support": 0.0162778 + }, + { + "time_hours": 330, + "approval_perbill": 500000000, + "support_perbill": 139108, + "approval": 50, + "support": 0.0139108 + }, + { + "time_hours": 331, + "approval_perbill": 500000000, + "support_perbill": 115578, + "approval": 50, + "support": 0.0115578 + }, + { + "time_hours": 332, + "approval_perbill": 500000000, + "support_perbill": 92188, + "approval": 50, + "support": 0.0092188 + }, + { + "time_hours": 333, + "approval_perbill": 500000000, + "support_perbill": 68937, + "approval": 50, + "support": 0.0068937 + }, + { + "time_hours": 334, + "approval_perbill": 500000000, + "support_perbill": 45822, + "approval": 50, + "support": 0.0045822 + }, + { + "time_hours": 335, + "approval_perbill": 500000000, + "support_perbill": 22844, + "approval": 50, + "support": 0.0022844 + }, + { + "time_hours": 336, + "approval_perbill": 500000000, + "support_perbill": 0, + "approval": 50, + "support": 0 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/kusama/opengov_small_tipper.json b/components/utilities/charts_data/kusama/opengov_small_tipper.json new file mode 100644 index 000000000000..55397e1afeea --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_small_tipper.json @@ -0,0 +1,2361 @@ +[ + { + "time_hours": 0, + "approval_perbill": 1000000000, + "support_perbill": 500000080, + "approval": 100, + "support": 50.000008 + }, + { + "time_hours": 1, + "approval_perbill": 995833334, + "support_perbill": 259488839, + "approval": 99.5833334, + "support": 25.9488839 + }, + { + "time_hours": 2, + "approval_perbill": 991666668, + "support_perbill": 174869164, + "approval": 99.1666668, + "support": 17.4869164 + }, + { + "time_hours": 3, + "approval_perbill": 987500001, + "support_perbill": 131672630, + "approval": 98.7500001, + "support": 13.167263 + }, + { + "time_hours": 4, + "approval_perbill": 983333335, + "support_perbill": 105463816, + "approval": 98.3333335, + "support": 10.5463816 + }, + { + "time_hours": 5, + "approval_perbill": 979166668, + "support_perbill": 87868351, + "approval": 97.9166668, + "support": 8.7868351 + }, + { + "time_hours": 6, + "approval_perbill": 975000002, + "support_perbill": 75239418, + "approval": 97.5000002, + "support": 7.5239418 + }, + { + "time_hours": 7, + "approval_perbill": 970833334, + "support_perbill": 65734281, + "approval": 97.0833334, + "support": 6.5734281 + }, + { + "time_hours": 8, + "approval_perbill": 966666668, + "support_perbill": 58321494, + "approval": 96.6666668, + "support": 5.8321494 + }, + { + "time_hours": 9, + "approval_perbill": 962500001, + "support_perbill": 52378676, + "approval": 96.2500001, + "support": 5.2378676 + }, + { + "time_hours": 10, + "approval_perbill": 958333335, + "support_perbill": 47508027, + "approval": 95.8333335, + "support": 4.7508027 + }, + { + "time_hours": 11, + "approval_perbill": 954166667, + "support_perbill": 43443400, + "approval": 95.4166667, + "support": 4.34434 + }, + { + "time_hours": 12, + "approval_perbill": 950000001, + "support_perbill": 40000010, + "approval": 95.0000001, + "support": 4.000001 + }, + { + "time_hours": 13, + "approval_perbill": 945833334, + "support_perbill": 37045541, + "approval": 94.5833334, + "support": 3.7045541 + }, + { + "time_hours": 14, + "approval_perbill": 941666668, + "support_perbill": 34482767, + "approval": 94.1666668, + "support": 3.4482767 + }, + { + "time_hours": 15, + "approval_perbill": 937500001, + "support_perbill": 32238633, + "approval": 93.7500001, + "support": 3.2238633 + }, + { + "time_hours": 16, + "approval_perbill": 933333335, + "support_perbill": 30257193, + "approval": 93.3333335, + "support": 3.0257193 + }, + { + "time_hours": 17, + "approval_perbill": 929166667, + "support_perbill": 28494870, + "approval": 92.9166667, + "support": 2.849487 + }, + { + "time_hours": 18, + "approval_perbill": 925000001, + "support_perbill": 26917223, + "approval": 92.5000001, + "support": 2.6917223 + }, + { + "time_hours": 19, + "approval_perbill": 920833334, + "support_perbill": 25496668, + "approval": 92.0833334, + "support": 2.5496668 + }, + { + "time_hours": 20, + "approval_perbill": 916666668, + "support_perbill": 24210854, + "approval": 91.6666668, + "support": 2.4210854 + }, + { + "time_hours": 21, + "approval_perbill": 912500000, + "support_perbill": 23041480, + "approval": 91.25, + "support": 2.304148 + }, + { + "time_hours": 22, + "approval_perbill": 908333334, + "support_perbill": 21973413, + "approval": 90.8333334, + "support": 2.1973413 + }, + { + "time_hours": 23, + "approval_perbill": 904166668, + "support_perbill": 20994035, + "approval": 90.4166668, + "support": 2.0994035 + }, + { + "time_hours": 24, + "approval_perbill": 900000001, + "support_perbill": 20092740, + "approval": 90.0000001, + "support": 2.009274 + }, + { + "time_hours": 25, + "approval_perbill": 895833335, + "support_perbill": 19260548, + "approval": 89.5833335, + "support": 1.9260548 + }, + { + "time_hours": 26, + "approval_perbill": 891666668, + "support_perbill": 18489805, + "approval": 89.1666668, + "support": 1.8489805 + }, + { + "time_hours": 27, + "approval_perbill": 887500002, + "support_perbill": 17773947, + "approval": 88.7500002, + "support": 1.7773947 + }, + { + "time_hours": 28, + "approval_perbill": 883333334, + "support_perbill": 17107313, + "approval": 88.3333334, + "support": 1.7107313 + }, + { + "time_hours": 29, + "approval_perbill": 879166668, + "support_perbill": 16484995, + "approval": 87.9166668, + "support": 1.6484995 + }, + { + "time_hours": 30, + "approval_perbill": 875000001, + "support_perbill": 15902716, + "approval": 87.5000001, + "support": 1.5902716 + }, + { + "time_hours": 31, + "approval_perbill": 870833335, + "support_perbill": 15356733, + "approval": 87.0833335, + "support": 1.5356733 + }, + { + "time_hours": 32, + "approval_perbill": 866666667, + "support_perbill": 14843753, + "approval": 86.6666667, + "support": 1.4843753 + }, + { + "time_hours": 33, + "approval_perbill": 862500001, + "support_perbill": 14360873, + "approval": 86.2500001, + "support": 1.4360873 + }, + { + "time_hours": 34, + "approval_perbill": 858333334, + "support_perbill": 13905519, + "approval": 85.8333334, + "support": 1.3905519 + }, + { + "time_hours": 35, + "approval_perbill": 854166668, + "support_perbill": 13475403, + "approval": 85.4166668, + "support": 1.3475403 + }, + { + "time_hours": 36, + "approval_perbill": 850000001, + "support_perbill": 13068482, + "approval": 85.0000001, + "support": 1.3068482 + }, + { + "time_hours": 37, + "approval_perbill": 845833335, + "support_perbill": 12682930, + "approval": 84.5833335, + "support": 1.268293 + }, + { + "time_hours": 38, + "approval_perbill": 841666667, + "support_perbill": 12317106, + "approval": 84.1666667, + "support": 1.2317106 + }, + { + "time_hours": 39, + "approval_perbill": 837500001, + "support_perbill": 11969535, + "approval": 83.7500001, + "support": 1.1969535 + }, + { + "time_hours": 40, + "approval_perbill": 833333334, + "support_perbill": 11638883, + "approval": 83.3333334, + "support": 1.1638883 + }, + { + "time_hours": 41, + "approval_perbill": 829166668, + "support_perbill": 11323944, + "approval": 82.9166668, + "support": 1.1323944 + }, + { + "time_hours": 42, + "approval_perbill": 825000000, + "support_perbill": 11023624, + "approval": 82.5, + "support": 1.1023624 + }, + { + "time_hours": 43, + "approval_perbill": 820833334, + "support_perbill": 10736929, + "approval": 82.0833334, + "support": 1.0736929 + }, + { + "time_hours": 44, + "approval_perbill": 816666668, + "support_perbill": 10462952, + "approval": 81.6666668, + "support": 1.0462952 + }, + { + "time_hours": 45, + "approval_perbill": 812500001, + "support_perbill": 10200864, + "approval": 81.2500001, + "support": 1.0200864 + }, + { + "time_hours": 46, + "approval_perbill": 808333335, + "support_perbill": 9949909, + "approval": 80.8333335, + "support": 0.9949909 + }, + { + "time_hours": 47, + "approval_perbill": 804166668, + "support_perbill": 9709392, + "approval": 80.4166668, + "support": 0.9709392 + }, + { + "time_hours": 48, + "approval_perbill": 800000002, + "support_perbill": 9478675, + "approval": 80.0000002, + "support": 0.9478675 + }, + { + "time_hours": 49, + "approval_perbill": 795833334, + "support_perbill": 9257171, + "approval": 79.5833334, + "support": 0.9257171 + }, + { + "time_hours": 50, + "approval_perbill": 791666668, + "support_perbill": 9044338, + "approval": 79.1666668, + "support": 0.9044338 + }, + { + "time_hours": 51, + "approval_perbill": 787500001, + "support_perbill": 8839678, + "approval": 78.7500001, + "support": 0.8839678 + }, + { + "time_hours": 52, + "approval_perbill": 783333335, + "support_perbill": 8642729, + "approval": 78.3333335, + "support": 0.8642729 + }, + { + "time_hours": 53, + "approval_perbill": 779166667, + "support_perbill": 8453062, + "approval": 77.9166667, + "support": 0.8453062 + }, + { + "time_hours": 54, + "approval_perbill": 775000001, + "support_perbill": 8270281, + "approval": 77.5000001, + "support": 0.8270281 + }, + { + "time_hours": 55, + "approval_perbill": 770833334, + "support_perbill": 8094019, + "approval": 77.0833334, + "support": 0.8094019 + }, + { + "time_hours": 56, + "approval_perbill": 766666668, + "support_perbill": 7923932, + "approval": 76.6666668, + "support": 0.7923932 + }, + { + "time_hours": 57, + "approval_perbill": 762500001, + "support_perbill": 7759701, + "approval": 76.2500001, + "support": 0.7759701 + }, + { + "time_hours": 58, + "approval_perbill": 758333335, + "support_perbill": 7601030, + "approval": 75.8333335, + "support": 0.760103 + }, + { + "time_hours": 59, + "approval_perbill": 754166667, + "support_perbill": 7447639, + "approval": 75.4166667, + "support": 0.7447639 + }, + { + "time_hours": 60, + "approval_perbill": 750000001, + "support_perbill": 7299272, + "approval": 75.0000001, + "support": 0.7299272 + }, + { + "time_hours": 61, + "approval_perbill": 745833334, + "support_perbill": 7155683, + "approval": 74.5833334, + "support": 0.7155683 + }, + { + "time_hours": 62, + "approval_perbill": 741666668, + "support_perbill": 7016647, + "approval": 74.1666668, + "support": 0.7016647 + }, + { + "time_hours": 63, + "approval_perbill": 737500000, + "support_perbill": 6881949, + "approval": 73.75, + "support": 0.6881949 + }, + { + "time_hours": 64, + "approval_perbill": 733333334, + "support_perbill": 6751391, + "approval": 73.3333334, + "support": 0.6751391 + }, + { + "time_hours": 65, + "approval_perbill": 729166668, + "support_perbill": 6624784, + "approval": 72.9166668, + "support": 0.6624784 + }, + { + "time_hours": 66, + "approval_perbill": 725000001, + "support_perbill": 6501952, + "approval": 72.5000001, + "support": 0.6501952 + }, + { + "time_hours": 67, + "approval_perbill": 720833335, + "support_perbill": 6382728, + "approval": 72.0833335, + "support": 0.6382728 + }, + { + "time_hours": 68, + "approval_perbill": 716666668, + "support_perbill": 6266955, + "approval": 71.6666668, + "support": 0.6266955 + }, + { + "time_hours": 69, + "approval_perbill": 712500002, + "support_perbill": 6154486, + "approval": 71.2500002, + "support": 0.6154486 + }, + { + "time_hours": 70, + "approval_perbill": 708333334, + "support_perbill": 6045181, + "approval": 70.8333334, + "support": 0.6045181 + }, + { + "time_hours": 71, + "approval_perbill": 704166668, + "support_perbill": 5938909, + "approval": 70.4166668, + "support": 0.5938909 + }, + { + "time_hours": 72, + "approval_perbill": 700000001, + "support_perbill": 5835545, + "approval": 70.0000001, + "support": 0.5835545 + }, + { + "time_hours": 73, + "approval_perbill": 695833335, + "support_perbill": 5734971, + "approval": 69.5833335, + "support": 0.5734971 + }, + { + "time_hours": 74, + "approval_perbill": 691666667, + "support_perbill": 5637077, + "approval": 69.1666667, + "support": 0.5637077 + }, + { + "time_hours": 75, + "approval_perbill": 687500001, + "support_perbill": 5541755, + "approval": 68.7500001, + "support": 0.5541755 + }, + { + "time_hours": 76, + "approval_perbill": 683333334, + "support_perbill": 5448907, + "approval": 68.3333334, + "support": 0.5448907 + }, + { + "time_hours": 77, + "approval_perbill": 679166668, + "support_perbill": 5358437, + "approval": 67.9166668, + "support": 0.5358437 + }, + { + "time_hours": 78, + "approval_perbill": 675000001, + "support_perbill": 5270255, + "approval": 67.5000001, + "support": 0.5270255 + }, + { + "time_hours": 79, + "approval_perbill": 670833335, + "support_perbill": 5184275, + "approval": 67.0833335, + "support": 0.5184275 + }, + { + "time_hours": 80, + "approval_perbill": 666666667, + "support_perbill": 5100415, + "approval": 66.6666667, + "support": 0.5100415 + }, + { + "time_hours": 81, + "approval_perbill": 662500001, + "support_perbill": 5018599, + "approval": 66.2500001, + "support": 0.5018599 + }, + { + "time_hours": 82, + "approval_perbill": 658333334, + "support_perbill": 4938753, + "approval": 65.8333334, + "support": 0.4938753 + }, + { + "time_hours": 83, + "approval_perbill": 654166668, + "support_perbill": 4860805, + "approval": 65.4166668, + "support": 0.4860805 + }, + { + "time_hours": 84, + "approval_perbill": 650000000, + "support_perbill": 4784690, + "approval": 65, + "support": 0.478469 + }, + { + "time_hours": 85, + "approval_perbill": 645833334, + "support_perbill": 4710343, + "approval": 64.5833334, + "support": 0.4710343 + }, + { + "time_hours": 86, + "approval_perbill": 641666668, + "support_perbill": 4637704, + "approval": 64.1666668, + "support": 0.4637704 + }, + { + "time_hours": 87, + "approval_perbill": 637500001, + "support_perbill": 4566713, + "approval": 63.7500001, + "support": 0.4566713 + }, + { + "time_hours": 88, + "approval_perbill": 633333335, + "support_perbill": 4497317, + "approval": 63.3333335, + "support": 0.4497317 + }, + { + "time_hours": 89, + "approval_perbill": 629166668, + "support_perbill": 4429461, + "approval": 62.9166668, + "support": 0.4429461 + }, + { + "time_hours": 90, + "approval_perbill": 625000002, + "support_perbill": 4363095, + "approval": 62.5000002, + "support": 0.4363095 + }, + { + "time_hours": 91, + "approval_perbill": 620833334, + "support_perbill": 4298171, + "approval": 62.0833334, + "support": 0.4298171 + }, + { + "time_hours": 92, + "approval_perbill": 616666668, + "support_perbill": 4234642, + "approval": 61.6666668, + "support": 0.4234642 + }, + { + "time_hours": 93, + "approval_perbill": 612500001, + "support_perbill": 4172462, + "approval": 61.2500001, + "support": 0.4172462 + }, + { + "time_hours": 94, + "approval_perbill": 608333335, + "support_perbill": 4111591, + "approval": 60.8333335, + "support": 0.4111591 + }, + { + "time_hours": 95, + "approval_perbill": 604166667, + "support_perbill": 4051987, + "approval": 60.4166667, + "support": 0.4051987 + }, + { + "time_hours": 96, + "approval_perbill": 600000001, + "support_perbill": 3993611, + "approval": 60.0000001, + "support": 0.3993611 + }, + { + "time_hours": 97, + "approval_perbill": 595833334, + "support_perbill": 3936425, + "approval": 59.5833334, + "support": 0.3936425 + }, + { + "time_hours": 98, + "approval_perbill": 591666668, + "support_perbill": 3880393, + "approval": 59.1666668, + "support": 0.3880393 + }, + { + "time_hours": 99, + "approval_perbill": 587500001, + "support_perbill": 3825481, + "approval": 58.7500001, + "support": 0.3825481 + }, + { + "time_hours": 100, + "approval_perbill": 583333335, + "support_perbill": 3771656, + "approval": 58.3333335, + "support": 0.3771656 + }, + { + "time_hours": 101, + "approval_perbill": 579166667, + "support_perbill": 3718885, + "approval": 57.9166667, + "support": 0.3718885 + }, + { + "time_hours": 102, + "approval_perbill": 575000001, + "support_perbill": 3667137, + "approval": 57.5000001, + "support": 0.3667137 + }, + { + "time_hours": 103, + "approval_perbill": 570833334, + "support_perbill": 3616385, + "approval": 57.0833334, + "support": 0.3616385 + }, + { + "time_hours": 104, + "approval_perbill": 566666668, + "support_perbill": 3566598, + "approval": 56.6666668, + "support": 0.3566598 + }, + { + "time_hours": 105, + "approval_perbill": 562500000, + "support_perbill": 3517749, + "approval": 56.25, + "support": 0.3517749 + }, + { + "time_hours": 106, + "approval_perbill": 558333334, + "support_perbill": 3469813, + "approval": 55.8333334, + "support": 0.3469813 + }, + { + "time_hours": 107, + "approval_perbill": 554166668, + "support_perbill": 3422764, + "approval": 55.4166668, + "support": 0.3422764 + }, + { + "time_hours": 108, + "approval_perbill": 550000001, + "support_perbill": 3376578, + "approval": 55.0000001, + "support": 0.3376578 + }, + { + "time_hours": 109, + "approval_perbill": 545833335, + "support_perbill": 3331230, + "approval": 54.5833335, + "support": 0.333123 + }, + { + "time_hours": 110, + "approval_perbill": 541666668, + "support_perbill": 3286700, + "approval": 54.1666668, + "support": 0.32867 + }, + { + "time_hours": 111, + "approval_perbill": 537500002, + "support_perbill": 3242963, + "approval": 53.7500002, + "support": 0.3242963 + }, + { + "time_hours": 112, + "approval_perbill": 533333334, + "support_perbill": 3200001, + "approval": 53.3333334, + "support": 0.3200001 + }, + { + "time_hours": 113, + "approval_perbill": 529166668, + "support_perbill": 3157791, + "approval": 52.9166668, + "support": 0.3157791 + }, + { + "time_hours": 114, + "approval_perbill": 525000001, + "support_perbill": 3116315, + "approval": 52.5000001, + "support": 0.3116315 + }, + { + "time_hours": 115, + "approval_perbill": 520833335, + "support_perbill": 3075553, + "approval": 52.0833335, + "support": 0.3075553 + }, + { + "time_hours": 116, + "approval_perbill": 516666667, + "support_perbill": 3035488, + "approval": 51.6666667, + "support": 0.3035488 + }, + { + "time_hours": 117, + "approval_perbill": 512500001, + "support_perbill": 2996101, + "approval": 51.2500001, + "support": 0.2996101 + }, + { + "time_hours": 118, + "approval_perbill": 508333334, + "support_perbill": 2957376, + "approval": 50.8333334, + "support": 0.2957376 + }, + { + "time_hours": 119, + "approval_perbill": 504166668, + "support_perbill": 2919296, + "approval": 50.4166668, + "support": 0.2919296 + }, + { + "time_hours": 120, + "approval_perbill": 500000000, + "support_perbill": 2881845, + "approval": 50, + "support": 0.2881845 + }, + { + "time_hours": 121, + "approval_perbill": 500000000, + "support_perbill": 2845007, + "approval": 50, + "support": 0.2845007 + }, + { + "time_hours": 122, + "approval_perbill": 500000000, + "support_perbill": 2808768, + "approval": 50, + "support": 0.2808768 + }, + { + "time_hours": 123, + "approval_perbill": 500000000, + "support_perbill": 2773113, + "approval": 50, + "support": 0.2773113 + }, + { + "time_hours": 124, + "approval_perbill": 500000000, + "support_perbill": 2738028, + "approval": 50, + "support": 0.2738028 + }, + { + "time_hours": 125, + "approval_perbill": 500000000, + "support_perbill": 2703500, + "approval": 50, + "support": 0.27035 + }, + { + "time_hours": 126, + "approval_perbill": 500000000, + "support_perbill": 2669515, + "approval": 50, + "support": 0.2669515 + }, + { + "time_hours": 127, + "approval_perbill": 500000000, + "support_perbill": 2636060, + "approval": 50, + "support": 0.263606 + }, + { + "time_hours": 128, + "approval_perbill": 500000000, + "support_perbill": 2603124, + "approval": 50, + "support": 0.2603124 + }, + { + "time_hours": 129, + "approval_perbill": 500000000, + "support_perbill": 2570694, + "approval": 50, + "support": 0.2570694 + }, + { + "time_hours": 130, + "approval_perbill": 500000000, + "support_perbill": 2538760, + "approval": 50, + "support": 0.253876 + }, + { + "time_hours": 131, + "approval_perbill": 500000000, + "support_perbill": 2507308, + "approval": 50, + "support": 0.2507308 + }, + { + "time_hours": 132, + "approval_perbill": 500000000, + "support_perbill": 2476330, + "approval": 50, + "support": 0.247633 + }, + { + "time_hours": 133, + "approval_perbill": 500000000, + "support_perbill": 2445813, + "approval": 50, + "support": 0.2445813 + }, + { + "time_hours": 134, + "approval_perbill": 500000000, + "support_perbill": 2415748, + "approval": 50, + "support": 0.2415748 + }, + { + "time_hours": 135, + "approval_perbill": 500000000, + "support_perbill": 2386125, + "approval": 50, + "support": 0.2386125 + }, + { + "time_hours": 136, + "approval_perbill": 500000000, + "support_perbill": 2356934, + "approval": 50, + "support": 0.2356934 + }, + { + "time_hours": 137, + "approval_perbill": 500000000, + "support_perbill": 2328166, + "approval": 50, + "support": 0.2328166 + }, + { + "time_hours": 138, + "approval_perbill": 500000000, + "support_perbill": 2299812, + "approval": 50, + "support": 0.2299812 + }, + { + "time_hours": 139, + "approval_perbill": 500000000, + "support_perbill": 2271863, + "approval": 50, + "support": 0.2271863 + }, + { + "time_hours": 140, + "approval_perbill": 500000000, + "support_perbill": 2244309, + "approval": 50, + "support": 0.2244309 + }, + { + "time_hours": 141, + "approval_perbill": 500000000, + "support_perbill": 2217144, + "approval": 50, + "support": 0.2217144 + }, + { + "time_hours": 142, + "approval_perbill": 500000000, + "support_perbill": 2190358, + "approval": 50, + "support": 0.2190358 + }, + { + "time_hours": 143, + "approval_perbill": 500000000, + "support_perbill": 2163944, + "approval": 50, + "support": 0.2163944 + }, + { + "time_hours": 144, + "approval_perbill": 500000000, + "support_perbill": 2137894, + "approval": 50, + "support": 0.2137894 + }, + { + "time_hours": 145, + "approval_perbill": 500000000, + "support_perbill": 2112201, + "approval": 50, + "support": 0.2112201 + }, + { + "time_hours": 146, + "approval_perbill": 500000000, + "support_perbill": 2086857, + "approval": 50, + "support": 0.2086857 + }, + { + "time_hours": 147, + "approval_perbill": 500000000, + "support_perbill": 2061856, + "approval": 50, + "support": 0.2061856 + }, + { + "time_hours": 148, + "approval_perbill": 500000000, + "support_perbill": 2037190, + "approval": 50, + "support": 0.203719 + }, + { + "time_hours": 149, + "approval_perbill": 500000000, + "support_perbill": 2012852, + "approval": 50, + "support": 0.2012852 + }, + { + "time_hours": 150, + "approval_perbill": 500000000, + "support_perbill": 1988837, + "approval": 50, + "support": 0.1988837 + }, + { + "time_hours": 151, + "approval_perbill": 500000000, + "support_perbill": 1965138, + "approval": 50, + "support": 0.1965138 + }, + { + "time_hours": 152, + "approval_perbill": 500000000, + "support_perbill": 1941748, + "approval": 50, + "support": 0.1941748 + }, + { + "time_hours": 153, + "approval_perbill": 500000000, + "support_perbill": 1918662, + "approval": 50, + "support": 0.1918662 + }, + { + "time_hours": 154, + "approval_perbill": 500000000, + "support_perbill": 1895873, + "approval": 50, + "support": 0.1895873 + }, + { + "time_hours": 155, + "approval_perbill": 500000000, + "support_perbill": 1873377, + "approval": 50, + "support": 0.1873377 + }, + { + "time_hours": 156, + "approval_perbill": 500000000, + "support_perbill": 1851166, + "approval": 50, + "support": 0.1851166 + }, + { + "time_hours": 157, + "approval_perbill": 500000000, + "support_perbill": 1829237, + "approval": 50, + "support": 0.1829237 + }, + { + "time_hours": 158, + "approval_perbill": 500000000, + "support_perbill": 1807584, + "approval": 50, + "support": 0.1807584 + }, + { + "time_hours": 159, + "approval_perbill": 500000000, + "support_perbill": 1786201, + "approval": 50, + "support": 0.1786201 + }, + { + "time_hours": 160, + "approval_perbill": 500000000, + "support_perbill": 1765084, + "approval": 50, + "support": 0.1765084 + }, + { + "time_hours": 161, + "approval_perbill": 500000000, + "support_perbill": 1744227, + "approval": 50, + "support": 0.1744227 + }, + { + "time_hours": 162, + "approval_perbill": 500000000, + "support_perbill": 1723626, + "approval": 50, + "support": 0.1723626 + }, + { + "time_hours": 163, + "approval_perbill": 500000000, + "support_perbill": 1703276, + "approval": 50, + "support": 0.1703276 + }, + { + "time_hours": 164, + "approval_perbill": 500000000, + "support_perbill": 1683172, + "approval": 50, + "support": 0.1683172 + }, + { + "time_hours": 165, + "approval_perbill": 500000000, + "support_perbill": 1663311, + "approval": 50, + "support": 0.1663311 + }, + { + "time_hours": 166, + "approval_perbill": 500000000, + "support_perbill": 1643687, + "approval": 50, + "support": 0.1643687 + }, + { + "time_hours": 167, + "approval_perbill": 500000000, + "support_perbill": 1624297, + "approval": 50, + "support": 0.1624297 + }, + { + "time_hours": 168, + "approval_perbill": 500000000, + "support_perbill": 1605137, + "approval": 50, + "support": 0.1605137 + }, + { + "time_hours": 169, + "approval_perbill": 500000000, + "support_perbill": 1586201, + "approval": 50, + "support": 0.1586201 + }, + { + "time_hours": 170, + "approval_perbill": 500000000, + "support_perbill": 1567487, + "approval": 50, + "support": 0.1567487 + }, + { + "time_hours": 171, + "approval_perbill": 500000000, + "support_perbill": 1548990, + "approval": 50, + "support": 0.154899 + }, + { + "time_hours": 172, + "approval_perbill": 500000000, + "support_perbill": 1530708, + "approval": 50, + "support": 0.1530708 + }, + { + "time_hours": 173, + "approval_perbill": 500000000, + "support_perbill": 1512635, + "approval": 50, + "support": 0.1512635 + }, + { + "time_hours": 174, + "approval_perbill": 500000000, + "support_perbill": 1494768, + "approval": 50, + "support": 0.1494768 + }, + { + "time_hours": 175, + "approval_perbill": 500000000, + "support_perbill": 1477105, + "approval": 50, + "support": 0.1477105 + }, + { + "time_hours": 176, + "approval_perbill": 500000000, + "support_perbill": 1459641, + "approval": 50, + "support": 0.1459641 + }, + { + "time_hours": 177, + "approval_perbill": 500000000, + "support_perbill": 1442373, + "approval": 50, + "support": 0.1442373 + }, + { + "time_hours": 178, + "approval_perbill": 500000000, + "support_perbill": 1425298, + "approval": 50, + "support": 0.1425298 + }, + { + "time_hours": 179, + "approval_perbill": 500000000, + "support_perbill": 1408413, + "approval": 50, + "support": 0.1408413 + }, + { + "time_hours": 180, + "approval_perbill": 500000000, + "support_perbill": 1391714, + "approval": 50, + "support": 0.1391714 + }, + { + "time_hours": 181, + "approval_perbill": 500000000, + "support_perbill": 1375199, + "approval": 50, + "support": 0.1375199 + }, + { + "time_hours": 182, + "approval_perbill": 500000000, + "support_perbill": 1358864, + "approval": 50, + "support": 0.1358864 + }, + { + "time_hours": 183, + "approval_perbill": 500000000, + "support_perbill": 1342706, + "approval": 50, + "support": 0.1342706 + }, + { + "time_hours": 184, + "approval_perbill": 500000000, + "support_perbill": 1326723, + "approval": 50, + "support": 0.1326723 + }, + { + "time_hours": 185, + "approval_perbill": 500000000, + "support_perbill": 1310912, + "approval": 50, + "support": 0.1310912 + }, + { + "time_hours": 186, + "approval_perbill": 500000000, + "support_perbill": 1295270, + "approval": 50, + "support": 0.129527 + }, + { + "time_hours": 187, + "approval_perbill": 500000000, + "support_perbill": 1279794, + "approval": 50, + "support": 0.1279794 + }, + { + "time_hours": 188, + "approval_perbill": 500000000, + "support_perbill": 1264482, + "approval": 50, + "support": 0.1264482 + }, + { + "time_hours": 189, + "approval_perbill": 500000000, + "support_perbill": 1249331, + "approval": 50, + "support": 0.1249331 + }, + { + "time_hours": 190, + "approval_perbill": 500000000, + "support_perbill": 1234338, + "approval": 50, + "support": 0.1234338 + }, + { + "time_hours": 191, + "approval_perbill": 500000000, + "support_perbill": 1219502, + "approval": 50, + "support": 0.1219502 + }, + { + "time_hours": 192, + "approval_perbill": 500000000, + "support_perbill": 1204819, + "approval": 50, + "support": 0.1204819 + }, + { + "time_hours": 193, + "approval_perbill": 500000000, + "support_perbill": 1190288, + "approval": 50, + "support": 0.1190288 + }, + { + "time_hours": 194, + "approval_perbill": 500000000, + "support_perbill": 1175906, + "approval": 50, + "support": 0.1175906 + }, + { + "time_hours": 195, + "approval_perbill": 500000000, + "support_perbill": 1161670, + "approval": 50, + "support": 0.116167 + }, + { + "time_hours": 196, + "approval_perbill": 500000000, + "support_perbill": 1147579, + "approval": 50, + "support": 0.1147579 + }, + { + "time_hours": 197, + "approval_perbill": 500000000, + "support_perbill": 1133630, + "approval": 50, + "support": 0.113363 + }, + { + "time_hours": 198, + "approval_perbill": 500000000, + "support_perbill": 1119821, + "approval": 50, + "support": 0.1119821 + }, + { + "time_hours": 199, + "approval_perbill": 500000000, + "support_perbill": 1106150, + "approval": 50, + "support": 0.110615 + }, + { + "time_hours": 200, + "approval_perbill": 500000000, + "support_perbill": 1092615, + "approval": 50, + "support": 0.1092615 + }, + { + "time_hours": 201, + "approval_perbill": 500000000, + "support_perbill": 1079214, + "approval": 50, + "support": 0.1079214 + }, + { + "time_hours": 202, + "approval_perbill": 500000000, + "support_perbill": 1065945, + "approval": 50, + "support": 0.1065945 + }, + { + "time_hours": 203, + "approval_perbill": 500000000, + "support_perbill": 1052807, + "approval": 50, + "support": 0.1052807 + }, + { + "time_hours": 204, + "approval_perbill": 500000000, + "support_perbill": 1039796, + "approval": 50, + "support": 0.1039796 + }, + { + "time_hours": 205, + "approval_perbill": 500000000, + "support_perbill": 1026911, + "approval": 50, + "support": 0.1026911 + }, + { + "time_hours": 206, + "approval_perbill": 500000000, + "support_perbill": 1014151, + "approval": 50, + "support": 0.1014151 + }, + { + "time_hours": 207, + "approval_perbill": 500000000, + "support_perbill": 1001514, + "approval": 50, + "support": 0.1001514 + }, + { + "time_hours": 208, + "approval_perbill": 500000000, + "support_perbill": 988997, + "approval": 50, + "support": 0.0988997 + }, + { + "time_hours": 209, + "approval_perbill": 500000000, + "support_perbill": 976600, + "approval": 50, + "support": 0.09766 + }, + { + "time_hours": 210, + "approval_perbill": 500000000, + "support_perbill": 964320, + "approval": 50, + "support": 0.096432 + }, + { + "time_hours": 211, + "approval_perbill": 500000000, + "support_perbill": 952156, + "approval": 50, + "support": 0.0952156 + }, + { + "time_hours": 212, + "approval_perbill": 500000000, + "support_perbill": 940106, + "approval": 50, + "support": 0.0940106 + }, + { + "time_hours": 213, + "approval_perbill": 500000000, + "support_perbill": 928169, + "approval": 50, + "support": 0.0928169 + }, + { + "time_hours": 214, + "approval_perbill": 500000000, + "support_perbill": 916342, + "approval": 50, + "support": 0.0916342 + }, + { + "time_hours": 215, + "approval_perbill": 500000000, + "support_perbill": 904626, + "approval": 50, + "support": 0.0904626 + }, + { + "time_hours": 216, + "approval_perbill": 500000000, + "support_perbill": 893017, + "approval": 50, + "support": 0.0893017 + }, + { + "time_hours": 217, + "approval_perbill": 500000000, + "support_perbill": 881514, + "approval": 50, + "support": 0.0881514 + }, + { + "time_hours": 218, + "approval_perbill": 500000000, + "support_perbill": 870117, + "approval": 50, + "support": 0.0870117 + }, + { + "time_hours": 219, + "approval_perbill": 500000000, + "support_perbill": 858823, + "approval": 50, + "support": 0.0858823 + }, + { + "time_hours": 220, + "approval_perbill": 500000000, + "support_perbill": 847631, + "approval": 50, + "support": 0.0847631 + }, + { + "time_hours": 221, + "approval_perbill": 500000000, + "support_perbill": 836540, + "approval": 50, + "support": 0.083654 + }, + { + "time_hours": 222, + "approval_perbill": 500000000, + "support_perbill": 825549, + "approval": 50, + "support": 0.0825549 + }, + { + "time_hours": 223, + "approval_perbill": 500000000, + "support_perbill": 814655, + "approval": 50, + "support": 0.0814655 + }, + { + "time_hours": 224, + "approval_perbill": 500000000, + "support_perbill": 803858, + "approval": 50, + "support": 0.0803858 + }, + { + "time_hours": 225, + "approval_perbill": 500000000, + "support_perbill": 793157, + "approval": 50, + "support": 0.0793157 + }, + { + "time_hours": 226, + "approval_perbill": 500000000, + "support_perbill": 782550, + "approval": 50, + "support": 0.078255 + }, + { + "time_hours": 227, + "approval_perbill": 500000000, + "support_perbill": 772037, + "approval": 50, + "support": 0.0772037 + }, + { + "time_hours": 228, + "approval_perbill": 500000000, + "support_perbill": 761615, + "approval": 50, + "support": 0.0761615 + }, + { + "time_hours": 229, + "approval_perbill": 500000000, + "support_perbill": 751283, + "approval": 50, + "support": 0.0751283 + }, + { + "time_hours": 230, + "approval_perbill": 500000000, + "support_perbill": 741041, + "approval": 50, + "support": 0.0741041 + }, + { + "time_hours": 231, + "approval_perbill": 500000000, + "support_perbill": 730887, + "approval": 50, + "support": 0.0730887 + }, + { + "time_hours": 232, + "approval_perbill": 500000000, + "support_perbill": 720821, + "approval": 50, + "support": 0.0720821 + }, + { + "time_hours": 233, + "approval_perbill": 500000000, + "support_perbill": 710840, + "approval": 50, + "support": 0.071084 + }, + { + "time_hours": 234, + "approval_perbill": 500000000, + "support_perbill": 700944, + "approval": 50, + "support": 0.0700944 + }, + { + "time_hours": 235, + "approval_perbill": 500000000, + "support_perbill": 691132, + "approval": 50, + "support": 0.0691132 + }, + { + "time_hours": 236, + "approval_perbill": 500000000, + "support_perbill": 681403, + "approval": 50, + "support": 0.0681403 + }, + { + "time_hours": 237, + "approval_perbill": 500000000, + "support_perbill": 671756, + "approval": 50, + "support": 0.0671756 + }, + { + "time_hours": 238, + "approval_perbill": 500000000, + "support_perbill": 662189, + "approval": 50, + "support": 0.0662189 + }, + { + "time_hours": 239, + "approval_perbill": 500000000, + "support_perbill": 652702, + "approval": 50, + "support": 0.0652702 + }, + { + "time_hours": 240, + "approval_perbill": 500000000, + "support_perbill": 643294, + "approval": 50, + "support": 0.0643294 + }, + { + "time_hours": 241, + "approval_perbill": 500000000, + "support_perbill": 633963, + "approval": 50, + "support": 0.0633963 + }, + { + "time_hours": 242, + "approval_perbill": 500000000, + "support_perbill": 624709, + "approval": 50, + "support": 0.0624709 + }, + { + "time_hours": 243, + "approval_perbill": 500000000, + "support_perbill": 615531, + "approval": 50, + "support": 0.0615531 + }, + { + "time_hours": 244, + "approval_perbill": 500000000, + "support_perbill": 606428, + "approval": 50, + "support": 0.0606428 + }, + { + "time_hours": 245, + "approval_perbill": 500000000, + "support_perbill": 597399, + "approval": 50, + "support": 0.0597399 + }, + { + "time_hours": 246, + "approval_perbill": 500000000, + "support_perbill": 588443, + "approval": 50, + "support": 0.0588443 + }, + { + "time_hours": 247, + "approval_perbill": 500000000, + "support_perbill": 579559, + "approval": 50, + "support": 0.0579559 + }, + { + "time_hours": 248, + "approval_perbill": 500000000, + "support_perbill": 570747, + "approval": 50, + "support": 0.0570747 + }, + { + "time_hours": 249, + "approval_perbill": 500000000, + "support_perbill": 562005, + "approval": 50, + "support": 0.0562005 + }, + { + "time_hours": 250, + "approval_perbill": 500000000, + "support_perbill": 553332, + "approval": 50, + "support": 0.0553332 + }, + { + "time_hours": 251, + "approval_perbill": 500000000, + "support_perbill": 544729, + "approval": 50, + "support": 0.0544729 + }, + { + "time_hours": 252, + "approval_perbill": 500000000, + "support_perbill": 536193, + "approval": 50, + "support": 0.0536193 + }, + { + "time_hours": 253, + "approval_perbill": 500000000, + "support_perbill": 527725, + "approval": 50, + "support": 0.0527725 + }, + { + "time_hours": 254, + "approval_perbill": 500000000, + "support_perbill": 519322, + "approval": 50, + "support": 0.0519322 + }, + { + "time_hours": 255, + "approval_perbill": 500000000, + "support_perbill": 510986, + "approval": 50, + "support": 0.0510986 + }, + { + "time_hours": 256, + "approval_perbill": 500000000, + "support_perbill": 502715, + "approval": 50, + "support": 0.0502715 + }, + { + "time_hours": 257, + "approval_perbill": 500000000, + "support_perbill": 494507, + "approval": 50, + "support": 0.0494507 + }, + { + "time_hours": 258, + "approval_perbill": 500000000, + "support_perbill": 486363, + "approval": 50, + "support": 0.0486363 + }, + { + "time_hours": 259, + "approval_perbill": 500000000, + "support_perbill": 478282, + "approval": 50, + "support": 0.0478282 + }, + { + "time_hours": 260, + "approval_perbill": 500000000, + "support_perbill": 470262, + "approval": 50, + "support": 0.0470262 + }, + { + "time_hours": 261, + "approval_perbill": 500000000, + "support_perbill": 462304, + "approval": 50, + "support": 0.0462304 + }, + { + "time_hours": 262, + "approval_perbill": 500000000, + "support_perbill": 454406, + "approval": 50, + "support": 0.0454406 + }, + { + "time_hours": 263, + "approval_perbill": 500000000, + "support_perbill": 446568, + "approval": 50, + "support": 0.0446568 + }, + { + "time_hours": 264, + "approval_perbill": 500000000, + "support_perbill": 438789, + "approval": 50, + "support": 0.0438789 + }, + { + "time_hours": 265, + "approval_perbill": 500000000, + "support_perbill": 431068, + "approval": 50, + "support": 0.0431068 + }, + { + "time_hours": 266, + "approval_perbill": 500000000, + "support_perbill": 423406, + "approval": 50, + "support": 0.0423406 + }, + { + "time_hours": 267, + "approval_perbill": 500000000, + "support_perbill": 415800, + "approval": 50, + "support": 0.04158 + }, + { + "time_hours": 268, + "approval_perbill": 500000000, + "support_perbill": 408251, + "approval": 50, + "support": 0.0408251 + }, + { + "time_hours": 269, + "approval_perbill": 500000000, + "support_perbill": 400758, + "approval": 50, + "support": 0.0400758 + }, + { + "time_hours": 270, + "approval_perbill": 500000000, + "support_perbill": 393321, + "approval": 50, + "support": 0.0393321 + }, + { + "time_hours": 271, + "approval_perbill": 500000000, + "support_perbill": 385937, + "approval": 50, + "support": 0.0385937 + }, + { + "time_hours": 272, + "approval_perbill": 500000000, + "support_perbill": 378608, + "approval": 50, + "support": 0.0378608 + }, + { + "time_hours": 273, + "approval_perbill": 500000000, + "support_perbill": 371333, + "approval": 50, + "support": 0.0371333 + }, + { + "time_hours": 274, + "approval_perbill": 500000000, + "support_perbill": 364110, + "approval": 50, + "support": 0.036411 + }, + { + "time_hours": 275, + "approval_perbill": 500000000, + "support_perbill": 356940, + "approval": 50, + "support": 0.035694 + }, + { + "time_hours": 276, + "approval_perbill": 500000000, + "support_perbill": 349821, + "approval": 50, + "support": 0.0349821 + }, + { + "time_hours": 277, + "approval_perbill": 500000000, + "support_perbill": 342754, + "approval": 50, + "support": 0.0342754 + }, + { + "time_hours": 278, + "approval_perbill": 500000000, + "support_perbill": 335737, + "approval": 50, + "support": 0.0335737 + }, + { + "time_hours": 279, + "approval_perbill": 500000000, + "support_perbill": 328771, + "approval": 50, + "support": 0.0328771 + }, + { + "time_hours": 280, + "approval_perbill": 500000000, + "support_perbill": 321854, + "approval": 50, + "support": 0.0321854 + }, + { + "time_hours": 281, + "approval_perbill": 500000000, + "support_perbill": 314986, + "approval": 50, + "support": 0.0314986 + }, + { + "time_hours": 282, + "approval_perbill": 500000000, + "support_perbill": 308166, + "approval": 50, + "support": 0.0308166 + }, + { + "time_hours": 283, + "approval_perbill": 500000000, + "support_perbill": 301395, + "approval": 50, + "support": 0.0301395 + }, + { + "time_hours": 284, + "approval_perbill": 500000000, + "support_perbill": 294671, + "approval": 50, + "support": 0.0294671 + }, + { + "time_hours": 285, + "approval_perbill": 500000000, + "support_perbill": 287994, + "approval": 50, + "support": 0.0287994 + }, + { + "time_hours": 286, + "approval_perbill": 500000000, + "support_perbill": 281363, + "approval": 50, + "support": 0.0281363 + }, + { + "time_hours": 287, + "approval_perbill": 500000000, + "support_perbill": 274779, + "approval": 50, + "support": 0.0274779 + }, + { + "time_hours": 288, + "approval_perbill": 500000000, + "support_perbill": 268240, + "approval": 50, + "support": 0.026824 + }, + { + "time_hours": 289, + "approval_perbill": 500000000, + "support_perbill": 261746, + "approval": 50, + "support": 0.0261746 + }, + { + "time_hours": 290, + "approval_perbill": 500000000, + "support_perbill": 255297, + "approval": 50, + "support": 0.0255297 + }, + { + "time_hours": 291, + "approval_perbill": 500000000, + "support_perbill": 248892, + "approval": 50, + "support": 0.0248892 + }, + { + "time_hours": 292, + "approval_perbill": 500000000, + "support_perbill": 242531, + "approval": 50, + "support": 0.0242531 + }, + { + "time_hours": 293, + "approval_perbill": 500000000, + "support_perbill": 236213, + "approval": 50, + "support": 0.0236213 + }, + { + "time_hours": 294, + "approval_perbill": 500000000, + "support_perbill": 229938, + "approval": 50, + "support": 0.0229938 + }, + { + "time_hours": 295, + "approval_perbill": 500000000, + "support_perbill": 223705, + "approval": 50, + "support": 0.0223705 + }, + { + "time_hours": 296, + "approval_perbill": 500000000, + "support_perbill": 217514, + "approval": 50, + "support": 0.0217514 + }, + { + "time_hours": 297, + "approval_perbill": 500000000, + "support_perbill": 211365, + "approval": 50, + "support": 0.0211365 + }, + { + "time_hours": 298, + "approval_perbill": 500000000, + "support_perbill": 205257, + "approval": 50, + "support": 0.0205257 + }, + { + "time_hours": 299, + "approval_perbill": 500000000, + "support_perbill": 199189, + "approval": 50, + "support": 0.0199189 + }, + { + "time_hours": 300, + "approval_perbill": 500000000, + "support_perbill": 193162, + "approval": 50, + "support": 0.0193162 + }, + { + "time_hours": 301, + "approval_perbill": 500000000, + "support_perbill": 187175, + "approval": 50, + "support": 0.0187175 + }, + { + "time_hours": 302, + "approval_perbill": 500000000, + "support_perbill": 181227, + "approval": 50, + "support": 0.0181227 + }, + { + "time_hours": 303, + "approval_perbill": 500000000, + "support_perbill": 175318, + "approval": 50, + "support": 0.0175318 + }, + { + "time_hours": 304, + "approval_perbill": 500000000, + "support_perbill": 169448, + "approval": 50, + "support": 0.0169448 + }, + { + "time_hours": 305, + "approval_perbill": 500000000, + "support_perbill": 163617, + "approval": 50, + "support": 0.0163617 + }, + { + "time_hours": 306, + "approval_perbill": 500000000, + "support_perbill": 157823, + "approval": 50, + "support": 0.0157823 + }, + { + "time_hours": 307, + "approval_perbill": 500000000, + "support_perbill": 152067, + "approval": 50, + "support": 0.0152067 + }, + { + "time_hours": 308, + "approval_perbill": 500000000, + "support_perbill": 146348, + "approval": 50, + "support": 0.0146348 + }, + { + "time_hours": 309, + "approval_perbill": 500000000, + "support_perbill": 140667, + "approval": 50, + "support": 0.0140667 + }, + { + "time_hours": 310, + "approval_perbill": 500000000, + "support_perbill": 135021, + "approval": 50, + "support": 0.0135021 + }, + { + "time_hours": 311, + "approval_perbill": 500000000, + "support_perbill": 129412, + "approval": 50, + "support": 0.0129412 + }, + { + "time_hours": 312, + "approval_perbill": 500000000, + "support_perbill": 123839, + "approval": 50, + "support": 0.0123839 + }, + { + "time_hours": 313, + "approval_perbill": 500000000, + "support_perbill": 118301, + "approval": 50, + "support": 0.0118301 + }, + { + "time_hours": 314, + "approval_perbill": 500000000, + "support_perbill": 112798, + "approval": 50, + "support": 0.0112798 + }, + { + "time_hours": 315, + "approval_perbill": 500000000, + "support_perbill": 107330, + "approval": 50, + "support": 0.010733 + }, + { + "time_hours": 316, + "approval_perbill": 500000000, + "support_perbill": 101897, + "approval": 50, + "support": 0.0101897 + }, + { + "time_hours": 317, + "approval_perbill": 500000000, + "support_perbill": 96498, + "approval": 50, + "support": 0.0096498 + }, + { + "time_hours": 318, + "approval_perbill": 500000000, + "support_perbill": 91133, + "approval": 50, + "support": 0.0091133 + }, + { + "time_hours": 319, + "approval_perbill": 500000000, + "support_perbill": 85801, + "approval": 50, + "support": 0.0085801 + }, + { + "time_hours": 320, + "approval_perbill": 500000000, + "support_perbill": 80502, + "approval": 50, + "support": 0.0080502 + }, + { + "time_hours": 321, + "approval_perbill": 500000000, + "support_perbill": 75236, + "approval": 50, + "support": 0.0075236 + }, + { + "time_hours": 322, + "approval_perbill": 500000000, + "support_perbill": 70003, + "approval": 50, + "support": 0.0070003 + }, + { + "time_hours": 323, + "approval_perbill": 500000000, + "support_perbill": 64802, + "approval": 50, + "support": 0.0064802 + }, + { + "time_hours": 324, + "approval_perbill": 500000000, + "support_perbill": 59634, + "approval": 50, + "support": 0.0059634 + }, + { + "time_hours": 325, + "approval_perbill": 500000000, + "support_perbill": 54496, + "approval": 50, + "support": 0.0054496 + }, + { + "time_hours": 326, + "approval_perbill": 500000000, + "support_perbill": 49391, + "approval": 50, + "support": 0.0049391 + }, + { + "time_hours": 327, + "approval_perbill": 500000000, + "support_perbill": 44316, + "approval": 50, + "support": 0.0044316 + }, + { + "time_hours": 328, + "approval_perbill": 500000000, + "support_perbill": 39272, + "approval": 50, + "support": 0.0039272 + }, + { + "time_hours": 329, + "approval_perbill": 500000000, + "support_perbill": 34259, + "approval": 50, + "support": 0.0034259 + }, + { + "time_hours": 330, + "approval_perbill": 500000000, + "support_perbill": 29276, + "approval": 50, + "support": 0.0029276 + }, + { + "time_hours": 331, + "approval_perbill": 500000000, + "support_perbill": 24323, + "approval": 50, + "support": 0.0024323 + }, + { + "time_hours": 332, + "approval_perbill": 500000000, + "support_perbill": 19400, + "approval": 50, + "support": 0.00194 + }, + { + "time_hours": 333, + "approval_perbill": 500000000, + "support_perbill": 14507, + "approval": 50, + "support": 0.0014507 + }, + { + "time_hours": 334, + "approval_perbill": 500000000, + "support_perbill": 9642, + "approval": 50, + "support": 0.0009642 + }, + { + "time_hours": 335, + "approval_perbill": 500000000, + "support_perbill": 4807, + "approval": 50, + "support": 0.0004807 + }, + { + "time_hours": 336, + "approval_perbill": 500000000, + "support_perbill": 0, + "approval": 50, + "support": 0 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/kusama/opengov_treasurer.json b/components/utilities/charts_data/kusama/opengov_treasurer.json new file mode 100644 index 000000000000..6103c3e7e5a4 --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_treasurer.json @@ -0,0 +1,2361 @@ +[ + { + "time_hours": 0, + "approval_perbill": 1000000000, + "support_perbill": 500000000, + "approval": 100, + "support": 50 + }, + { + "time_hours": 1, + "approval_perbill": 994100296, + "support_perbill": 498511905, + "approval": 99.4100296, + "support": 49.8511905 + }, + { + "time_hours": 2, + "approval_perbill": 988304096, + "support_perbill": 497023810, + "approval": 98.8304096, + "support": 49.702381 + }, + { + "time_hours": 3, + "approval_perbill": 982608697, + "support_perbill": 495535715, + "approval": 98.2608697, + "support": 49.5535715 + }, + { + "time_hours": 4, + "approval_perbill": 977011496, + "support_perbill": 494047620, + "approval": 97.7011496, + "support": 49.404762 + }, + { + "time_hours": 5, + "approval_perbill": 971509972, + "support_perbill": 492559524, + "approval": 97.1509972, + "support": 49.2559524 + }, + { + "time_hours": 6, + "approval_perbill": 966101697, + "support_perbill": 491071429, + "approval": 96.6101697, + "support": 49.1071429 + }, + { + "time_hours": 7, + "approval_perbill": 960784315, + "support_perbill": 489583334, + "approval": 96.0784315, + "support": 48.9583334 + }, + { + "time_hours": 8, + "approval_perbill": 955555557, + "support_perbill": 488095239, + "approval": 95.5555557, + "support": 48.8095239 + }, + { + "time_hours": 9, + "approval_perbill": 950413224, + "support_perbill": 486607143, + "approval": 95.0413224, + "support": 48.6607143 + }, + { + "time_hours": 10, + "approval_perbill": 945355193, + "support_perbill": 485119048, + "approval": 94.5355193, + "support": 48.5119048 + }, + { + "time_hours": 11, + "approval_perbill": 940379404, + "support_perbill": 483630953, + "approval": 94.0379404, + "support": 48.3630953 + }, + { + "time_hours": 12, + "approval_perbill": 935483872, + "support_perbill": 482142858, + "approval": 93.5483872, + "support": 48.2142858 + }, + { + "time_hours": 13, + "approval_perbill": 930666667, + "support_perbill": 480654762, + "approval": 93.0666667, + "support": 48.0654762 + }, + { + "time_hours": 14, + "approval_perbill": 925925927, + "support_perbill": 479166667, + "approval": 92.5925927, + "support": 47.9166667 + }, + { + "time_hours": 15, + "approval_perbill": 921259843, + "support_perbill": 477678572, + "approval": 92.1259843, + "support": 47.7678572 + }, + { + "time_hours": 16, + "approval_perbill": 916666668, + "support_perbill": 476190477, + "approval": 91.6666668, + "support": 47.6190477 + }, + { + "time_hours": 17, + "approval_perbill": 912144703, + "support_perbill": 474702381, + "approval": 91.2144703, + "support": 47.4702381 + }, + { + "time_hours": 18, + "approval_perbill": 907692309, + "support_perbill": 473214286, + "approval": 90.7692309, + "support": 47.3214286 + }, + { + "time_hours": 19, + "approval_perbill": 903307888, + "support_perbill": 471726191, + "approval": 90.3307888, + "support": 47.1726191 + }, + { + "time_hours": 20, + "approval_perbill": 898989900, + "support_perbill": 470238096, + "approval": 89.89899, + "support": 47.0238096 + }, + { + "time_hours": 21, + "approval_perbill": 894736842, + "support_perbill": 468750000, + "approval": 89.4736842, + "support": 46.875 + }, + { + "time_hours": 22, + "approval_perbill": 890547265, + "support_perbill": 467261905, + "approval": 89.0547265, + "support": 46.7261905 + }, + { + "time_hours": 23, + "approval_perbill": 886419755, + "support_perbill": 465773810, + "approval": 88.6419755, + "support": 46.577381 + }, + { + "time_hours": 24, + "approval_perbill": 882352942, + "support_perbill": 464285715, + "approval": 88.2352942, + "support": 46.4285715 + }, + { + "time_hours": 25, + "approval_perbill": 878345500, + "support_perbill": 462797620, + "approval": 87.83455, + "support": 46.279762 + }, + { + "time_hours": 26, + "approval_perbill": 874396136, + "support_perbill": 461309524, + "approval": 87.4396136, + "support": 46.1309524 + }, + { + "time_hours": 27, + "approval_perbill": 870503599, + "support_perbill": 459821429, + "approval": 87.0503599, + "support": 45.9821429 + }, + { + "time_hours": 28, + "approval_perbill": 866666667, + "support_perbill": 458333334, + "approval": 86.6666667, + "support": 45.8333334 + }, + { + "time_hours": 29, + "approval_perbill": 862884162, + "support_perbill": 456845239, + "approval": 86.2884162, + "support": 45.6845239 + }, + { + "time_hours": 30, + "approval_perbill": 859154930, + "support_perbill": 455357143, + "approval": 85.915493, + "support": 45.5357143 + }, + { + "time_hours": 31, + "approval_perbill": 855477857, + "support_perbill": 453869048, + "approval": 85.5477857, + "support": 45.3869048 + }, + { + "time_hours": 32, + "approval_perbill": 851851852, + "support_perbill": 452380953, + "approval": 85.1851852, + "support": 45.2380953 + }, + { + "time_hours": 33, + "approval_perbill": 848275863, + "support_perbill": 450892858, + "approval": 84.8275863, + "support": 45.0892858 + }, + { + "time_hours": 34, + "approval_perbill": 844748859, + "support_perbill": 449404762, + "approval": 84.4748859, + "support": 44.9404762 + }, + { + "time_hours": 35, + "approval_perbill": 841269842, + "support_perbill": 447916667, + "approval": 84.1269842, + "support": 44.7916667 + }, + { + "time_hours": 36, + "approval_perbill": 837837838, + "support_perbill": 446428572, + "approval": 83.7837838, + "support": 44.6428572 + }, + { + "time_hours": 37, + "approval_perbill": 834451903, + "support_perbill": 444940477, + "approval": 83.4451903, + "support": 44.4940477 + }, + { + "time_hours": 38, + "approval_perbill": 831111112, + "support_perbill": 443452381, + "approval": 83.1111112, + "support": 44.3452381 + }, + { + "time_hours": 39, + "approval_perbill": 827814570, + "support_perbill": 441964286, + "approval": 82.781457, + "support": 44.1964286 + }, + { + "time_hours": 40, + "approval_perbill": 824561404, + "support_perbill": 440476191, + "approval": 82.4561404, + "support": 44.0476191 + }, + { + "time_hours": 41, + "approval_perbill": 821350763, + "support_perbill": 438988096, + "approval": 82.1350763, + "support": 43.8988096 + }, + { + "time_hours": 42, + "approval_perbill": 818181818, + "support_perbill": 437500000, + "approval": 81.8181818, + "support": 43.75 + }, + { + "time_hours": 43, + "approval_perbill": 815053764, + "support_perbill": 436011905, + "approval": 81.5053764, + "support": 43.6011905 + }, + { + "time_hours": 44, + "approval_perbill": 811965813, + "support_perbill": 434523810, + "approval": 81.1965813, + "support": 43.452381 + }, + { + "time_hours": 45, + "approval_perbill": 808917198, + "support_perbill": 433035715, + "approval": 80.8917198, + "support": 43.3035715 + }, + { + "time_hours": 46, + "approval_perbill": 805907174, + "support_perbill": 431547620, + "approval": 80.5907174, + "support": 43.154762 + }, + { + "time_hours": 47, + "approval_perbill": 802935011, + "support_perbill": 430059524, + "approval": 80.2935011, + "support": 43.0059524 + }, + { + "time_hours": 48, + "approval_perbill": 800000001, + "support_perbill": 428571429, + "approval": 80.0000001, + "support": 42.8571429 + }, + { + "time_hours": 49, + "approval_perbill": 797101450, + "support_perbill": 427083334, + "approval": 79.710145, + "support": 42.7083334 + }, + { + "time_hours": 50, + "approval_perbill": 794238684, + "support_perbill": 425595239, + "approval": 79.4238684, + "support": 42.5595239 + }, + { + "time_hours": 51, + "approval_perbill": 791411043, + "support_perbill": 424107143, + "approval": 79.1411043, + "support": 42.4107143 + }, + { + "time_hours": 52, + "approval_perbill": 788617887, + "support_perbill": 422619048, + "approval": 78.8617887, + "support": 42.2619048 + }, + { + "time_hours": 53, + "approval_perbill": 785858586, + "support_perbill": 421130953, + "approval": 78.5858586, + "support": 42.1130953 + }, + { + "time_hours": 54, + "approval_perbill": 783132531, + "support_perbill": 419642858, + "approval": 78.3132531, + "support": 41.9642858 + }, + { + "time_hours": 55, + "approval_perbill": 780439122, + "support_perbill": 418154762, + "approval": 78.0439122, + "support": 41.8154762 + }, + { + "time_hours": 56, + "approval_perbill": 777777779, + "support_perbill": 416666667, + "approval": 77.7777779, + "support": 41.6666667 + }, + { + "time_hours": 57, + "approval_perbill": 775147929, + "support_perbill": 415178572, + "approval": 77.5147929, + "support": 41.5178572 + }, + { + "time_hours": 58, + "approval_perbill": 772549020, + "support_perbill": 413690477, + "approval": 77.254902, + "support": 41.3690477 + }, + { + "time_hours": 59, + "approval_perbill": 769980507, + "support_perbill": 412202381, + "approval": 76.9980507, + "support": 41.2202381 + }, + { + "time_hours": 60, + "approval_perbill": 767441861, + "support_perbill": 410714286, + "approval": 76.7441861, + "support": 41.0714286 + }, + { + "time_hours": 61, + "approval_perbill": 764932563, + "support_perbill": 409226191, + "approval": 76.4932563, + "support": 40.9226191 + }, + { + "time_hours": 62, + "approval_perbill": 762452108, + "support_perbill": 407738096, + "approval": 76.2452108, + "support": 40.7738096 + }, + { + "time_hours": 63, + "approval_perbill": 760000000, + "support_perbill": 406250000, + "approval": 76, + "support": 40.625 + }, + { + "time_hours": 64, + "approval_perbill": 757575758, + "support_perbill": 404761905, + "approval": 75.7575758, + "support": 40.4761905 + }, + { + "time_hours": 65, + "approval_perbill": 755178909, + "support_perbill": 403273810, + "approval": 75.5178909, + "support": 40.327381 + }, + { + "time_hours": 66, + "approval_perbill": 752808989, + "support_perbill": 401785715, + "approval": 75.2808989, + "support": 40.1785715 + }, + { + "time_hours": 67, + "approval_perbill": 750465550, + "support_perbill": 400297620, + "approval": 75.046555, + "support": 40.029762 + }, + { + "time_hours": 68, + "approval_perbill": 748148149, + "support_perbill": 398809524, + "approval": 74.8148149, + "support": 39.8809524 + }, + { + "time_hours": 69, + "approval_perbill": 745856354, + "support_perbill": 397321429, + "approval": 74.5856354, + "support": 39.7321429 + }, + { + "time_hours": 70, + "approval_perbill": 743589744, + "support_perbill": 395833334, + "approval": 74.3589744, + "support": 39.5833334 + }, + { + "time_hours": 71, + "approval_perbill": 741347906, + "support_perbill": 394345239, + "approval": 74.1347906, + "support": 39.4345239 + }, + { + "time_hours": 72, + "approval_perbill": 739130435, + "support_perbill": 392857143, + "approval": 73.9130435, + "support": 39.2857143 + }, + { + "time_hours": 73, + "approval_perbill": 736936938, + "support_perbill": 391369048, + "approval": 73.6936938, + "support": 39.1369048 + }, + { + "time_hours": 74, + "approval_perbill": 734767025, + "support_perbill": 389880953, + "approval": 73.4767025, + "support": 38.9880953 + }, + { + "time_hours": 75, + "approval_perbill": 732620322, + "support_perbill": 388392858, + "approval": 73.2620322, + "support": 38.8392858 + }, + { + "time_hours": 76, + "approval_perbill": 730496454, + "support_perbill": 386904762, + "approval": 73.0496454, + "support": 38.6904762 + }, + { + "time_hours": 77, + "approval_perbill": 728395062, + "support_perbill": 385416667, + "approval": 72.8395062, + "support": 38.5416667 + }, + { + "time_hours": 78, + "approval_perbill": 726315790, + "support_perbill": 383928572, + "approval": 72.631579, + "support": 38.3928572 + }, + { + "time_hours": 79, + "approval_perbill": 724258290, + "support_perbill": 382440477, + "approval": 72.425829, + "support": 38.2440477 + }, + { + "time_hours": 80, + "approval_perbill": 722222222, + "support_perbill": 380952381, + "approval": 72.2222222, + "support": 38.0952381 + }, + { + "time_hours": 81, + "approval_perbill": 720207254, + "support_perbill": 379464286, + "approval": 72.0207254, + "support": 37.9464286 + }, + { + "time_hours": 82, + "approval_perbill": 718213059, + "support_perbill": 377976191, + "approval": 71.8213059, + "support": 37.7976191 + }, + { + "time_hours": 83, + "approval_perbill": 716239317, + "support_perbill": 376488096, + "approval": 71.6239317, + "support": 37.6488096 + }, + { + "time_hours": 84, + "approval_perbill": 714285714, + "support_perbill": 375000000, + "approval": 71.4285714, + "support": 37.5 + }, + { + "time_hours": 85, + "approval_perbill": 712351946, + "support_perbill": 373511905, + "approval": 71.2351946, + "support": 37.3511905 + }, + { + "time_hours": 86, + "approval_perbill": 710437711, + "support_perbill": 372023810, + "approval": 71.0437711, + "support": 37.202381 + }, + { + "time_hours": 87, + "approval_perbill": 708542714, + "support_perbill": 370535715, + "approval": 70.8542714, + "support": 37.0535715 + }, + { + "time_hours": 88, + "approval_perbill": 706666667, + "support_perbill": 369047620, + "approval": 70.6666667, + "support": 36.904762 + }, + { + "time_hours": 89, + "approval_perbill": 704809287, + "support_perbill": 367559524, + "approval": 70.4809287, + "support": 36.7559524 + }, + { + "time_hours": 90, + "approval_perbill": 702970298, + "support_perbill": 366071429, + "approval": 70.2970298, + "support": 36.6071429 + }, + { + "time_hours": 91, + "approval_perbill": 701149426, + "support_perbill": 364583334, + "approval": 70.1149426, + "support": 36.4583334 + }, + { + "time_hours": 92, + "approval_perbill": 699346406, + "support_perbill": 363095239, + "approval": 69.9346406, + "support": 36.3095239 + }, + { + "time_hours": 93, + "approval_perbill": 697560976, + "support_perbill": 361607143, + "approval": 69.7560976, + "support": 36.1607143 + }, + { + "time_hours": 94, + "approval_perbill": 695792881, + "support_perbill": 360119048, + "approval": 69.5792881, + "support": 36.0119048 + }, + { + "time_hours": 95, + "approval_perbill": 694041868, + "support_perbill": 358630953, + "approval": 69.4041868, + "support": 35.8630953 + }, + { + "time_hours": 96, + "approval_perbill": 692307693, + "support_perbill": 357142858, + "approval": 69.2307693, + "support": 35.7142858 + }, + { + "time_hours": 97, + "approval_perbill": 690590112, + "support_perbill": 355654762, + "approval": 69.0590112, + "support": 35.5654762 + }, + { + "time_hours": 98, + "approval_perbill": 688888889, + "support_perbill": 354166667, + "approval": 68.8888889, + "support": 35.4166667 + }, + { + "time_hours": 99, + "approval_perbill": 687203792, + "support_perbill": 352678572, + "approval": 68.7203792, + "support": 35.2678572 + }, + { + "time_hours": 100, + "approval_perbill": 685534592, + "support_perbill": 351190477, + "approval": 68.5534592, + "support": 35.1190477 + }, + { + "time_hours": 101, + "approval_perbill": 683881064, + "support_perbill": 349702381, + "approval": 68.3881064, + "support": 34.9702381 + }, + { + "time_hours": 102, + "approval_perbill": 682242991, + "support_perbill": 348214286, + "approval": 68.2242991, + "support": 34.8214286 + }, + { + "time_hours": 103, + "approval_perbill": 680620155, + "support_perbill": 346726191, + "approval": 68.0620155, + "support": 34.6726191 + }, + { + "time_hours": 104, + "approval_perbill": 679012346, + "support_perbill": 345238096, + "approval": 67.9012346, + "support": 34.5238096 + }, + { + "time_hours": 105, + "approval_perbill": 677419355, + "support_perbill": 343750000, + "approval": 67.7419355, + "support": 34.375 + }, + { + "time_hours": 106, + "approval_perbill": 675840979, + "support_perbill": 342261905, + "approval": 67.5840979, + "support": 34.2261905 + }, + { + "time_hours": 107, + "approval_perbill": 674277017, + "support_perbill": 340773810, + "approval": 67.4277017, + "support": 34.077381 + }, + { + "time_hours": 108, + "approval_perbill": 672727273, + "support_perbill": 339285715, + "approval": 67.2727273, + "support": 33.9285715 + }, + { + "time_hours": 109, + "approval_perbill": 671191554, + "support_perbill": 337797620, + "approval": 67.1191554, + "support": 33.779762 + }, + { + "time_hours": 110, + "approval_perbill": 669669670, + "support_perbill": 336309524, + "approval": 66.966967, + "support": 33.6309524 + }, + { + "time_hours": 111, + "approval_perbill": 668161435, + "support_perbill": 334821429, + "approval": 66.8161435, + "support": 33.4821429 + }, + { + "time_hours": 112, + "approval_perbill": 666666667, + "support_perbill": 333333334, + "approval": 66.6666667, + "support": 33.3333334 + }, + { + "time_hours": 113, + "approval_perbill": 665185186, + "support_perbill": 331845239, + "approval": 66.5185186, + "support": 33.1845239 + }, + { + "time_hours": 114, + "approval_perbill": 663716814, + "support_perbill": 330357143, + "approval": 66.3716814, + "support": 33.0357143 + }, + { + "time_hours": 115, + "approval_perbill": 662261381, + "support_perbill": 328869048, + "approval": 66.2261381, + "support": 32.8869048 + }, + { + "time_hours": 116, + "approval_perbill": 660818714, + "support_perbill": 327380953, + "approval": 66.0818714, + "support": 32.7380953 + }, + { + "time_hours": 117, + "approval_perbill": 659388647, + "support_perbill": 325892858, + "approval": 65.9388647, + "support": 32.5892858 + }, + { + "time_hours": 118, + "approval_perbill": 657971015, + "support_perbill": 324404762, + "approval": 65.7971015, + "support": 32.4404762 + }, + { + "time_hours": 119, + "approval_perbill": 656565657, + "support_perbill": 322916667, + "approval": 65.6565657, + "support": 32.2916667 + }, + { + "time_hours": 120, + "approval_perbill": 655172414, + "support_perbill": 321428572, + "approval": 65.5172414, + "support": 32.1428572 + }, + { + "time_hours": 121, + "approval_perbill": 653791130, + "support_perbill": 319940477, + "approval": 65.379113, + "support": 31.9940477 + }, + { + "time_hours": 122, + "approval_perbill": 652421652, + "support_perbill": 318452381, + "approval": 65.2421652, + "support": 31.8452381 + }, + { + "time_hours": 123, + "approval_perbill": 651063830, + "support_perbill": 316964286, + "approval": 65.106383, + "support": 31.6964286 + }, + { + "time_hours": 124, + "approval_perbill": 649717514, + "support_perbill": 315476191, + "approval": 64.9717514, + "support": 31.5476191 + }, + { + "time_hours": 125, + "approval_perbill": 648382560, + "support_perbill": 313988096, + "approval": 64.838256, + "support": 31.3988096 + }, + { + "time_hours": 126, + "approval_perbill": 647058823, + "support_perbill": 312500000, + "approval": 64.7058823, + "support": 31.25 + }, + { + "time_hours": 127, + "approval_perbill": 645746165, + "support_perbill": 311011905, + "approval": 64.5746165, + "support": 31.1011905 + }, + { + "time_hours": 128, + "approval_perbill": 644444445, + "support_perbill": 309523810, + "approval": 64.4444445, + "support": 30.952381 + }, + { + "time_hours": 129, + "approval_perbill": 643153527, + "support_perbill": 308035715, + "approval": 64.3153527, + "support": 30.8035715 + }, + { + "time_hours": 130, + "approval_perbill": 641873279, + "support_perbill": 306547620, + "approval": 64.1873279, + "support": 30.654762 + }, + { + "time_hours": 131, + "approval_perbill": 640603567, + "support_perbill": 305059524, + "approval": 64.0603567, + "support": 30.5059524 + }, + { + "time_hours": 132, + "approval_perbill": 639344263, + "support_perbill": 303571429, + "approval": 63.9344263, + "support": 30.3571429 + }, + { + "time_hours": 133, + "approval_perbill": 638095238, + "support_perbill": 302083334, + "approval": 63.8095238, + "support": 30.2083334 + }, + { + "time_hours": 134, + "approval_perbill": 636856369, + "support_perbill": 300595239, + "approval": 63.6856369, + "support": 30.0595239 + }, + { + "time_hours": 135, + "approval_perbill": 635627530, + "support_perbill": 299107143, + "approval": 63.562753, + "support": 29.9107143 + }, + { + "time_hours": 136, + "approval_perbill": 634408602, + "support_perbill": 297619048, + "approval": 63.4408602, + "support": 29.7619048 + }, + { + "time_hours": 137, + "approval_perbill": 633199465, + "support_perbill": 296130953, + "approval": 63.3199465, + "support": 29.6130953 + }, + { + "time_hours": 138, + "approval_perbill": 632000000, + "support_perbill": 294642858, + "approval": 63.2, + "support": 29.4642858 + }, + { + "time_hours": 139, + "approval_perbill": 630810093, + "support_perbill": 293154762, + "approval": 63.0810093, + "support": 29.3154762 + }, + { + "time_hours": 140, + "approval_perbill": 629629630, + "support_perbill": 291666667, + "approval": 62.962963, + "support": 29.1666667 + }, + { + "time_hours": 141, + "approval_perbill": 628458498, + "support_perbill": 290178572, + "approval": 62.8458498, + "support": 29.0178572 + }, + { + "time_hours": 142, + "approval_perbill": 627296588, + "support_perbill": 288690477, + "approval": 62.7296588, + "support": 28.8690477 + }, + { + "time_hours": 143, + "approval_perbill": 626143791, + "support_perbill": 287202381, + "approval": 62.6143791, + "support": 28.7202381 + }, + { + "time_hours": 144, + "approval_perbill": 625000000, + "support_perbill": 285714286, + "approval": 62.5, + "support": 28.5714286 + }, + { + "time_hours": 145, + "approval_perbill": 623865110, + "support_perbill": 284226191, + "approval": 62.386511, + "support": 28.4226191 + }, + { + "time_hours": 146, + "approval_perbill": 622739018, + "support_perbill": 282738096, + "approval": 62.2739018, + "support": 28.2738096 + }, + { + "time_hours": 147, + "approval_perbill": 621621621, + "support_perbill": 281250000, + "approval": 62.1621621, + "support": 28.125 + }, + { + "time_hours": 148, + "approval_perbill": 620512821, + "support_perbill": 279761905, + "approval": 62.0512821, + "support": 27.9761905 + }, + { + "time_hours": 149, + "approval_perbill": 619412516, + "support_perbill": 278273810, + "approval": 61.9412516, + "support": 27.827381 + }, + { + "time_hours": 150, + "approval_perbill": 618320611, + "support_perbill": 276785715, + "approval": 61.8320611, + "support": 27.6785715 + }, + { + "time_hours": 151, + "approval_perbill": 617237009, + "support_perbill": 275297620, + "approval": 61.7237009, + "support": 27.529762 + }, + { + "time_hours": 152, + "approval_perbill": 616161616, + "support_perbill": 273809524, + "approval": 61.6161616, + "support": 27.3809524 + }, + { + "time_hours": 153, + "approval_perbill": 615094340, + "support_perbill": 272321429, + "approval": 61.509434, + "support": 27.2321429 + }, + { + "time_hours": 154, + "approval_perbill": 614035088, + "support_perbill": 270833334, + "approval": 61.4035088, + "support": 27.0833334 + }, + { + "time_hours": 155, + "approval_perbill": 612983770, + "support_perbill": 269345239, + "approval": 61.298377, + "support": 26.9345239 + }, + { + "time_hours": 156, + "approval_perbill": 611940298, + "support_perbill": 267857143, + "approval": 61.1940298, + "support": 26.7857143 + }, + { + "time_hours": 157, + "approval_perbill": 610904585, + "support_perbill": 266369048, + "approval": 61.0904585, + "support": 26.6369048 + }, + { + "time_hours": 158, + "approval_perbill": 609876543, + "support_perbill": 264880953, + "approval": 60.9876543, + "support": 26.4880953 + }, + { + "time_hours": 159, + "approval_perbill": 608856089, + "support_perbill": 263392858, + "approval": 60.8856089, + "support": 26.3392858 + }, + { + "time_hours": 160, + "approval_perbill": 607843137, + "support_perbill": 261904762, + "approval": 60.7843137, + "support": 26.1904762 + }, + { + "time_hours": 161, + "approval_perbill": 606837607, + "support_perbill": 260416667, + "approval": 60.6837607, + "support": 26.0416667 + }, + { + "time_hours": 162, + "approval_perbill": 605839416, + "support_perbill": 258928572, + "approval": 60.5839416, + "support": 25.8928572 + }, + { + "time_hours": 163, + "approval_perbill": 604848485, + "support_perbill": 257440477, + "approval": 60.4848485, + "support": 25.7440477 + }, + { + "time_hours": 164, + "approval_perbill": 603864734, + "support_perbill": 255952381, + "approval": 60.3864734, + "support": 25.5952381 + }, + { + "time_hours": 165, + "approval_perbill": 602888087, + "support_perbill": 254464286, + "approval": 60.2888087, + "support": 25.4464286 + }, + { + "time_hours": 166, + "approval_perbill": 601918465, + "support_perbill": 252976191, + "approval": 60.1918465, + "support": 25.2976191 + }, + { + "time_hours": 167, + "approval_perbill": 600955794, + "support_perbill": 251488096, + "approval": 60.0955794, + "support": 25.1488096 + }, + { + "time_hours": 168, + "approval_perbill": 600000000, + "support_perbill": 250000000, + "approval": 60, + "support": 25 + }, + { + "time_hours": 169, + "approval_perbill": 599051008, + "support_perbill": 248511905, + "approval": 59.9051008, + "support": 24.8511905 + }, + { + "time_hours": 170, + "approval_perbill": 598108747, + "support_perbill": 247023810, + "approval": 59.8108747, + "support": 24.702381 + }, + { + "time_hours": 171, + "approval_perbill": 597173145, + "support_perbill": 245535715, + "approval": 59.7173145, + "support": 24.5535715 + }, + { + "time_hours": 172, + "approval_perbill": 596244131, + "support_perbill": 244047620, + "approval": 59.6244131, + "support": 24.404762 + }, + { + "time_hours": 173, + "approval_perbill": 595321637, + "support_perbill": 242559524, + "approval": 59.5321637, + "support": 24.2559524 + }, + { + "time_hours": 174, + "approval_perbill": 594405594, + "support_perbill": 241071429, + "approval": 59.4405594, + "support": 24.1071429 + }, + { + "time_hours": 175, + "approval_perbill": 593495935, + "support_perbill": 239583334, + "approval": 59.3495935, + "support": 23.9583334 + }, + { + "time_hours": 176, + "approval_perbill": 592592593, + "support_perbill": 238095239, + "approval": 59.2592593, + "support": 23.8095239 + }, + { + "time_hours": 177, + "approval_perbill": 591695502, + "support_perbill": 236607143, + "approval": 59.1695502, + "support": 23.6607143 + }, + { + "time_hours": 178, + "approval_perbill": 590804598, + "support_perbill": 235119048, + "approval": 59.0804598, + "support": 23.5119048 + }, + { + "time_hours": 179, + "approval_perbill": 589919817, + "support_perbill": 233630953, + "approval": 58.9919817, + "support": 23.3630953 + }, + { + "time_hours": 180, + "approval_perbill": 589041096, + "support_perbill": 232142858, + "approval": 58.9041096, + "support": 23.2142858 + }, + { + "time_hours": 181, + "approval_perbill": 588168373, + "support_perbill": 230654762, + "approval": 58.8168373, + "support": 23.0654762 + }, + { + "time_hours": 182, + "approval_perbill": 587301587, + "support_perbill": 229166667, + "approval": 58.7301587, + "support": 22.9166667 + }, + { + "time_hours": 183, + "approval_perbill": 586440678, + "support_perbill": 227678572, + "approval": 58.6440678, + "support": 22.7678572 + }, + { + "time_hours": 184, + "approval_perbill": 585585585, + "support_perbill": 226190477, + "approval": 58.5585585, + "support": 22.6190477 + }, + { + "time_hours": 185, + "approval_perbill": 584736251, + "support_perbill": 224702381, + "approval": 58.4736251, + "support": 22.4702381 + }, + { + "time_hours": 186, + "approval_perbill": 583892617, + "support_perbill": 223214286, + "approval": 58.3892617, + "support": 22.3214286 + }, + { + "time_hours": 187, + "approval_perbill": 583054626, + "support_perbill": 221726191, + "approval": 58.3054626, + "support": 22.1726191 + }, + { + "time_hours": 188, + "approval_perbill": 582222222, + "support_perbill": 220238096, + "approval": 58.2222222, + "support": 22.0238096 + }, + { + "time_hours": 189, + "approval_perbill": 581395349, + "support_perbill": 218750000, + "approval": 58.1395349, + "support": 21.875 + }, + { + "time_hours": 190, + "approval_perbill": 580573951, + "support_perbill": 217261905, + "approval": 58.0573951, + "support": 21.7261905 + }, + { + "time_hours": 191, + "approval_perbill": 579757976, + "support_perbill": 215773810, + "approval": 57.9757976, + "support": 21.577381 + }, + { + "time_hours": 192, + "approval_perbill": 578947368, + "support_perbill": 214285715, + "approval": 57.8947368, + "support": 21.4285715 + }, + { + "time_hours": 193, + "approval_perbill": 578142076, + "support_perbill": 212797620, + "approval": 57.8142076, + "support": 21.279762 + }, + { + "time_hours": 194, + "approval_perbill": 577342048, + "support_perbill": 211309524, + "approval": 57.7342048, + "support": 21.1309524 + }, + { + "time_hours": 195, + "approval_perbill": 576547231, + "support_perbill": 209821429, + "approval": 57.6547231, + "support": 20.9821429 + }, + { + "time_hours": 196, + "approval_perbill": 575757576, + "support_perbill": 208333334, + "approval": 57.5757576, + "support": 20.8333334 + }, + { + "time_hours": 197, + "approval_perbill": 574973031, + "support_perbill": 206845239, + "approval": 57.4973031, + "support": 20.6845239 + }, + { + "time_hours": 198, + "approval_perbill": 574193548, + "support_perbill": 205357143, + "approval": 57.4193548, + "support": 20.5357143 + }, + { + "time_hours": 199, + "approval_perbill": 573419078, + "support_perbill": 203869048, + "approval": 57.3419078, + "support": 20.3869048 + }, + { + "time_hours": 200, + "approval_perbill": 572649572, + "support_perbill": 202380953, + "approval": 57.2649572, + "support": 20.2380953 + }, + { + "time_hours": 201, + "approval_perbill": 571884984, + "support_perbill": 200892858, + "approval": 57.1884984, + "support": 20.0892858 + }, + { + "time_hours": 202, + "approval_perbill": 571125265, + "support_perbill": 199404762, + "approval": 57.1125265, + "support": 19.9404762 + }, + { + "time_hours": 203, + "approval_perbill": 570370370, + "support_perbill": 197916667, + "approval": 57.037037, + "support": 19.7916667 + }, + { + "time_hours": 204, + "approval_perbill": 569620253, + "support_perbill": 196428572, + "approval": 56.9620253, + "support": 19.6428572 + }, + { + "time_hours": 205, + "approval_perbill": 568874868, + "support_perbill": 194940477, + "approval": 56.8874868, + "support": 19.4940477 + }, + { + "time_hours": 206, + "approval_perbill": 568134172, + "support_perbill": 193452381, + "approval": 56.8134172, + "support": 19.3452381 + }, + { + "time_hours": 207, + "approval_perbill": 567398119, + "support_perbill": 191964286, + "approval": 56.7398119, + "support": 19.1964286 + }, + { + "time_hours": 208, + "approval_perbill": 566666666, + "support_perbill": 190476191, + "approval": 56.6666666, + "support": 19.0476191 + }, + { + "time_hours": 209, + "approval_perbill": 565939771, + "support_perbill": 188988096, + "approval": 56.5939771, + "support": 18.8988096 + }, + { + "time_hours": 210, + "approval_perbill": 565217391, + "support_perbill": 187500000, + "approval": 56.5217391, + "support": 18.75 + }, + { + "time_hours": 211, + "approval_perbill": 564499484, + "support_perbill": 186011905, + "approval": 56.4499484, + "support": 18.6011905 + }, + { + "time_hours": 212, + "approval_perbill": 563786008, + "support_perbill": 184523810, + "approval": 56.3786008, + "support": 18.452381 + }, + { + "time_hours": 213, + "approval_perbill": 563076923, + "support_perbill": 183035715, + "approval": 56.3076923, + "support": 18.3035715 + }, + { + "time_hours": 214, + "approval_perbill": 562372188, + "support_perbill": 181547620, + "approval": 56.2372188, + "support": 18.154762 + }, + { + "time_hours": 215, + "approval_perbill": 561671763, + "support_perbill": 180059524, + "approval": 56.1671763, + "support": 18.0059524 + }, + { + "time_hours": 216, + "approval_perbill": 560975610, + "support_perbill": 178571429, + "approval": 56.097561, + "support": 17.8571429 + }, + { + "time_hours": 217, + "approval_perbill": 560283688, + "support_perbill": 177083334, + "approval": 56.0283688, + "support": 17.7083334 + }, + { + "time_hours": 218, + "approval_perbill": 559595959, + "support_perbill": 175595239, + "approval": 55.9595959, + "support": 17.5595239 + }, + { + "time_hours": 219, + "approval_perbill": 558912386, + "support_perbill": 174107143, + "approval": 55.8912386, + "support": 17.4107143 + }, + { + "time_hours": 220, + "approval_perbill": 558232931, + "support_perbill": 172619048, + "approval": 55.8232931, + "support": 17.2619048 + }, + { + "time_hours": 221, + "approval_perbill": 557557557, + "support_perbill": 171130953, + "approval": 55.7557557, + "support": 17.1130953 + }, + { + "time_hours": 222, + "approval_perbill": 556886227, + "support_perbill": 169642858, + "approval": 55.6886227, + "support": 16.9642858 + }, + { + "time_hours": 223, + "approval_perbill": 556218905, + "support_perbill": 168154762, + "approval": 55.6218905, + "support": 16.8154762 + }, + { + "time_hours": 224, + "approval_perbill": 555555555, + "support_perbill": 166666667, + "approval": 55.5555555, + "support": 16.6666667 + }, + { + "time_hours": 225, + "approval_perbill": 554896142, + "support_perbill": 165178572, + "approval": 55.4896142, + "support": 16.5178572 + }, + { + "time_hours": 226, + "approval_perbill": 554240631, + "support_perbill": 163690477, + "approval": 55.4240631, + "support": 16.3690477 + }, + { + "time_hours": 227, + "approval_perbill": 553588987, + "support_perbill": 162202381, + "approval": 55.3588987, + "support": 16.2202381 + }, + { + "time_hours": 228, + "approval_perbill": 552941176, + "support_perbill": 160714286, + "approval": 55.2941176, + "support": 16.0714286 + }, + { + "time_hours": 229, + "approval_perbill": 552297165, + "support_perbill": 159226191, + "approval": 55.2297165, + "support": 15.9226191 + }, + { + "time_hours": 230, + "approval_perbill": 551656920, + "support_perbill": 157738096, + "approval": 55.165692, + "support": 15.7738096 + }, + { + "time_hours": 231, + "approval_perbill": 551020408, + "support_perbill": 156250000, + "approval": 55.1020408, + "support": 15.625 + }, + { + "time_hours": 232, + "approval_perbill": 550387597, + "support_perbill": 154761905, + "approval": 55.0387597, + "support": 15.4761905 + }, + { + "time_hours": 233, + "approval_perbill": 549758454, + "support_perbill": 153273810, + "approval": 54.9758454, + "support": 15.327381 + }, + { + "time_hours": 234, + "approval_perbill": 549132948, + "support_perbill": 151785715, + "approval": 54.9132948, + "support": 15.1785715 + }, + { + "time_hours": 235, + "approval_perbill": 548511047, + "support_perbill": 150297620, + "approval": 54.8511047, + "support": 15.029762 + }, + { + "time_hours": 236, + "approval_perbill": 547892720, + "support_perbill": 148809524, + "approval": 54.789272, + "support": 14.8809524 + }, + { + "time_hours": 237, + "approval_perbill": 547277937, + "support_perbill": 147321429, + "approval": 54.7277937, + "support": 14.7321429 + }, + { + "time_hours": 238, + "approval_perbill": 546666666, + "support_perbill": 145833334, + "approval": 54.6666666, + "support": 14.5833334 + }, + { + "time_hours": 239, + "approval_perbill": 546058879, + "support_perbill": 144345239, + "approval": 54.6058879, + "support": 14.4345239 + }, + { + "time_hours": 240, + "approval_perbill": 545454545, + "support_perbill": 142857143, + "approval": 54.5454545, + "support": 14.2857143 + }, + { + "time_hours": 241, + "approval_perbill": 544853635, + "support_perbill": 141369048, + "approval": 54.4853635, + "support": 14.1369048 + }, + { + "time_hours": 242, + "approval_perbill": 544256120, + "support_perbill": 139880953, + "approval": 54.425612, + "support": 13.9880953 + }, + { + "time_hours": 243, + "approval_perbill": 543661971, + "support_perbill": 138392858, + "approval": 54.3661971, + "support": 13.8392858 + }, + { + "time_hours": 244, + "approval_perbill": 543071161, + "support_perbill": 136904762, + "approval": 54.3071161, + "support": 13.6904762 + }, + { + "time_hours": 245, + "approval_perbill": 542483660, + "support_perbill": 135416667, + "approval": 54.248366, + "support": 13.5416667 + }, + { + "time_hours": 246, + "approval_perbill": 541899441, + "support_perbill": 133928572, + "approval": 54.1899441, + "support": 13.3928572 + }, + { + "time_hours": 247, + "approval_perbill": 541318477, + "support_perbill": 132440477, + "approval": 54.1318477, + "support": 13.2440477 + }, + { + "time_hours": 248, + "approval_perbill": 540740740, + "support_perbill": 130952381, + "approval": 54.074074, + "support": 13.0952381 + }, + { + "time_hours": 249, + "approval_perbill": 540166205, + "support_perbill": 129464286, + "approval": 54.0166205, + "support": 12.9464286 + }, + { + "time_hours": 250, + "approval_perbill": 539594843, + "support_perbill": 127976191, + "approval": 53.9594843, + "support": 12.7976191 + }, + { + "time_hours": 251, + "approval_perbill": 539026630, + "support_perbill": 126488096, + "approval": 53.902663, + "support": 12.6488096 + }, + { + "time_hours": 252, + "approval_perbill": 538461538, + "support_perbill": 125000000, + "approval": 53.8461538, + "support": 12.5 + }, + { + "time_hours": 253, + "approval_perbill": 537899543, + "support_perbill": 123511905, + "approval": 53.7899543, + "support": 12.3511905 + }, + { + "time_hours": 254, + "approval_perbill": 537340619, + "support_perbill": 122023810, + "approval": 53.7340619, + "support": 12.202381 + }, + { + "time_hours": 255, + "approval_perbill": 536784741, + "support_perbill": 120535715, + "approval": 53.6784741, + "support": 12.0535715 + }, + { + "time_hours": 256, + "approval_perbill": 536231884, + "support_perbill": 119047620, + "approval": 53.6231884, + "support": 11.904762 + }, + { + "time_hours": 257, + "approval_perbill": 535682023, + "support_perbill": 117559524, + "approval": 53.5682023, + "support": 11.7559524 + }, + { + "time_hours": 258, + "approval_perbill": 535135135, + "support_perbill": 116071429, + "approval": 53.5135135, + "support": 11.6071429 + }, + { + "time_hours": 259, + "approval_perbill": 534591195, + "support_perbill": 114583334, + "approval": 53.4591195, + "support": 11.4583334 + }, + { + "time_hours": 260, + "approval_perbill": 534050179, + "support_perbill": 113095239, + "approval": 53.4050179, + "support": 11.3095239 + }, + { + "time_hours": 261, + "approval_perbill": 533512064, + "support_perbill": 111607143, + "approval": 53.3512064, + "support": 11.1607143 + }, + { + "time_hours": 262, + "approval_perbill": 532976827, + "support_perbill": 110119048, + "approval": 53.2976827, + "support": 11.0119048 + }, + { + "time_hours": 263, + "approval_perbill": 532444444, + "support_perbill": 108630953, + "approval": 53.2444444, + "support": 10.8630953 + }, + { + "time_hours": 264, + "approval_perbill": 531914893, + "support_perbill": 107142858, + "approval": 53.1914893, + "support": 10.7142858 + }, + { + "time_hours": 265, + "approval_perbill": 531388152, + "support_perbill": 105654762, + "approval": 53.1388152, + "support": 10.5654762 + }, + { + "time_hours": 266, + "approval_perbill": 530864197, + "support_perbill": 104166667, + "approval": 53.0864197, + "support": 10.4166667 + }, + { + "time_hours": 267, + "approval_perbill": 530343007, + "support_perbill": 102678572, + "approval": 53.0343007, + "support": 10.2678572 + }, + { + "time_hours": 268, + "approval_perbill": 529824561, + "support_perbill": 101190477, + "approval": 52.9824561, + "support": 10.1190477 + }, + { + "time_hours": 269, + "approval_perbill": 529308836, + "support_perbill": 99702381, + "approval": 52.9308836, + "support": 9.9702381 + }, + { + "time_hours": 270, + "approval_perbill": 528795811, + "support_perbill": 98214286, + "approval": 52.8795811, + "support": 9.8214286 + }, + { + "time_hours": 271, + "approval_perbill": 528285465, + "support_perbill": 96726191, + "approval": 52.8285465, + "support": 9.6726191 + }, + { + "time_hours": 272, + "approval_perbill": 527777777, + "support_perbill": 95238096, + "approval": 52.7777777, + "support": 9.5238096 + }, + { + "time_hours": 273, + "approval_perbill": 527272727, + "support_perbill": 93750000, + "approval": 52.7272727, + "support": 9.375 + }, + { + "time_hours": 274, + "approval_perbill": 526770293, + "support_perbill": 92261905, + "approval": 52.6770293, + "support": 9.2261905 + }, + { + "time_hours": 275, + "approval_perbill": 526270456, + "support_perbill": 90773810, + "approval": 52.6270456, + "support": 9.077381 + }, + { + "time_hours": 276, + "approval_perbill": 525773195, + "support_perbill": 89285715, + "approval": 52.5773195, + "support": 8.9285715 + }, + { + "time_hours": 277, + "approval_perbill": 525278491, + "support_perbill": 87797620, + "approval": 52.5278491, + "support": 8.779762 + }, + { + "time_hours": 278, + "approval_perbill": 524786324, + "support_perbill": 86309524, + "approval": 52.4786324, + "support": 8.6309524 + }, + { + "time_hours": 279, + "approval_perbill": 524296675, + "support_perbill": 84821429, + "approval": 52.4296675, + "support": 8.4821429 + }, + { + "time_hours": 280, + "approval_perbill": 523809523, + "support_perbill": 83333334, + "approval": 52.3809523, + "support": 8.3333334 + }, + { + "time_hours": 281, + "approval_perbill": 523324851, + "support_perbill": 81845239, + "approval": 52.3324851, + "support": 8.1845239 + }, + { + "time_hours": 282, + "approval_perbill": 522842639, + "support_perbill": 80357143, + "approval": 52.2842639, + "support": 8.0357143 + }, + { + "time_hours": 283, + "approval_perbill": 522362869, + "support_perbill": 78869048, + "approval": 52.2362869, + "support": 7.8869048 + }, + { + "time_hours": 284, + "approval_perbill": 521885521, + "support_perbill": 77380953, + "approval": 52.1885521, + "support": 7.7380953 + }, + { + "time_hours": 285, + "approval_perbill": 521410579, + "support_perbill": 75892858, + "approval": 52.1410579, + "support": 7.5892858 + }, + { + "time_hours": 286, + "approval_perbill": 520938023, + "support_perbill": 74404762, + "approval": 52.0938023, + "support": 7.4404762 + }, + { + "time_hours": 287, + "approval_perbill": 520467836, + "support_perbill": 72916667, + "approval": 52.0467836, + "support": 7.2916667 + }, + { + "time_hours": 288, + "approval_perbill": 519999999, + "support_perbill": 71428572, + "approval": 51.9999999, + "support": 7.1428572 + }, + { + "time_hours": 289, + "approval_perbill": 519534497, + "support_perbill": 69940477, + "approval": 51.9534497, + "support": 6.9940477 + }, + { + "time_hours": 290, + "approval_perbill": 519071310, + "support_perbill": 68452381, + "approval": 51.907131, + "support": 6.8452381 + }, + { + "time_hours": 291, + "approval_perbill": 518610421, + "support_perbill": 66964286, + "approval": 51.8610421, + "support": 6.6964286 + }, + { + "time_hours": 292, + "approval_perbill": 518151815, + "support_perbill": 65476191, + "approval": 51.8151815, + "support": 6.5476191 + }, + { + "time_hours": 293, + "approval_perbill": 517695473, + "support_perbill": 63988096, + "approval": 51.7695473, + "support": 6.3988096 + }, + { + "time_hours": 294, + "approval_perbill": 517241379, + "support_perbill": 62500000, + "approval": 51.7241379, + "support": 6.25 + }, + { + "time_hours": 295, + "approval_perbill": 516789516, + "support_perbill": 61011905, + "approval": 51.6789516, + "support": 6.1011905 + }, + { + "time_hours": 296, + "approval_perbill": 516339869, + "support_perbill": 59523810, + "approval": 51.6339869, + "support": 5.952381 + }, + { + "time_hours": 297, + "approval_perbill": 515892420, + "support_perbill": 58035715, + "approval": 51.589242, + "support": 5.8035715 + }, + { + "time_hours": 298, + "approval_perbill": 515447154, + "support_perbill": 56547620, + "approval": 51.5447154, + "support": 5.654762 + }, + { + "time_hours": 299, + "approval_perbill": 515004055, + "support_perbill": 55059524, + "approval": 51.5004055, + "support": 5.5059524 + }, + { + "time_hours": 300, + "approval_perbill": 514563106, + "support_perbill": 53571429, + "approval": 51.4563106, + "support": 5.3571429 + }, + { + "time_hours": 301, + "approval_perbill": 514124293, + "support_perbill": 52083334, + "approval": 51.4124293, + "support": 5.2083334 + }, + { + "time_hours": 302, + "approval_perbill": 513687600, + "support_perbill": 50595239, + "approval": 51.36876, + "support": 5.0595239 + }, + { + "time_hours": 303, + "approval_perbill": 513253011, + "support_perbill": 49107143, + "approval": 51.3253011, + "support": 4.9107143 + }, + { + "time_hours": 304, + "approval_perbill": 512820512, + "support_perbill": 47619048, + "approval": 51.2820512, + "support": 4.7619048 + }, + { + "time_hours": 305, + "approval_perbill": 512390087, + "support_perbill": 46130953, + "approval": 51.2390087, + "support": 4.6130953 + }, + { + "time_hours": 306, + "approval_perbill": 511961722, + "support_perbill": 44642858, + "approval": 51.1961722, + "support": 4.4642858 + }, + { + "time_hours": 307, + "approval_perbill": 511535401, + "support_perbill": 43154762, + "approval": 51.1535401, + "support": 4.3154762 + }, + { + "time_hours": 308, + "approval_perbill": 511111111, + "support_perbill": 41666667, + "approval": 51.1111111, + "support": 4.1666667 + }, + { + "time_hours": 309, + "approval_perbill": 510688835, + "support_perbill": 40178572, + "approval": 51.0688835, + "support": 4.0178572 + }, + { + "time_hours": 310, + "approval_perbill": 510268562, + "support_perbill": 38690477, + "approval": 51.0268562, + "support": 3.8690477 + }, + { + "time_hours": 311, + "approval_perbill": 509850275, + "support_perbill": 37202381, + "approval": 50.9850275, + "support": 3.7202381 + }, + { + "time_hours": 312, + "approval_perbill": 509433962, + "support_perbill": 35714286, + "approval": 50.9433962, + "support": 3.5714286 + }, + { + "time_hours": 313, + "approval_perbill": 509019607, + "support_perbill": 34226191, + "approval": 50.9019607, + "support": 3.4226191 + }, + { + "time_hours": 314, + "approval_perbill": 508607198, + "support_perbill": 32738096, + "approval": 50.8607198, + "support": 3.2738096 + }, + { + "time_hours": 315, + "approval_perbill": 508196721, + "support_perbill": 31250000, + "approval": 50.8196721, + "support": 3.125 + }, + { + "time_hours": 316, + "approval_perbill": 507788161, + "support_perbill": 29761905, + "approval": 50.7788161, + "support": 2.9761905 + }, + { + "time_hours": 317, + "approval_perbill": 507381507, + "support_perbill": 28273810, + "approval": 50.7381507, + "support": 2.827381 + }, + { + "time_hours": 318, + "approval_perbill": 506976744, + "support_perbill": 26785715, + "approval": 50.6976744, + "support": 2.6785715 + }, + { + "time_hours": 319, + "approval_perbill": 506573859, + "support_perbill": 25297620, + "approval": 50.6573859, + "support": 2.529762 + }, + { + "time_hours": 320, + "approval_perbill": 506172839, + "support_perbill": 23809524, + "approval": 50.6172839, + "support": 2.3809524 + }, + { + "time_hours": 321, + "approval_perbill": 505773671, + "support_perbill": 22321429, + "approval": 50.5773671, + "support": 2.2321429 + }, + { + "time_hours": 322, + "approval_perbill": 505376343, + "support_perbill": 20833334, + "approval": 50.5376343, + "support": 2.0833334 + }, + { + "time_hours": 323, + "approval_perbill": 504980842, + "support_perbill": 19345239, + "approval": 50.4980842, + "support": 1.9345239 + }, + { + "time_hours": 324, + "approval_perbill": 504587155, + "support_perbill": 17857143, + "approval": 50.4587155, + "support": 1.7857143 + }, + { + "time_hours": 325, + "approval_perbill": 504195270, + "support_perbill": 16369048, + "approval": 50.419527, + "support": 1.6369048 + }, + { + "time_hours": 326, + "approval_perbill": 503805174, + "support_perbill": 14880953, + "approval": 50.3805174, + "support": 1.4880953 + }, + { + "time_hours": 327, + "approval_perbill": 503416856, + "support_perbill": 13392858, + "approval": 50.3416856, + "support": 1.3392858 + }, + { + "time_hours": 328, + "approval_perbill": 503030302, + "support_perbill": 11904762, + "approval": 50.3030302, + "support": 1.1904762 + }, + { + "time_hours": 329, + "approval_perbill": 502645502, + "support_perbill": 10416667, + "approval": 50.2645502, + "support": 1.0416667 + }, + { + "time_hours": 330, + "approval_perbill": 502262443, + "support_perbill": 8928572, + "approval": 50.2262443, + "support": 0.8928572 + }, + { + "time_hours": 331, + "approval_perbill": 501881113, + "support_perbill": 7440477, + "approval": 50.1881113, + "support": 0.7440477 + }, + { + "time_hours": 332, + "approval_perbill": 501501501, + "support_perbill": 5952381, + "approval": 50.1501501, + "support": 0.5952381 + }, + { + "time_hours": 333, + "approval_perbill": 501123595, + "support_perbill": 4464286, + "approval": 50.1123595, + "support": 0.4464286 + }, + { + "time_hours": 334, + "approval_perbill": 500747383, + "support_perbill": 2976191, + "approval": 50.0747383, + "support": 0.2976191 + }, + { + "time_hours": 335, + "approval_perbill": 500372855, + "support_perbill": 1488096, + "approval": 50.0372855, + "support": 0.1488096 + }, + { + "time_hours": 336, + "approval_perbill": 499999999, + "support_perbill": 0, + "approval": 49.9999999, + "support": 0 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/kusama/opengov_whitelist.json b/components/utilities/charts_data/kusama/opengov_whitelist.json new file mode 100644 index 000000000000..2b9f71b61e58 --- /dev/null +++ b/components/utilities/charts_data/kusama/opengov_whitelist.json @@ -0,0 +1,2361 @@ +[ + { + "time_hours": 0, + "approval_perbill": 999999999, + "support_perbill": 499999995, + "approval": 99.9999999, + "support": 49.9999995 + }, + { + "time_hours": 1, + "approval_perbill": 994734815, + "support_perbill": 437532142, + "approval": 99.4734815, + "support": 43.7532142 + }, + { + "time_hours": 2, + "approval_perbill": 989548816, + "support_perbill": 390045264, + "approval": 98.9548816, + "support": 39.0045264 + }, + { + "time_hours": 3, + "approval_perbill": 984440228, + "support_perbill": 352727281, + "approval": 98.4440228, + "support": 35.2727281 + }, + { + "time_hours": 4, + "approval_perbill": 979407334, + "support_perbill": 322627750, + "approval": 97.9407334, + "support": 32.262775 + }, + { + "time_hours": 5, + "approval_perbill": 974448461, + "support_perbill": 297836947, + "approval": 97.4448461, + "support": 29.7836947 + }, + { + "time_hours": 6, + "approval_perbill": 969561991, + "support_perbill": 277064231, + "approval": 96.9561991, + "support": 27.7064231 + }, + { + "time_hours": 7, + "approval_perbill": 964746346, + "support_perbill": 259405948, + "approval": 96.4746346, + "support": 25.9405948 + }, + { + "time_hours": 8, + "approval_perbill": 960000002, + "support_perbill": 244210536, + "approval": 96.0000002, + "support": 24.4210536 + }, + { + "time_hours": 9, + "approval_perbill": 955321468, + "support_perbill": 230996317, + "approval": 95.5321468, + "support": 23.0996317 + }, + { + "time_hours": 10, + "approval_perbill": 950709307, + "support_perbill": 219399546, + "approval": 95.0709307, + "support": 21.9399546 + }, + { + "time_hours": 11, + "approval_perbill": 946162112, + "support_perbill": 209140376, + "approval": 94.6162112, + "support": 20.9140376 + }, + { + "time_hours": 12, + "approval_perbill": 941678522, + "support_perbill": 200000007, + "approval": 94.1678522, + "support": 20.0000007 + }, + { + "time_hours": 13, + "approval_perbill": 937257211, + "support_perbill": 191804884, + "approval": 93.7257211, + "support": 19.1804884 + }, + { + "time_hours": 14, + "approval_perbill": 932896892, + "support_perbill": 184415591, + "approval": 93.2896892, + "support": 18.4415591 + }, + { + "time_hours": 15, + "approval_perbill": 928596309, + "support_perbill": 177718838, + "approval": 92.8596309, + "support": 17.7718838 + }, + { + "time_hours": 16, + "approval_perbill": 924354246, + "support_perbill": 171621628, + "approval": 92.4354246, + "support": 17.1621628 + }, + { + "time_hours": 17, + "approval_perbill": 920169512, + "support_perbill": 166046892, + "approval": 92.0169512, + "support": 16.6046892 + }, + { + "time_hours": 18, + "approval_perbill": 916040958, + "support_perbill": 160930238, + "approval": 91.6040958, + "support": 16.0930238 + }, + { + "time_hours": 19, + "approval_perbill": 911967455, + "support_perbill": 156217428, + "approval": 91.1967455, + "support": 15.6217428 + }, + { + "time_hours": 20, + "approval_perbill": 907947914, + "support_perbill": 151862469, + "approval": 90.7947914, + "support": 15.1862469 + }, + { + "time_hours": 21, + "approval_perbill": 903981266, + "support_perbill": 147826091, + "approval": 90.3981266, + "support": 14.7826091 + }, + { + "time_hours": 22, + "approval_perbill": 900066477, + "support_perbill": 144074572, + "approval": 90.0066477, + "support": 14.4074572 + }, + { + "time_hours": 23, + "approval_perbill": 896202534, + "support_perbill": 140578783, + "approval": 89.6202534, + "support": 14.0578783 + }, + { + "time_hours": 24, + "approval_perbill": 892388454, + "support_perbill": 137313437, + "approval": 89.2388454, + "support": 13.7313437 + }, + { + "time_hours": 25, + "approval_perbill": 888623278, + "support_perbill": 134256476, + "approval": 88.8623278, + "support": 13.4256476 + }, + { + "time_hours": 26, + "approval_perbill": 884906070, + "support_perbill": 131388569, + "approval": 88.490607, + "support": 13.1388569 + }, + { + "time_hours": 27, + "approval_perbill": 881235922, + "support_perbill": 128692704, + "approval": 88.1235922, + "support": 12.8692704 + }, + { + "time_hours": 28, + "approval_perbill": 877611943, + "support_perbill": 126153850, + "approval": 87.7611943, + "support": 12.615385 + }, + { + "time_hours": 29, + "approval_perbill": 874033269, + "support_perbill": 123758680, + "approval": 87.4033269, + "support": 12.375868 + }, + { + "time_hours": 30, + "approval_perbill": 870499055, + "support_perbill": 121495330, + "approval": 87.0499055, + "support": 12.149533 + }, + { + "time_hours": 31, + "approval_perbill": 867008478, + "support_perbill": 119353212, + "approval": 86.7008478, + "support": 11.9353212 + }, + { + "time_hours": 32, + "approval_perbill": 863560734, + "support_perbill": 117322838, + "approval": 86.3560734, + "support": 11.7322838 + }, + { + "time_hours": 33, + "approval_perbill": 860155042, + "support_perbill": 115395687, + "approval": 86.0155042, + "support": 11.5395687 + }, + { + "time_hours": 34, + "approval_perbill": 856790633, + "support_perbill": 113564081, + "approval": 85.6790633, + "support": 11.3564081 + }, + { + "time_hours": 35, + "approval_perbill": 853466765, + "support_perbill": 111821089, + "approval": 85.3466765, + "support": 11.1821089 + }, + { + "time_hours": 36, + "approval_perbill": 850182706, + "support_perbill": 110160430, + "approval": 85.0182706, + "support": 11.016043 + }, + { + "time_hours": 37, + "approval_perbill": 846937749, + "support_perbill": 108576407, + "approval": 84.6937749, + "support": 10.8576407 + }, + { + "time_hours": 38, + "approval_perbill": 843731196, + "support_perbill": 107063832, + "approval": 84.3731196, + "support": 10.7063832 + }, + { + "time_hours": 39, + "approval_perbill": 840562372, + "support_perbill": 105617980, + "approval": 84.0562372, + "support": 10.561798 + }, + { + "time_hours": 40, + "approval_perbill": 837430613, + "support_perbill": 104234530, + "approval": 83.7430613, + "support": 10.423453 + }, + { + "time_hours": 41, + "approval_perbill": 834335274, + "support_perbill": 102909528, + "approval": 83.4335274, + "support": 10.2909528 + }, + { + "time_hours": 42, + "approval_perbill": 831275722, + "support_perbill": 101639346, + "approval": 83.1275722, + "support": 10.1639346 + }, + { + "time_hours": 43, + "approval_perbill": 828251342, + "support_perbill": 100420652, + "approval": 82.8251342, + "support": 10.0420652 + }, + { + "time_hours": 44, + "approval_perbill": 825261530, + "support_perbill": 99250377, + "approval": 82.526153, + "support": 9.9250377 + }, + { + "time_hours": 45, + "approval_perbill": 822305695, + "support_perbill": 98125691, + "approval": 82.2305695, + "support": 9.8125691 + }, + { + "time_hours": 46, + "approval_perbill": 819383263, + "support_perbill": 97043982, + "approval": 81.9383263, + "support": 9.7043982 + }, + { + "time_hours": 47, + "approval_perbill": 816493670, + "support_perbill": 96002832, + "approval": 81.649367, + "support": 9.6002832 + }, + { + "time_hours": 48, + "approval_perbill": 813636367, + "support_perbill": 95000002, + "approval": 81.3636367, + "support": 9.5000002 + }, + { + "time_hours": 49, + "approval_perbill": 810810814, + "support_perbill": 94033415, + "approval": 81.0810814, + "support": 9.4033415 + }, + { + "time_hours": 50, + "approval_perbill": 808016486, + "support_perbill": 93101141, + "approval": 80.8016486, + "support": 9.3101141 + }, + { + "time_hours": 51, + "approval_perbill": 805252867, + "support_perbill": 92201384, + "approval": 80.5252867, + "support": 9.2201384 + }, + { + "time_hours": 52, + "approval_perbill": 802519455, + "support_perbill": 91332473, + "approval": 80.2519455, + "support": 9.1332473 + }, + { + "time_hours": 53, + "approval_perbill": 799815756, + "support_perbill": 90492847, + "approval": 79.9815756, + "support": 9.0492847 + }, + { + "time_hours": 54, + "approval_perbill": 797141290, + "support_perbill": 89681052, + "approval": 79.714129, + "support": 8.9681052 + }, + { + "time_hours": 55, + "approval_perbill": 794495583, + "support_perbill": 88895726, + "approval": 79.4495583, + "support": 8.8895726 + }, + { + "time_hours": 56, + "approval_perbill": 791878176, + "support_perbill": 88135595, + "approval": 79.1878176, + "support": 8.8135595 + }, + { + "time_hours": 57, + "approval_perbill": 789288615, + "support_perbill": 87399465, + "approval": 78.9288615, + "support": 8.7399465 + }, + { + "time_hours": 58, + "approval_perbill": 786726461, + "support_perbill": 86686218, + "approval": 78.6726461, + "support": 8.6686218 + }, + { + "time_hours": 59, + "approval_perbill": 784191278, + "support_perbill": 85994804, + "approval": 78.4191278, + "support": 8.5994804 + }, + { + "time_hours": 60, + "approval_perbill": 781682644, + "support_perbill": 85324233, + "approval": 78.1682644, + "support": 8.5324233 + }, + { + "time_hours": 61, + "approval_perbill": 779200144, + "support_perbill": 84673579, + "approval": 77.9200144, + "support": 8.4673579 + }, + { + "time_hours": 62, + "approval_perbill": 776743372, + "support_perbill": 84041967, + "approval": 77.6743372, + "support": 8.4041967 + }, + { + "time_hours": 63, + "approval_perbill": 774311929, + "support_perbill": 83428573, + "approval": 77.4311929, + "support": 8.3428573 + }, + { + "time_hours": 64, + "approval_perbill": 771905427, + "support_perbill": 82832619, + "approval": 77.1905427, + "support": 8.2832619 + }, + { + "time_hours": 65, + "approval_perbill": 769523483, + "support_perbill": 82253373, + "approval": 76.9523483, + "support": 8.2253373 + }, + { + "time_hours": 66, + "approval_perbill": 767165723, + "support_perbill": 81690142, + "approval": 76.7165723, + "support": 8.1690142 + }, + { + "time_hours": 67, + "approval_perbill": 764831781, + "support_perbill": 81142270, + "approval": 76.4831781, + "support": 8.114227 + }, + { + "time_hours": 68, + "approval_perbill": 762521298, + "support_perbill": 80609138, + "approval": 76.2521298, + "support": 8.0609138 + }, + { + "time_hours": 69, + "approval_perbill": 760233921, + "support_perbill": 80090159, + "approval": 76.0233921, + "support": 8.0090159 + }, + { + "time_hours": 70, + "approval_perbill": 757969306, + "support_perbill": 79584776, + "approval": 75.7969306, + "support": 7.9584776 + }, + { + "time_hours": 71, + "approval_perbill": 755727116, + "support_perbill": 79092463, + "approval": 75.5727116, + "support": 7.9092463 + }, + { + "time_hours": 72, + "approval_perbill": 753507017, + "support_perbill": 78612718, + "approval": 75.3507017, + "support": 7.8612718 + }, + { + "time_hours": 73, + "approval_perbill": 751308686, + "support_perbill": 78145066, + "approval": 75.1308686, + "support": 7.8145066 + }, + { + "time_hours": 74, + "approval_perbill": 749131804, + "support_perbill": 77689057, + "approval": 74.9131804, + "support": 7.7689057 + }, + { + "time_hours": 75, + "approval_perbill": 746976058, + "support_perbill": 77244260, + "approval": 74.6976058, + "support": 7.724426 + }, + { + "time_hours": 76, + "approval_perbill": 744841143, + "support_perbill": 76810267, + "approval": 74.4841143, + "support": 7.6810267 + }, + { + "time_hours": 77, + "approval_perbill": 742726757, + "support_perbill": 76386689, + "approval": 74.2726757, + "support": 7.6386689 + }, + { + "time_hours": 78, + "approval_perbill": 740632606, + "support_perbill": 75973155, + "approval": 74.0632606, + "support": 7.5973155 + }, + { + "time_hours": 79, + "approval_perbill": 738558402, + "support_perbill": 75569313, + "approval": 73.8558402, + "support": 7.5569313 + }, + { + "time_hours": 80, + "approval_perbill": 736503859, + "support_perbill": 75174826, + "approval": 73.6503859, + "support": 7.5174826 + }, + { + "time_hours": 81, + "approval_perbill": 734468701, + "support_perbill": 74789372, + "approval": 73.4468701, + "support": 7.4789372 + }, + { + "time_hours": 82, + "approval_perbill": 732452653, + "support_perbill": 74412645, + "approval": 73.2452653, + "support": 7.4412645 + }, + { + "time_hours": 83, + "approval_perbill": 730455448, + "support_perbill": 74044351, + "approval": 73.0455448, + "support": 7.4044351 + }, + { + "time_hours": 84, + "approval_perbill": 728476824, + "support_perbill": 73684211, + "approval": 72.8476824, + "support": 7.3684211 + }, + { + "time_hours": 85, + "approval_perbill": 726516522, + "support_perbill": 73331957, + "approval": 72.6516522, + "support": 7.3331957 + }, + { + "time_hours": 86, + "approval_perbill": 724574288, + "support_perbill": 72987332, + "approval": 72.4574288, + "support": 7.2987332 + }, + { + "time_hours": 87, + "approval_perbill": 722649875, + "support_perbill": 72650092, + "approval": 72.2649875, + "support": 7.2650092 + }, + { + "time_hours": 88, + "approval_perbill": 720743037, + "support_perbill": 72320001, + "approval": 72.0743037, + "support": 7.2320001 + }, + { + "time_hours": 89, + "approval_perbill": 718853535, + "support_perbill": 71996834, + "approval": 71.8853535, + "support": 7.1996834 + }, + { + "time_hours": 90, + "approval_perbill": 716981135, + "support_perbill": 71680377, + "approval": 71.6981135, + "support": 7.1680377 + }, + { + "time_hours": 91, + "approval_perbill": 715125604, + "support_perbill": 71370421, + "approval": 71.5125604, + "support": 7.1370421 + }, + { + "time_hours": 92, + "approval_perbill": 713286716, + "support_perbill": 71066770, + "approval": 71.3286716, + "support": 7.106677 + }, + { + "time_hours": 93, + "approval_perbill": 711464248, + "support_perbill": 70769231, + "approval": 71.1464248, + "support": 7.0769231 + }, + { + "time_hours": 94, + "approval_perbill": 709657981, + "support_perbill": 70477624, + "approval": 70.9657981, + "support": 7.0477624 + }, + { + "time_hours": 95, + "approval_perbill": 707867699, + "support_perbill": 70191771, + "approval": 70.7867699, + "support": 7.0191771 + }, + { + "time_hours": 96, + "approval_perbill": 706093193, + "support_perbill": 69911505, + "approval": 70.6093193, + "support": 6.9911505 + }, + { + "time_hours": 97, + "approval_perbill": 704334253, + "support_perbill": 69636663, + "approval": 70.4334253, + "support": 6.9636663 + }, + { + "time_hours": 98, + "approval_perbill": 702590676, + "support_perbill": 69367089, + "approval": 70.2590676, + "support": 6.9367089 + }, + { + "time_hours": 99, + "approval_perbill": 700862262, + "support_perbill": 69102633, + "approval": 70.0862262, + "support": 6.9102633 + }, + { + "time_hours": 100, + "approval_perbill": 699148814, + "support_perbill": 68843152, + "approval": 69.9148814, + "support": 6.8843152 + }, + { + "time_hours": 101, + "approval_perbill": 697450138, + "support_perbill": 68588504, + "approval": 69.7450138, + "support": 6.8588504 + }, + { + "time_hours": 102, + "approval_perbill": 695766044, + "support_perbill": 68338558, + "approval": 69.5766044, + "support": 6.8338558 + }, + { + "time_hours": 103, + "approval_perbill": 694096344, + "support_perbill": 68093184, + "approval": 69.4096344, + "support": 6.8093184 + }, + { + "time_hours": 104, + "approval_perbill": 692440857, + "support_perbill": 67852257, + "approval": 69.2440857, + "support": 6.7852257 + }, + { + "time_hours": 105, + "approval_perbill": 690799399, + "support_perbill": 67615659, + "approval": 69.0799399, + "support": 6.7615659 + }, + { + "time_hours": 106, + "approval_perbill": 689171795, + "support_perbill": 67383272, + "approval": 68.9171795, + "support": 6.7383272 + }, + { + "time_hours": 107, + "approval_perbill": 687557869, + "support_perbill": 67154986, + "approval": 68.7557869, + "support": 6.7154986 + }, + { + "time_hours": 108, + "approval_perbill": 685957449, + "support_perbill": 66930693, + "approval": 68.5957449, + "support": 6.6930693 + }, + { + "time_hours": 109, + "approval_perbill": 684370368, + "support_perbill": 66710290, + "approval": 68.4370368, + "support": 6.671029 + }, + { + "time_hours": 110, + "approval_perbill": 682796458, + "support_perbill": 66493675, + "approval": 68.2796458, + "support": 6.6493675 + }, + { + "time_hours": 111, + "approval_perbill": 681235556, + "support_perbill": 66280753, + "approval": 68.1235556, + "support": 6.6280753 + }, + { + "time_hours": 112, + "approval_perbill": 679687502, + "support_perbill": 66071429, + "approval": 67.9687502, + "support": 6.6071429 + }, + { + "time_hours": 113, + "approval_perbill": 678152139, + "support_perbill": 65865613, + "approval": 67.8152139, + "support": 6.5865613 + }, + { + "time_hours": 114, + "approval_perbill": 676629309, + "support_perbill": 65663217, + "approval": 67.6629309, + "support": 6.5663217 + }, + { + "time_hours": 115, + "approval_perbill": 675118862, + "support_perbill": 65464158, + "approval": 67.5118862, + "support": 6.5464158 + }, + { + "time_hours": 116, + "approval_perbill": 673620645, + "support_perbill": 65268353, + "approval": 67.3620645, + "support": 6.5268353 + }, + { + "time_hours": 117, + "approval_perbill": 672134512, + "support_perbill": 65075723, + "approval": 67.2134512, + "support": 6.5075723 + }, + { + "time_hours": 118, + "approval_perbill": 670660315, + "support_perbill": 64886191, + "approval": 67.0660315, + "support": 6.4886191 + }, + { + "time_hours": 119, + "approval_perbill": 669197914, + "support_perbill": 64699684, + "approval": 66.9197914, + "support": 6.4699684 + }, + { + "time_hours": 120, + "approval_perbill": 667747166, + "support_perbill": 64516129, + "approval": 66.7747166, + "support": 6.4516129 + }, + { + "time_hours": 121, + "approval_perbill": 666307933, + "support_perbill": 64335457, + "approval": 66.6307933, + "support": 6.4335457 + }, + { + "time_hours": 122, + "approval_perbill": 664880077, + "support_perbill": 64157601, + "approval": 66.4880077, + "support": 6.4157601 + }, + { + "time_hours": 123, + "approval_perbill": 663463466, + "support_perbill": 63982495, + "approval": 66.3463466, + "support": 6.3982495 + }, + { + "time_hours": 124, + "approval_perbill": 662057965, + "support_perbill": 63810075, + "approval": 66.2057965, + "support": 6.3810075 + }, + { + "time_hours": 125, + "approval_perbill": 660663447, + "support_perbill": 63640282, + "approval": 66.0663447, + "support": 6.3640282 + }, + { + "time_hours": 126, + "approval_perbill": 659279781, + "support_perbill": 63473054, + "approval": 65.9279781, + "support": 6.3473054 + }, + { + "time_hours": 127, + "approval_perbill": 657906842, + "support_perbill": 63308335, + "approval": 65.7906842, + "support": 6.3308335 + }, + { + "time_hours": 128, + "approval_perbill": 656544505, + "support_perbill": 63146067, + "approval": 65.6544505, + "support": 6.3146067 + }, + { + "time_hours": 129, + "approval_perbill": 655192648, + "support_perbill": 62986198, + "approval": 65.5192648, + "support": 6.2986198 + }, + { + "time_hours": 130, + "approval_perbill": 653851152, + "support_perbill": 62828674, + "approval": 65.3851152, + "support": 6.2828674 + }, + { + "time_hours": 131, + "approval_perbill": 652519896, + "support_perbill": 62673444, + "approval": 65.2519896, + "support": 6.2673444 + }, + { + "time_hours": 132, + "approval_perbill": 651198765, + "support_perbill": 62520458, + "approval": 65.1198765, + "support": 6.2520458 + }, + { + "time_hours": 133, + "approval_perbill": 649887643, + "support_perbill": 62369668, + "approval": 64.9887643, + "support": 6.2369668 + }, + { + "time_hours": 134, + "approval_perbill": 648586417, + "support_perbill": 62221027, + "approval": 64.8586417, + "support": 6.2221027 + }, + { + "time_hours": 135, + "approval_perbill": 647294974, + "support_perbill": 62074489, + "approval": 64.7294974, + "support": 6.2074489 + }, + { + "time_hours": 136, + "approval_perbill": 646013207, + "support_perbill": 61930011, + "approval": 64.6013207, + "support": 6.1930011 + }, + { + "time_hours": 137, + "approval_perbill": 644741005, + "support_perbill": 61787548, + "approval": 64.4741005, + "support": 6.1787548 + }, + { + "time_hours": 138, + "approval_perbill": 643478263, + "support_perbill": 61647059, + "approval": 64.3478263, + "support": 6.1647059 + }, + { + "time_hours": 139, + "approval_perbill": 642224875, + "support_perbill": 61508503, + "approval": 64.2224875, + "support": 6.1508503 + }, + { + "time_hours": 140, + "approval_perbill": 640980738, + "support_perbill": 61371841, + "approval": 64.0980738, + "support": 6.1371841 + }, + { + "time_hours": 141, + "approval_perbill": 639745749, + "support_perbill": 61237034, + "approval": 63.9745749, + "support": 6.1237034 + }, + { + "time_hours": 142, + "approval_perbill": 638519808, + "support_perbill": 61104045, + "approval": 63.8519808, + "support": 6.1104045 + }, + { + "time_hours": 143, + "approval_perbill": 637302817, + "support_perbill": 60972836, + "approval": 63.7302817, + "support": 6.0972836 + }, + { + "time_hours": 144, + "approval_perbill": 636094677, + "support_perbill": 60843373, + "approval": 63.6094677, + "support": 6.0843373 + }, + { + "time_hours": 145, + "approval_perbill": 634895291, + "support_perbill": 60715621, + "approval": 63.4895291, + "support": 6.0715621 + }, + { + "time_hours": 146, + "approval_perbill": 633704567, + "support_perbill": 60589547, + "approval": 63.3704567, + "support": 6.0589547 + }, + { + "time_hours": 147, + "approval_perbill": 632522409, + "support_perbill": 60465116, + "approval": 63.2522409, + "support": 6.0465116 + }, + { + "time_hours": 148, + "approval_perbill": 631348726, + "support_perbill": 60342298, + "approval": 63.1348726, + "support": 6.0342298 + }, + { + "time_hours": 149, + "approval_perbill": 630183427, + "support_perbill": 60221061, + "approval": 63.0183427, + "support": 6.0221061 + }, + { + "time_hours": 150, + "approval_perbill": 629026422, + "support_perbill": 60101376, + "approval": 62.9026422, + "support": 6.0101376 + }, + { + "time_hours": 151, + "approval_perbill": 627877624, + "support_perbill": 59983211, + "approval": 62.7877624, + "support": 5.9983211 + }, + { + "time_hours": 152, + "approval_perbill": 626736945, + "support_perbill": 59866539, + "approval": 62.6736945, + "support": 5.9866539 + }, + { + "time_hours": 153, + "approval_perbill": 625604299, + "support_perbill": 59751332, + "approval": 62.5604299, + "support": 5.9751332 + }, + { + "time_hours": 154, + "approval_perbill": 624479602, + "support_perbill": 59637562, + "approval": 62.4479602, + "support": 5.9637562 + }, + { + "time_hours": 155, + "approval_perbill": 623362771, + "support_perbill": 59525201, + "approval": 62.3362771, + "support": 5.9525201 + }, + { + "time_hours": 156, + "approval_perbill": 622253723, + "support_perbill": 59414226, + "approval": 62.2253723, + "support": 5.9414226 + }, + { + "time_hours": 157, + "approval_perbill": 621152377, + "support_perbill": 59304609, + "approval": 62.1152377, + "support": 5.9304609 + }, + { + "time_hours": 158, + "approval_perbill": 620058653, + "support_perbill": 59196326, + "approval": 62.0058653, + "support": 5.9196326 + }, + { + "time_hours": 159, + "approval_perbill": 618972473, + "support_perbill": 59089353, + "approval": 61.8972473, + "support": 5.9089353 + }, + { + "time_hours": 160, + "approval_perbill": 617893758, + "support_perbill": 58983666, + "approval": 61.7893758, + "support": 5.8983666 + }, + { + "time_hours": 161, + "approval_perbill": 616822432, + "support_perbill": 58879242, + "approval": 61.6822432, + "support": 5.8879242 + }, + { + "time_hours": 162, + "approval_perbill": 615758419, + "support_perbill": 58776059, + "approval": 61.5758419, + "support": 5.8776059 + }, + { + "time_hours": 163, + "approval_perbill": 614701645, + "support_perbill": 58674094, + "approval": 61.4701645, + "support": 5.8674094 + }, + { + "time_hours": 164, + "approval_perbill": 613652036, + "support_perbill": 58573327, + "approval": 61.3652036, + "support": 5.8573327 + }, + { + "time_hours": 165, + "approval_perbill": 612609519, + "support_perbill": 58473736, + "approval": 61.2609519, + "support": 5.8473736 + }, + { + "time_hours": 166, + "approval_perbill": 611574023, + "support_perbill": 58375301, + "approval": 61.1574023, + "support": 5.8375301 + }, + { + "time_hours": 167, + "approval_perbill": 610545477, + "support_perbill": 58278001, + "approval": 61.0545477, + "support": 5.8278001 + }, + { + "time_hours": 168, + "approval_perbill": 609523811, + "support_perbill": 58181818, + "approval": 60.9523811, + "support": 5.8181818 + }, + { + "time_hours": 169, + "approval_perbill": 608508957, + "support_perbill": 58086732, + "approval": 60.8508957, + "support": 5.8086732 + }, + { + "time_hours": 170, + "approval_perbill": 607500846, + "support_perbill": 57992724, + "approval": 60.7500846, + "support": 5.7992724 + }, + { + "time_hours": 171, + "approval_perbill": 606499412, + "support_perbill": 57899776, + "approval": 60.6499412, + "support": 5.7899776 + }, + { + "time_hours": 172, + "approval_perbill": 605504589, + "support_perbill": 57807871, + "approval": 60.5504589, + "support": 5.7807871 + }, + { + "time_hours": 173, + "approval_perbill": 604516310, + "support_perbill": 57716991, + "approval": 60.451631, + "support": 5.7716991 + }, + { + "time_hours": 174, + "approval_perbill": 603534513, + "support_perbill": 57627118, + "approval": 60.3534513, + "support": 5.7627118 + }, + { + "time_hours": 175, + "approval_perbill": 602559133, + "support_perbill": 57538237, + "approval": 60.2559133, + "support": 5.7538237 + }, + { + "time_hours": 176, + "approval_perbill": 601590108, + "support_perbill": 57450331, + "approval": 60.1590108, + "support": 5.7450331 + }, + { + "time_hours": 177, + "approval_perbill": 600627375, + "support_perbill": 57363383, + "approval": 60.0627375, + "support": 5.7363383 + }, + { + "time_hours": 178, + "approval_perbill": 599670874, + "support_perbill": 57277379, + "approval": 59.9670874, + "support": 5.7277379 + }, + { + "time_hours": 179, + "approval_perbill": 598720544, + "support_perbill": 57192303, + "approval": 59.8720544, + "support": 5.7192303 + }, + { + "time_hours": 180, + "approval_perbill": 597776326, + "support_perbill": 57108141, + "approval": 59.7776326, + "support": 5.7108141 + }, + { + "time_hours": 181, + "approval_perbill": 596838161, + "support_perbill": 57024876, + "approval": 59.6838161, + "support": 5.7024876 + }, + { + "time_hours": 182, + "approval_perbill": 595905991, + "support_perbill": 56942496, + "approval": 59.5905991, + "support": 5.6942496 + }, + { + "time_hours": 183, + "approval_perbill": 594979758, + "support_perbill": 56860986, + "approval": 59.4979758, + "support": 5.6860986 + }, + { + "time_hours": 184, + "approval_perbill": 594059407, + "support_perbill": 56780333, + "approval": 59.4059407, + "support": 5.6780333 + }, + { + "time_hours": 185, + "approval_perbill": 593144881, + "support_perbill": 56700522, + "approval": 59.3144881, + "support": 5.6700522 + }, + { + "time_hours": 186, + "approval_perbill": 592236126, + "support_perbill": 56621542, + "approval": 59.2236126, + "support": 5.6621542 + }, + { + "time_hours": 187, + "approval_perbill": 591333086, + "support_perbill": 56543378, + "approval": 59.1333086, + "support": 5.6543378 + }, + { + "time_hours": 188, + "approval_perbill": 590435708, + "support_perbill": 56466019, + "approval": 59.0435708, + "support": 5.6466019 + }, + { + "time_hours": 189, + "approval_perbill": 589543939, + "support_perbill": 56389452, + "approval": 58.9543939, + "support": 5.6389452 + }, + { + "time_hours": 190, + "approval_perbill": 588657726, + "support_perbill": 56313665, + "approval": 58.8657726, + "support": 5.6313665 + }, + { + "time_hours": 191, + "approval_perbill": 587777019, + "support_perbill": 56238646, + "approval": 58.7777019, + "support": 5.6238646 + }, + { + "time_hours": 192, + "approval_perbill": 586901764, + "support_perbill": 56164383, + "approval": 58.6901764, + "support": 5.6164383 + }, + { + "time_hours": 193, + "approval_perbill": 586031913, + "support_perbill": 56090866, + "approval": 58.6031913, + "support": 5.6090866 + }, + { + "time_hours": 194, + "approval_perbill": 585167415, + "support_perbill": 56018082, + "approval": 58.5167415, + "support": 5.6018082 + }, + { + "time_hours": 195, + "approval_perbill": 584308222, + "support_perbill": 55946021, + "approval": 58.4308222, + "support": 5.5946021 + }, + { + "time_hours": 196, + "approval_perbill": 583454283, + "support_perbill": 55874673, + "approval": 58.3454283, + "support": 5.5874673 + }, + { + "time_hours": 197, + "approval_perbill": 582605551, + "support_perbill": 55804027, + "approval": 58.2605551, + "support": 5.5804027 + }, + { + "time_hours": 198, + "approval_perbill": 581761979, + "support_perbill": 55734072, + "approval": 58.1761979, + "support": 5.5734072 + }, + { + "time_hours": 199, + "approval_perbill": 580923521, + "support_perbill": 55664798, + "approval": 58.0923521, + "support": 5.5664798 + }, + { + "time_hours": 200, + "approval_perbill": 580090128, + "support_perbill": 55596196, + "approval": 58.0090128, + "support": 5.5596196 + }, + { + "time_hours": 201, + "approval_perbill": 579261756, + "support_perbill": 55528255, + "approval": 57.9261756, + "support": 5.5528255 + }, + { + "time_hours": 202, + "approval_perbill": 578438360, + "support_perbill": 55460967, + "approval": 57.843836, + "support": 5.5460967 + }, + { + "time_hours": 203, + "approval_perbill": 577619895, + "support_perbill": 55394321, + "approval": 57.7619895, + "support": 5.5394321 + }, + { + "time_hours": 204, + "approval_perbill": 576806315, + "support_perbill": 55328309, + "approval": 57.6806315, + "support": 5.5328309 + }, + { + "time_hours": 205, + "approval_perbill": 575997580, + "support_perbill": 55262922, + "approval": 57.599758, + "support": 5.5262922 + }, + { + "time_hours": 206, + "approval_perbill": 575193643, + "support_perbill": 55198151, + "approval": 57.5193643, + "support": 5.5198151 + }, + { + "time_hours": 207, + "approval_perbill": 574394465, + "support_perbill": 55133987, + "approval": 57.4394465, + "support": 5.5133987 + }, + { + "time_hours": 208, + "approval_perbill": 573600001, + "support_perbill": 55070422, + "approval": 57.3600001, + "support": 5.5070422 + }, + { + "time_hours": 209, + "approval_perbill": 572810211, + "support_perbill": 55007447, + "approval": 57.2810211, + "support": 5.5007447 + }, + { + "time_hours": 210, + "approval_perbill": 572025053, + "support_perbill": 54945054, + "approval": 57.2025053, + "support": 5.4945054 + }, + { + "time_hours": 211, + "approval_perbill": 571244487, + "support_perbill": 54883236, + "approval": 57.1244487, + "support": 5.4883236 + }, + { + "time_hours": 212, + "approval_perbill": 570468473, + "support_perbill": 54821984, + "approval": 57.0468473, + "support": 5.4821984 + }, + { + "time_hours": 213, + "approval_perbill": 569696971, + "support_perbill": 54761290, + "approval": 56.9696971, + "support": 5.476129 + }, + { + "time_hours": 214, + "approval_perbill": 568929941, + "support_perbill": 54701147, + "approval": 56.8929941, + "support": 5.4701147 + }, + { + "time_hours": 215, + "approval_perbill": 568167345, + "support_perbill": 54641547, + "approval": 56.8167345, + "support": 5.4641547 + }, + { + "time_hours": 216, + "approval_perbill": 567409145, + "support_perbill": 54582484, + "approval": 56.7409145, + "support": 5.4582484 + }, + { + "time_hours": 217, + "approval_perbill": 566655303, + "support_perbill": 54523950, + "approval": 56.6655303, + "support": 5.452395 + }, + { + "time_hours": 218, + "approval_perbill": 565905780, + "support_perbill": 54465937, + "approval": 56.590578, + "support": 5.4465937 + }, + { + "time_hours": 219, + "approval_perbill": 565160541, + "support_perbill": 54408440, + "approval": 56.5160541, + "support": 5.440844 + }, + { + "time_hours": 220, + "approval_perbill": 564419549, + "support_perbill": 54351450, + "approval": 56.4419549, + "support": 5.435145 + }, + { + "time_hours": 221, + "approval_perbill": 563682767, + "support_perbill": 54294962, + "approval": 56.3682767, + "support": 5.4294962 + }, + { + "time_hours": 222, + "approval_perbill": 562950159, + "support_perbill": 54238968, + "approval": 56.2950159, + "support": 5.4238968 + }, + { + "time_hours": 223, + "approval_perbill": 562221691, + "support_perbill": 54183463, + "approval": 56.2221691, + "support": 5.4183463 + }, + { + "time_hours": 224, + "approval_perbill": 561497327, + "support_perbill": 54128440, + "approval": 56.1497327, + "support": 5.412844 + }, + { + "time_hours": 225, + "approval_perbill": 560777032, + "support_perbill": 54073892, + "approval": 56.0777032, + "support": 5.4073892 + }, + { + "time_hours": 226, + "approval_perbill": 560060774, + "support_perbill": 54019814, + "approval": 56.0060774, + "support": 5.4019814 + }, + { + "time_hours": 227, + "approval_perbill": 559348516, + "support_perbill": 53966200, + "approval": 55.9348516, + "support": 5.39662 + }, + { + "time_hours": 228, + "approval_perbill": 558640227, + "support_perbill": 53913043, + "approval": 55.8640227, + "support": 5.3913043 + }, + { + "time_hours": 229, + "approval_perbill": 557935873, + "support_perbill": 53860338, + "approval": 55.7935873, + "support": 5.3860338 + }, + { + "time_hours": 230, + "approval_perbill": 557235422, + "support_perbill": 53808079, + "approval": 55.7235422, + "support": 5.3808079 + }, + { + "time_hours": 231, + "approval_perbill": 556538840, + "support_perbill": 53756260, + "approval": 55.653884, + "support": 5.375626 + }, + { + "time_hours": 232, + "approval_perbill": 555846097, + "support_perbill": 53704876, + "approval": 55.5846097, + "support": 5.3704876 + }, + { + "time_hours": 233, + "approval_perbill": 555157160, + "support_perbill": 53653921, + "approval": 55.515716, + "support": 5.3653921 + }, + { + "time_hours": 234, + "approval_perbill": 554471998, + "support_perbill": 53603391, + "approval": 55.4471998, + "support": 5.3603391 + }, + { + "time_hours": 235, + "approval_perbill": 553790581, + "support_perbill": 53553279, + "approval": 55.3790581, + "support": 5.3553279 + }, + { + "time_hours": 236, + "approval_perbill": 553112877, + "support_perbill": 53503581, + "approval": 55.3112877, + "support": 5.3503581 + }, + { + "time_hours": 237, + "approval_perbill": 552438856, + "support_perbill": 53454291, + "approval": 55.2438856, + "support": 5.3454291 + }, + { + "time_hours": 238, + "approval_perbill": 551768489, + "support_perbill": 53405405, + "approval": 55.1768489, + "support": 5.3405405 + }, + { + "time_hours": 239, + "approval_perbill": 551101746, + "support_perbill": 53356917, + "approval": 55.1101746, + "support": 5.3356917 + }, + { + "time_hours": 240, + "approval_perbill": 550438597, + "support_perbill": 53308823, + "approval": 55.0438597, + "support": 5.3308823 + }, + { + "time_hours": 241, + "approval_perbill": 549779014, + "support_perbill": 53261118, + "approval": 54.9779014, + "support": 5.3261118 + }, + { + "time_hours": 242, + "approval_perbill": 549122967, + "support_perbill": 53213797, + "approval": 54.9122967, + "support": 5.3213797 + }, + { + "time_hours": 243, + "approval_perbill": 548470429, + "support_perbill": 53166855, + "approval": 54.8470429, + "support": 5.3166855 + }, + { + "time_hours": 244, + "approval_perbill": 547821371, + "support_perbill": 53120289, + "approval": 54.7821371, + "support": 5.3120289 + }, + { + "time_hours": 245, + "approval_perbill": 547175766, + "support_perbill": 53074093, + "approval": 54.7175766, + "support": 5.3074093 + }, + { + "time_hours": 246, + "approval_perbill": 546533585, + "support_perbill": 53028263, + "approval": 54.6533585, + "support": 5.3028263 + }, + { + "time_hours": 247, + "approval_perbill": 545894803, + "support_perbill": 52982795, + "approval": 54.5894803, + "support": 5.2982795 + }, + { + "time_hours": 248, + "approval_perbill": 545259392, + "support_perbill": 52937685, + "approval": 54.5259392, + "support": 5.2937685 + }, + { + "time_hours": 249, + "approval_perbill": 544627325, + "support_perbill": 52892928, + "approval": 54.4627325, + "support": 5.2892928 + }, + { + "time_hours": 250, + "approval_perbill": 543998577, + "support_perbill": 52848520, + "approval": 54.3998577, + "support": 5.284852 + }, + { + "time_hours": 251, + "approval_perbill": 543373120, + "support_perbill": 52804457, + "approval": 54.337312, + "support": 5.2804457 + }, + { + "time_hours": 252, + "approval_perbill": 542750930, + "support_perbill": 52760735, + "approval": 54.275093, + "support": 5.2760735 + }, + { + "time_hours": 253, + "approval_perbill": 542131980, + "support_perbill": 52717351, + "approval": 54.213198, + "support": 5.2717351 + }, + { + "time_hours": 254, + "approval_perbill": 541516246, + "support_perbill": 52674300, + "approval": 54.1516246, + "support": 5.26743 + }, + { + "time_hours": 255, + "approval_perbill": 540903702, + "support_perbill": 52631578, + "approval": 54.0903702, + "support": 5.2631578 + }, + { + "time_hours": 256, + "approval_perbill": 540294324, + "support_perbill": 52589182, + "approval": 54.0294324, + "support": 5.2589182 + }, + { + "time_hours": 257, + "approval_perbill": 539688087, + "support_perbill": 52547108, + "approval": 53.9688087, + "support": 5.2547108 + }, + { + "time_hours": 258, + "approval_perbill": 539084968, + "support_perbill": 52505353, + "approval": 53.9084968, + "support": 5.2505353 + }, + { + "time_hours": 259, + "approval_perbill": 538484941, + "support_perbill": 52463912, + "approval": 53.8484941, + "support": 5.2463912 + }, + { + "time_hours": 260, + "approval_perbill": 537887984, + "support_perbill": 52422782, + "approval": 53.7887984, + "support": 5.2422782 + }, + { + "time_hours": 261, + "approval_perbill": 537294072, + "support_perbill": 52381960, + "approval": 53.7294072, + "support": 5.238196 + }, + { + "time_hours": 262, + "approval_perbill": 536703183, + "support_perbill": 52341442, + "approval": 53.6703183, + "support": 5.2341442 + }, + { + "time_hours": 263, + "approval_perbill": 536115294, + "support_perbill": 52301225, + "approval": 53.6115294, + "support": 5.2301225 + }, + { + "time_hours": 264, + "approval_perbill": 535530381, + "support_perbill": 52261306, + "approval": 53.5530381, + "support": 5.2261306 + }, + { + "time_hours": 265, + "approval_perbill": 534948423, + "support_perbill": 52221681, + "approval": 53.4948423, + "support": 5.2221681 + }, + { + "time_hours": 266, + "approval_perbill": 534369396, + "support_perbill": 52182347, + "approval": 53.4369396, + "support": 5.2182347 + }, + { + "time_hours": 267, + "approval_perbill": 533793280, + "support_perbill": 52143300, + "approval": 53.379328, + "support": 5.21433 + }, + { + "time_hours": 268, + "approval_perbill": 533220051, + "support_perbill": 52104538, + "approval": 53.3220051, + "support": 5.2104538 + }, + { + "time_hours": 269, + "approval_perbill": 532649689, + "support_perbill": 52066058, + "approval": 53.2649689, + "support": 5.2066058 + }, + { + "time_hours": 270, + "approval_perbill": 532082171, + "support_perbill": 52027857, + "approval": 53.2082171, + "support": 5.2027857 + }, + { + "time_hours": 271, + "approval_perbill": 531517477, + "support_perbill": 51989931, + "approval": 53.1517477, + "support": 5.1989931 + }, + { + "time_hours": 272, + "approval_perbill": 530955585, + "support_perbill": 51952277, + "approval": 53.0955585, + "support": 5.1952277 + }, + { + "time_hours": 273, + "approval_perbill": 530396476, + "support_perbill": 51914893, + "approval": 53.0396476, + "support": 5.1914893 + }, + { + "time_hours": 274, + "approval_perbill": 529840127, + "support_perbill": 51877776, + "approval": 52.9840127, + "support": 5.1877776 + }, + { + "time_hours": 275, + "approval_perbill": 529286519, + "support_perbill": 51840922, + "approval": 52.9286519, + "support": 5.1840922 + }, + { + "time_hours": 276, + "approval_perbill": 528735632, + "support_perbill": 51804330, + "approval": 52.8735632, + "support": 5.180433 + }, + { + "time_hours": 277, + "approval_perbill": 528187445, + "support_perbill": 51767996, + "approval": 52.8187445, + "support": 5.1767996 + }, + { + "time_hours": 278, + "approval_perbill": 527641939, + "support_perbill": 51731917, + "approval": 52.7641939, + "support": 5.1731917 + }, + { + "time_hours": 279, + "approval_perbill": 527099095, + "support_perbill": 51696091, + "approval": 52.7099095, + "support": 5.1696091 + }, + { + "time_hours": 280, + "approval_perbill": 526558891, + "support_perbill": 51660516, + "approval": 52.6558891, + "support": 5.1660516 + }, + { + "time_hours": 281, + "approval_perbill": 526021311, + "support_perbill": 51625188, + "approval": 52.6021311, + "support": 5.1625188 + }, + { + "time_hours": 282, + "approval_perbill": 525486333, + "support_perbill": 51590105, + "approval": 52.5486333, + "support": 5.1590105 + }, + { + "time_hours": 283, + "approval_perbill": 524953941, + "support_perbill": 51555265, + "approval": 52.4953941, + "support": 5.1555265 + }, + { + "time_hours": 284, + "approval_perbill": 524424114, + "support_perbill": 51520665, + "approval": 52.4424114, + "support": 5.1520665 + }, + { + "time_hours": 285, + "approval_perbill": 523896834, + "support_perbill": 51486302, + "approval": 52.3896834, + "support": 5.1486302 + }, + { + "time_hours": 286, + "approval_perbill": 523372083, + "support_perbill": 51452174, + "approval": 52.3372083, + "support": 5.1452174 + }, + { + "time_hours": 287, + "approval_perbill": 522849844, + "support_perbill": 51418279, + "approval": 52.2849844, + "support": 5.1418279 + }, + { + "time_hours": 288, + "approval_perbill": 522330097, + "support_perbill": 51384615, + "approval": 52.2330097, + "support": 5.1384615 + }, + { + "time_hours": 289, + "approval_perbill": 521812825, + "support_perbill": 51351178, + "approval": 52.1812825, + "support": 5.1351178 + }, + { + "time_hours": 290, + "approval_perbill": 521298011, + "support_perbill": 51317967, + "approval": 52.1298011, + "support": 5.1317967 + }, + { + "time_hours": 291, + "approval_perbill": 520785637, + "support_perbill": 51284979, + "approval": 52.0785637, + "support": 5.1284979 + }, + { + "time_hours": 292, + "approval_perbill": 520275685, + "support_perbill": 51252213, + "approval": 52.0275685, + "support": 5.1252213 + }, + { + "time_hours": 293, + "approval_perbill": 519768139, + "support_perbill": 51219665, + "approval": 51.9768139, + "support": 5.1219665 + }, + { + "time_hours": 294, + "approval_perbill": 519262981, + "support_perbill": 51187334, + "approval": 51.9262981, + "support": 5.1187334 + }, + { + "time_hours": 295, + "approval_perbill": 518760195, + "support_perbill": 51155218, + "approval": 51.8760195, + "support": 5.1155218 + }, + { + "time_hours": 296, + "approval_perbill": 518259765, + "support_perbill": 51123314, + "approval": 51.8259765, + "support": 5.1123314 + }, + { + "time_hours": 297, + "approval_perbill": 517761672, + "support_perbill": 51091621, + "approval": 51.7761672, + "support": 5.1091621 + }, + { + "time_hours": 298, + "approval_perbill": 517265903, + "support_perbill": 51060136, + "approval": 51.7265903, + "support": 5.1060136 + }, + { + "time_hours": 299, + "approval_perbill": 516772438, + "support_perbill": 51028857, + "approval": 51.6772438, + "support": 5.1028857 + }, + { + "time_hours": 300, + "approval_perbill": 516281264, + "support_perbill": 50997782, + "approval": 51.6281264, + "support": 5.0997782 + }, + { + "time_hours": 301, + "approval_perbill": 515792364, + "support_perbill": 50966909, + "approval": 51.5792364, + "support": 5.0966909 + }, + { + "time_hours": 302, + "approval_perbill": 515305723, + "support_perbill": 50936237, + "approval": 51.5305723, + "support": 5.0936237 + }, + { + "time_hours": 303, + "approval_perbill": 514821324, + "support_perbill": 50905763, + "approval": 51.4821324, + "support": 5.0905763 + }, + { + "time_hours": 304, + "approval_perbill": 514339152, + "support_perbill": 50875486, + "approval": 51.4339152, + "support": 5.0875486 + }, + { + "time_hours": 305, + "approval_perbill": 513859192, + "support_perbill": 50845402, + "approval": 51.3859192, + "support": 5.0845402 + }, + { + "time_hours": 306, + "approval_perbill": 513381428, + "support_perbill": 50815512, + "approval": 51.3381428, + "support": 5.0815512 + }, + { + "time_hours": 307, + "approval_perbill": 512905847, + "support_perbill": 50785812, + "approval": 51.2905847, + "support": 5.0785812 + }, + { + "time_hours": 308, + "approval_perbill": 512432432, + "support_perbill": 50756302, + "approval": 51.2432432, + "support": 5.0756302 + }, + { + "time_hours": 309, + "approval_perbill": 511961169, + "support_perbill": 50726978, + "approval": 51.1961169, + "support": 5.0726978 + }, + { + "time_hours": 310, + "approval_perbill": 511492043, + "support_perbill": 50697840, + "approval": 51.1492043, + "support": 5.069784 + }, + { + "time_hours": 311, + "approval_perbill": 511025041, + "support_perbill": 50668886, + "approval": 51.1025041, + "support": 5.0668886 + }, + { + "time_hours": 312, + "approval_perbill": 510560146, + "support_perbill": 50640113, + "approval": 51.0560146, + "support": 5.0640113 + }, + { + "time_hours": 313, + "approval_perbill": 510097346, + "support_perbill": 50611521, + "approval": 51.0097346, + "support": 5.0611521 + }, + { + "time_hours": 314, + "approval_perbill": 509636626, + "support_perbill": 50583107, + "approval": 50.9636626, + "support": 5.0583107 + }, + { + "time_hours": 315, + "approval_perbill": 509177972, + "support_perbill": 50554870, + "approval": 50.9177972, + "support": 5.055487 + }, + { + "time_hours": 316, + "approval_perbill": 508721371, + "support_perbill": 50526808, + "approval": 50.8721371, + "support": 5.0526808 + }, + { + "time_hours": 317, + "approval_perbill": 508266807, + "support_perbill": 50498920, + "approval": 50.8266807, + "support": 5.049892 + }, + { + "time_hours": 318, + "approval_perbill": 507814269, + "support_perbill": 50471203, + "approval": 50.7814269, + "support": 5.0471203 + }, + { + "time_hours": 319, + "approval_perbill": 507363742, + "support_perbill": 50443657, + "approval": 50.7363742, + "support": 5.0443657 + }, + { + "time_hours": 320, + "approval_perbill": 506915213, + "support_perbill": 50416280, + "approval": 50.6915213, + "support": 5.041628 + }, + { + "time_hours": 321, + "approval_perbill": 506468669, + "support_perbill": 50389071, + "approval": 50.6468669, + "support": 5.0389071 + }, + { + "time_hours": 322, + "approval_perbill": 506024096, + "support_perbill": 50362026, + "approval": 50.6024096, + "support": 5.0362026 + }, + { + "time_hours": 323, + "approval_perbill": 505581482, + "support_perbill": 50335147, + "approval": 50.5581482, + "support": 5.0335147 + }, + { + "time_hours": 324, + "approval_perbill": 505140813, + "support_perbill": 50308430, + "approval": 50.5140813, + "support": 5.030843 + }, + { + "time_hours": 325, + "approval_perbill": 504702077, + "support_perbill": 50281874, + "approval": 50.4702077, + "support": 5.0281874 + }, + { + "time_hours": 326, + "approval_perbill": 504265261, + "support_perbill": 50255478, + "approval": 50.4265261, + "support": 5.0255478 + }, + { + "time_hours": 327, + "approval_perbill": 503830353, + "support_perbill": 50229240, + "approval": 50.3830353, + "support": 5.022924 + }, + { + "time_hours": 328, + "approval_perbill": 503397340, + "support_perbill": 50203159, + "approval": 50.339734, + "support": 5.0203159 + }, + { + "time_hours": 329, + "approval_perbill": 502966210, + "support_perbill": 50177234, + "approval": 50.296621, + "support": 5.0177234 + }, + { + "time_hours": 330, + "approval_perbill": 502536950, + "support_perbill": 50151463, + "approval": 50.253695, + "support": 5.0151463 + }, + { + "time_hours": 331, + "approval_perbill": 502109549, + "support_perbill": 50125845, + "approval": 50.2109549, + "support": 5.0125845 + }, + { + "time_hours": 332, + "approval_perbill": 501683994, + "support_perbill": 50100378, + "approval": 50.1683994, + "support": 5.0100378 + }, + { + "time_hours": 333, + "approval_perbill": 501260273, + "support_perbill": 50075062, + "approval": 50.1260273, + "support": 5.0075062 + }, + { + "time_hours": 334, + "approval_perbill": 500838375, + "support_perbill": 50049894, + "approval": 50.0838375, + "support": 5.0049894 + }, + { + "time_hours": 335, + "approval_perbill": 500418287, + "support_perbill": 50024873, + "approval": 50.0418287, + "support": 5.0024873 + }, + { + "time_hours": 336, + "approval_perbill": 499999999, + "support_perbill": 49999999, + "approval": 49.9999999, + "support": 4.9999999 + } +] \ No newline at end of file diff --git a/components/utilities/charts_data/opengov_admin_auction.json b/components/utilities/charts_data/polkadot/opengov_admin_auction.json similarity index 100% rename from components/utilities/charts_data/opengov_admin_auction.json rename to components/utilities/charts_data/polkadot/opengov_admin_auction.json diff --git a/components/utilities/charts_data/opengov_admin_fellowship.json b/components/utilities/charts_data/polkadot/opengov_admin_fellowship.json similarity index 100% rename from components/utilities/charts_data/opengov_admin_fellowship.json rename to components/utilities/charts_data/polkadot/opengov_admin_fellowship.json diff --git a/components/utilities/charts_data/opengov_admin_general.json b/components/utilities/charts_data/polkadot/opengov_admin_general.json similarity index 100% rename from components/utilities/charts_data/opengov_admin_general.json rename to components/utilities/charts_data/polkadot/opengov_admin_general.json diff --git a/components/utilities/charts_data/opengov_admin_lease.json b/components/utilities/charts_data/polkadot/opengov_admin_lease.json similarity index 100% rename from components/utilities/charts_data/opengov_admin_lease.json rename to components/utilities/charts_data/polkadot/opengov_admin_lease.json diff --git a/components/utilities/charts_data/opengov_admin_staking.json b/components/utilities/charts_data/polkadot/opengov_admin_staking.json similarity index 100% rename from components/utilities/charts_data/opengov_admin_staking.json rename to components/utilities/charts_data/polkadot/opengov_admin_staking.json diff --git a/components/utilities/charts_data/opengov_big_spender.json b/components/utilities/charts_data/polkadot/opengov_big_spender.json similarity index 100% rename from components/utilities/charts_data/opengov_big_spender.json rename to components/utilities/charts_data/polkadot/opengov_big_spender.json diff --git a/components/utilities/charts_data/opengov_big_tipper.json b/components/utilities/charts_data/polkadot/opengov_big_tipper.json similarity index 100% rename from components/utilities/charts_data/opengov_big_tipper.json rename to components/utilities/charts_data/polkadot/opengov_big_tipper.json diff --git a/components/utilities/charts_data/opengov_medium_spender.json b/components/utilities/charts_data/polkadot/opengov_medium_spender.json similarity index 100% rename from components/utilities/charts_data/opengov_medium_spender.json rename to components/utilities/charts_data/polkadot/opengov_medium_spender.json diff --git a/components/utilities/charts_data/opengov_ref_canceller.json b/components/utilities/charts_data/polkadot/opengov_ref_canceller.json similarity index 100% rename from components/utilities/charts_data/opengov_ref_canceller.json rename to components/utilities/charts_data/polkadot/opengov_ref_canceller.json diff --git a/components/utilities/charts_data/opengov_ref_killer.json b/components/utilities/charts_data/polkadot/opengov_ref_killer.json similarity index 100% rename from components/utilities/charts_data/opengov_ref_killer.json rename to components/utilities/charts_data/polkadot/opengov_ref_killer.json diff --git a/components/utilities/charts_data/opengov_root.json b/components/utilities/charts_data/polkadot/opengov_root.json similarity index 100% rename from components/utilities/charts_data/opengov_root.json rename to components/utilities/charts_data/polkadot/opengov_root.json diff --git a/components/utilities/charts_data/opengov_small_spender.json b/components/utilities/charts_data/polkadot/opengov_small_spender.json similarity index 100% rename from components/utilities/charts_data/opengov_small_spender.json rename to components/utilities/charts_data/polkadot/opengov_small_spender.json diff --git a/components/utilities/charts_data/opengov_small_tipper.json b/components/utilities/charts_data/polkadot/opengov_small_tipper.json similarity index 100% rename from components/utilities/charts_data/opengov_small_tipper.json rename to components/utilities/charts_data/polkadot/opengov_small_tipper.json diff --git a/components/utilities/charts_data/opengov_treasurer.json b/components/utilities/charts_data/polkadot/opengov_treasurer.json similarity index 100% rename from components/utilities/charts_data/opengov_treasurer.json rename to components/utilities/charts_data/polkadot/opengov_treasurer.json diff --git a/components/utilities/charts_data/opengov_whitelist.json b/components/utilities/charts_data/polkadot/opengov_whitelist.json similarity index 100% rename from components/utilities/charts_data/opengov_whitelist.json rename to components/utilities/charts_data/polkadot/opengov_whitelist.json diff --git a/components/utilities/openGovVariables.js b/components/utilities/openGovVariables.js index 52f99e40055e..945c0b450f54 100644 --- a/components/utilities/openGovVariables.js +++ b/components/utilities/openGovVariables.js @@ -1,41 +1,77 @@ +// POLKADOT +const openGovPolkadotRoot = require('./charts_data/polkadot/opengov_root.json'); +const openGovPolkadotAdminAuction = require('./charts_data/polkadot/opengov_admin_auction.json'); +const openGovPolkadotAdminFellowship = require('./charts_data/polkadot/opengov_admin_fellowship.json'); +const openGovPolkadotAdminGeneral = require('./charts_data/polkadot/opengov_admin_general.json'); +const openGovPolkadotAdminLease = require('./charts_data/polkadot/opengov_admin_lease.json'); +const openGovPolkadotAdminStaking = require('./charts_data/polkadot/opengov_admin_staking.json'); -const openGovRoot = require('./charts_data/opengov_root.json'); +const openGovPolkadotBigSpender = require('./charts_data/polkadot/opengov_big_spender.json'); +const openGovPolkadotMediumSpender = require('./charts_data/polkadot/opengov_medium_spender.json'); +const openGovPolkadotSmallSpender = require('./charts_data/polkadot/opengov_small_spender.json'); -const openGovAdminAuction = require('./charts_data/opengov_admin_auction.json'); -const openGovAdminFellowship = require('./charts_data/opengov_admin_fellowship.json'); -const openGovAdminGeneral = require('./charts_data/opengov_admin_general.json'); -const openGovAdminLease = require('./charts_data/opengov_admin_lease.json'); -const openGovAdminStaking = require('./charts_data/opengov_admin_staking.json'); +const openGovPolkadotBigTipper = require('./charts_data/polkadot/opengov_big_tipper.json'); +const openGovPolkadotSmallTipper = require('./charts_data/polkadot/opengov_small_tipper.json'); -const openGovBigSpender = require('./charts_data/opengov_big_spender.json'); -const openGovMediumSpender = require('./charts_data/opengov_medium_spender.json'); -const openGovSmallSpender = require('./charts_data/opengov_small_spender.json'); +const openGovPolkadotRefCanceller = require('./charts_data/polkadot/opengov_ref_canceller.json'); +const openGovPolkadotRefKiller = require('./charts_data/polkadot/opengov_ref_killer.json'); -const openGovBigTipper = require('./charts_data/opengov_big_tipper.json'); -const openGovSmallTipper = require('./charts_data/opengov_small_tipper.json'); +const openGovPolkadotTreasurer = require('./charts_data/polkadot/opengov_treasurer.json'); +const openGovPolkadotWhitelist = require('./charts_data/polkadot/opengov_whitelist.json'); -const openGovRefCanceller = require('./charts_data/opengov_ref_canceller.json'); -const openGovRefKiller = require('./charts_data/opengov_ref_killer.json'); +// KUSAMA +const openGovKusamaRoot = require('./charts_data/kusama/opengov_root.json'); -const openGovTreasurer = require('./charts_data/opengov_treasurer.json'); -const openGovWhitelist = require('./charts_data/opengov_whitelist.json'); +const openGovKusamaAdminAuction = require('./charts_data/kusama/opengov_admin_auction.json'); +const openGovKusamaAdminFellowship = require('./charts_data/kusama/opengov_admin_fellowship.json'); +const openGovKusamaAdminGeneral = require('./charts_data/kusama/opengov_admin_general.json'); +const openGovKusamaAdminLease = require('./charts_data/kusama/opengov_admin_lease.json'); +const openGovKusamaAdminStaking = require('./charts_data/kusama/opengov_admin_staking.json'); +const openGovKusamaBigSpender = require('./charts_data/kusama/opengov_big_spender.json'); +const openGovKusamaMediumSpender = require('./charts_data/kusama/opengov_medium_spender.json'); +const openGovKusamaSmallSpender = require('./charts_data/kusama/opengov_small_spender.json'); + +const openGovKusamaBigTipper = require('./charts_data/kusama/opengov_big_tipper.json'); +const openGovKusamaSmallTipper = require('./charts_data/kusama/opengov_small_tipper.json'); + +const openGovKusamaRefCanceller = require('./charts_data/kusama/opengov_ref_canceller.json'); +const openGovKusamaRefKiller = require('./charts_data/kusama/opengov_ref_killer.json'); + +const openGovKusamaTreasurer = require('./charts_data/kusama/opengov_treasurer.json'); +const openGovKusamaWhitelist = require('./charts_data/kusama/opengov_whitelist.json'); module.exports = { - Root: openGovRoot, - Whitelist: openGovWhitelist, - Treasurer: openGovTreasurer, - BigTipper: openGovBigTipper, - SmallTipper: openGovSmallTipper, - RefKiller: openGovRefKiller, - RefCanceller: openGovRefCanceller, - BigSpender: openGovBigSpender, - MediumSpender: openGovMediumSpender, - SmallSpender: openGovSmallSpender, - AdminAuction: openGovAdminAuction, - AdminFellowship: openGovAdminFellowship, - AdminGeneral: openGovAdminGeneral, - AdminLease: openGovAdminLease, - AdminStaking: openGovAdminStaking + KusamaRoot: openGovKusamaRoot, + KusamaWhitelist: openGovKusamaWhitelist, + KusamaTreasurer: openGovKusamaTreasurer, + KusamaBigTipper: openGovKusamaBigTipper, + KusamaSmallTipper: openGovKusamaSmallTipper, + KusamaRefKiller: openGovKusamaRefKiller, + KusamaRefCanceller: openGovKusamaRefCanceller, + KusamaBigSpender: openGovKusamaBigSpender, + KusamaMediumSpender: openGovKusamaMediumSpender, + KusamaSmallSpender: openGovKusamaSmallSpender, + KusamaAdminAuction: openGovKusamaAdminAuction, + KusamaAdminFellowship: openGovKusamaAdminFellowship, + KusamaAdminGeneral: openGovKusamaAdminGeneral, + KusamaAdminLease: openGovKusamaAdminLease, + KusamaAdminStaking: openGovKusamaAdminStaking, + + PolkadotRoot: openGovPolkadotRoot, + PolkadotWhitelist: openGovPolkadotWhitelist, + PolkadotTreasurer: openGovPolkadotTreasurer, + PolkadotBigTipper: openGovPolkadotBigTipper, + PolkadotSmallTipper: openGovPolkadotSmallTipper, + PolkadotRefKiller: openGovPolkadotRefKiller, + PolkadotRefCanceller: openGovPolkadotRefCanceller, + PolkadotBigSpender: openGovPolkadotBigSpender, + PolkadotMediumSpender: openGovPolkadotMediumSpender, + PolkadotSmallSpender: openGovPolkadotSmallSpender, + PolkadotAdminAuction: openGovPolkadotAdminAuction, + PolkadotAdminFellowship: openGovPolkadotAdminFellowship, + PolkadotAdminGeneral: openGovPolkadotAdminGeneral, + PolkadotAdminLease: openGovPolkadotAdminLease, + PolkadotAdminStaking: openGovPolkadotAdminStaking, }; \ No newline at end of file diff --git a/docs/maintain/maintain-guides-opengov.md b/docs/maintain/maintain-guides-opengov.md index e4d5eeabdc40..de86667c291c 100644 --- a/docs/maintain/maintain-guides-opengov.md +++ b/docs/maintain/maintain-guides-opengov.md @@ -81,6 +81,8 @@ than the min enactment period. ## Origins and Tracks Info +{{ polkadot: The tracks info of Kusama network is shown below for reference. This table will be updated with Polkadot tracks when OpenGov is live on Polkadot network. :polkadot }} + @@ -101,13 +103,16 @@ support and approval. The origin with the highest level of privileges. This track requires extremely high levels of approval and support for early passing. The prepare and enactment periods are also large. For -instance, a referendum proposed in this track needs to amass 47% support (total network issuance) by -the end of the first day with over 88% approval to be considered to be part of the confirm period. -The support curve drops linearly to 25% by the end of day 7 and almost to 0% by the end of day 14. -This ensures that the token holders receive ample time to vote on the proposal during the decision -period. +instance, a referendum proposed in this track needs to amass +{{ polkadot: 48.2% :polkadot }}{{ kusama: 46.8% :kusama }} support (total network issuance) by the +end of the first day with over {{ polkadot: 93.5% :polkadot }}{{ kusama: 88% :kusama }} approval +to be considered to be part of the confirm period. The support curve drops linearly to 25% by the +end of day {{ polkadot: 14 :polkadot }}{{ kusama: 7 :kusama }} and almost to 0% by the end of day +{{ polkadot: 28 :polkadot }}{{ kusama: 14 :kusama }}. This ensures that the token holders receive +ample time to vote on the proposal during the decision period. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ### Whitelisted Caller @@ -115,58 +120,67 @@ Origin commanded by the [Fellowship](../learn/learn-opengov.md#fellowship) white call and allow the call to be dispatched with the root origin (after the referendum passes). This track allows for a shorter voting turnaround, safe in the knowledge through an open and transparent process for time-critical proposals. For instance, a referendum proposed in this track needs to -amass 14% support (much lesser than the root) by the end of the first day with over 88% approval to -be considered to be part of the confirm period. The support curve drops linearly to 6% by the end of -day 7 and around 5% by the end of day 14. +amass {{ polkadot: 20% :polkadot }}{{ kusama: 14% :kusama }} support (much lesser than the root) +by the end of the first day with over {{ polkadot: 93.5% :polkadot }}{{ kusama: 88% :kusama }} +approval to be considered to be part of the confirm period. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ### Staking Admin The origin for canceling slashes. This origin has the privilege to execute calls from the staking pallet and the Election Provider Multiphase Pallet. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ### Treasurer -The origin for spending funds from the treasury (up to 333333.33 KSM). This origin has the privilege -to execute calls from the Treasury pallet. +The origin for spending funds from the treasury (up to +{{ polkadot: 10M DOT :polkadot }}{{ kusama: 333333.33 KSM :kusama }}). This origin has the +privilege to execute calls from the Treasury pallet. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ### Lease Admin Origin can force slot leases. This origin has the privilege to execute calls from the Slots pallet. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ### Fellowship Admin The origin for managing the composition of the fellowship. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ### General Admin The origin for managing the registrar. This origin has the privilege of executing calls from the Identity pallet. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ### Auction Admin The origin for starting auctions. This origin can execute calls from the Auctions pallet and the Scheduler Pallet. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ### Referendum Canceller The origin can cancel referenda. This track has a low lead time and approval/support curves with slightly sharper reductions in their thresholds for passing. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ### Referendum Killer @@ -174,37 +188,48 @@ The origin can cancel an ongoing referendum and slash the deposits. This track a lead-time and approval/support curves with slightly sharper reductions in their thresholds for passing. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ### Small Tipper -Origin able to spend up to 8.25 KSM from the treasury at once. +Origin able to spend up to {{ polkadot: 250 DOT :polkadot }}{{ kusama: 8.25 KSM :kusama }} from +the treasury at once. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ### Big Tipper -Origin able to spend up to 33.33 KSM from the treasury at once. +Origin able to spend up to {{ polkadot: 1000 DOT :polkadot }}{{ kusama: 33.33 KSM :kusama }} from +the treasury at once. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ### Small Spender -Origin able to spend up to 333.33 KSM from the treasury at once. +Origin able to spend up to {{ polkadot: 10000 DOT :polkadot }}{{ kusama: 333.33 KSM :kusama }} +from the treasury at once. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ### Medium Spender -Origin able to spend up to 3333.33 KSM from the treasury at once. +Origin able to spend up to {{ polkadot: 100000 DOT :polkadot }}{{ kusama: 3333.33 KSM :kusama }} +from the treasury at once. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ### Big Spender -Origin able to spend up to 33333.33 KSM from the treasury at once. +Origin able to spend up to {{ polkadot: 1000000 DOT :polkadot }}{{ kusama: 33333.33 KSM :kusama }} +from the treasury at once. - +{{ polkadot: :polkadot }} +{{ kusama: :kusama }} ## Create a Referenda Proposal using Polkadot-JS UI diff --git a/kusama-guide/sidebars.js b/kusama-guide/sidebars.js index 0758af90cf5e..4781b22756cd 100644 --- a/kusama-guide/sidebars.js +++ b/kusama-guide/sidebars.js @@ -88,6 +88,7 @@ module.exports = { items: [ "learn/learn-governance", "learn/learn-opengov", + "maintain/maintain-guides-opengov", "maintain/maintain-guides-how-to-join-council", "maintain/maintain-guides-how-to-vote-councillor", ],