Skip to content

Commit 4c2a2c2

Browse files
author
Meller Jaroslaw
committed
First version of page
1 parent d2d1e0b commit 4c2a2c2

7 files changed

+574
-1
lines changed

index.html

+46-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,46 @@
1-
Welcome!
1+
<html>
2+
<head>
3+
<title>struthio.github.io</title>
4+
<link rel="stylesheet" type="text/css" href="layout.css">
5+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
6+
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.0/themes/smoothness/jquery-ui.css">
7+
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.0/jquery-ui.min.js"></script>
8+
<script>
9+
$( function()
10+
{
11+
$( "a" ).hover(
12+
function()
13+
{
14+
var tPreview = $(this).attr('title');
15+
if (!tPreview)
16+
return;
17+
18+
if (tPreview.substring(0,4) == 'img:')
19+
$('#previewContents').html($('<img>').attr('src',tPreview.substring(4)));
20+
else $('#previewContents').html(tPreview);
21+
}, function()
22+
{
23+
$('#previewContents').html('');
24+
}
25+
);
26+
});
27+
</script>
28+
</head>
29+
<body>
30+
<div id="container">
31+
<div id="menu">
32+
<h1>Raspberry Pi</h2>
33+
<a href="page_rasp_heatsink.html" title="Raspberry Pi 3 aluminum and copper heatsink test">Raspberry Pi 3 Heatsink Test</a><br/>
34+
<h1>Other Stuff</h2>
35+
<a href="htmlMQTTViewer/mqtt_dahboard.html" title="Simple Websockets MQTT dashboard">JavaScript MQTT Dashboard</a><br/>
36+
<a href="https://pl.gravatar.com/struthio2015" title="img:https://secure.gravatar.com/avatar/b1326f280519791e5470ac57ab7877cd">Gravatar</a><br/>
37+
</div>
38+
<div id="preview">
39+
<div id="previewTitle"></div>
40+
<div id="previewContents"></div>
41+
</div>
42+
43+
</div>
44+
<div id="dialog-page"></div>
45+
</body>
46+
</html>

layout.css

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
body
2+
{
3+
background-color: #ffffff;
4+
color:#505050;
5+
font-family: Courier New;
6+
font-size: 8pt;
7+
}
8+
a
9+
{
10+
color: #A0A0A0;
11+
text-decoration: none;
12+
font-size: 8pt;
13+
}
14+
a:hover
15+
{
16+
color: #FFE0E0;
17+
text-decoration: underline;
18+
}
19+
div#container
20+
{
21+
border: 1px solid #C0C0C0;
22+
width:420px;
23+
height: 210px;
24+
position: fixed;
25+
top: 50%;
26+
left: 50%;
27+
transform: translate(-50%, -50%);
28+
}
29+
div#menu { float: left;}
30+
div#preview
31+
{
32+
float: right;
33+
text-align: center;
34+
}
35+
div#menu, div#preview
36+
{
37+
border: 1px solid #C0C0C0;
38+
width: 200px;
39+
height: 200px;
40+
padding: 2px;
41+
margin: 2px;
42+
}
43+
h1
44+
{
45+
font-size: 10pt;
46+
text-align: center;
47+
background-color: #C0C0C0;
48+
color: #ffffff;
49+
padding:0px;
50+
margin: 0px;
51+
}
52+
53+
img
54+
{
55+
width:200px;
56+
height:200px;
57+
}

page_rasp_heatsink.html

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
<html>
2+
<head>
3+
<title>struthio.github.io - Raspberry Heatsink Test</title>
4+
<link rel="stylesheet" type="text/css" href="layout.css">
5+
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
6+
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
7+
<script type="text/javascript">
8+
// Load the Visualization API and the piechart package.
9+
google.charts.load('current', {'packages':['corechart']});
10+
11+
// Set a callback to run when the Google Visualization API is loaded.
12+
google.charts.setOnLoadCallback(drawCharts);
13+
14+
function drawChart(inTableData, inTargetObject)
15+
{
16+
var jsonData = $.ajax({
17+
url: inTableData,
18+
dataType: "json",
19+
async: false
20+
}).responseText;
21+
22+
// Create our data table out of JSON data loaded from server.
23+
var data = new google.visualization.DataTable(jsonData);
24+
25+
var options = {
26+
hAxis:
27+
{
28+
title: 'Time',
29+
format:'#,### sec'
30+
},
31+
vAxis:
32+
{
33+
title: 'Temperature in Celsius',
34+
format:'#,### C'
35+
},
36+
backgroundColor: '#ffffff',
37+
width: 800,
38+
height: 400
39+
};
40+
41+
// Instantiate and draw our chart, passing in some options.
42+
var chart = new google.visualization.LineChart(document.getElementById(inTargetObject));
43+
chart.draw(data, options);
44+
}
45+
function drawCharts()
46+
{
47+
drawChart("page_rasp_heatsink_nocover_idle.json","chartNoCoverIdle");
48+
drawChart("page_rasp_heatsink_nocover_stress.json","chartNoCoverStress");
49+
drawChart("page_rasp_heatsink_cover_idle.json","chartCoverIdle");
50+
drawChart("page_rasp_heatsink_cover_stress.json","chartCoverStress");
51+
}
52+
</script>
53+
</head>
54+
<body>
55+
<a id="menu_back" href="index.html">&lt;-BACK</a>
56+
<h1>Raspberry Heatsink Test</h1>
57+
<h2>Description</h2>
58+
I have been using Raspberry Pi (Model B) for some time as PHP+MySQL server. This raspberry works with aluminum heatsinks that are widely available on net.<br/>
59+
Recently I decided to improve performance of My setup by moving server from old board to new Raspberry Pi 3 (4 cores and more RAM should help a lot)<br/>
60+
As I ordered RPI3 It came bundled with plastic case and aluminum heatsinks. As aluminum are not best head preading metal I was wondering how efficient this heatsinks are and how they compare to copper ones (and moreover how this heat transfering tape (added to all heatsinks) work).<br/>
61+
<br/>
62+
So I checked temperatures in idle and while running stress-ng with board having:<br/>
63+
* no heatsink <br/>
64+
* aluminium heatsink - mounted with included heat transfering tape<br/>
65+
* copper heatsink - mounted with heat transfering glue (Arctic Silver Thermal Adhesive)<br/>
66+
<br/>
67+
All testes was performed:
68+
* without case - to allow free airflow
69+
* in full plastic case - as this will be target configuration<br/>
70+
<br/>
71+
<h3>Codes</h3>
72+
<!-- Temperature logged by:<br/>
73+
<code>
74+
75+
</code>
76+
<br/>-->
77+
CPU Stressed by:<br/>
78+
<code>
79+
stress-ng --cpu 4 --fork 4 --timeout 60s
80+
</code>
81+
<br/>
82+
<h2>Results</h2>
83+
Please move mouse over chart to see exact temperature reading.<br/>
84+
<h3>RPi 3 without case</h3>
85+
<h4>Temperature while idle</h4>
86+
<div id="chartNoCoverIdle"></div>
87+
<h4>Temperature under stress</h4>
88+
<div id="chartNoCoverStress"></div>
89+
<h3>RPi 3 closed in plastic case</h3>
90+
<h4>Temperature while idle</h4>
91+
<div id="chartCoverIdle"></div>
92+
<h4>Temperature under stress</h4>
93+
<div id="chartCoverStress"></div>
94+
</body>
95+
</html>

page_rasp_heatsink_cover_idle.json

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
{
2+
"cols": [{"id": "time" , "label": "Time" , "type": "number"},
3+
{"id": "empty" , "label": "No Heatsink", "type": "number"},
4+
{"id": "aluminum", "label": "Aluminum" , "type": "number"},
5+
{"id": "copper" , "label": "Copper" , "type": "number"}
6+
],
7+
"rows": [
8+
{"c":[{"v": 1}, {"v": 53.692}, {"v": 52.078}, {"v": 52.078}]},
9+
{"c":[{"v": 2}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
10+
{"c":[{"v": 3}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
11+
{"c":[{"v": 4}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
12+
{"c":[{"v": 5}, {"v": 54.230}, {"v": 51.540}, {"v": 52.078}]},
13+
{"c":[{"v": 6}, {"v": 53.692}, {"v": 51.540}, {"v": 52.078}]},
14+
{"c":[{"v": 7}, {"v": 53.692}, {"v": 51.540}, {"v": 52.078}]},
15+
{"c":[{"v": 8}, {"v": 54.230}, {"v": 51.540}, {"v": 52.078}]},
16+
{"c":[{"v": 9}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
17+
{"c":[{"v": 10}, {"v": 53.692}, {"v": 52.078}, {"v": 52.078}]},
18+
{"c":[{"v": 11}, {"v": 54.230}, {"v": 51.540}, {"v": 53.154}]},
19+
{"c":[{"v": 12}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
20+
{"c":[{"v": 13}, {"v": 53.692}, {"v": 51.540}, {"v": 52.078}]},
21+
{"c":[{"v": 14}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
22+
{"c":[{"v": 15}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
23+
{"c":[{"v": 16}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
24+
{"c":[{"v": 17}, {"v": 54.230}, {"v": 52.078}, {"v": 52.615}]},
25+
{"c":[{"v": 18}, {"v": 54.230}, {"v": 51.540}, {"v": 52.078}]},
26+
{"c":[{"v": 19}, {"v": 54.768}, {"v": 51.540}, {"v": 52.615}]},
27+
{"c":[{"v": 20}, {"v": 54.230}, {"v": 51.540}, {"v": 52.078}]},
28+
{"c":[{"v": 21}, {"v": 54.230}, {"v": 51.540}, {"v": 52.078}]},
29+
{"c":[{"v": 22}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
30+
{"c":[{"v": 23}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
31+
{"c":[{"v": 24}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
32+
{"c":[{"v": 25}, {"v": 53.692}, {"v": 51.540}, {"v": 52.078}]},
33+
{"c":[{"v": 26}, {"v": 53.692}, {"v": 52.078}, {"v": 52.615}]},
34+
{"c":[{"v": 27}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
35+
{"c":[{"v": 28}, {"v": 54.230}, {"v": 51.540}, {"v": 53.154}]},
36+
{"c":[{"v": 29}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
37+
{"c":[{"v": 30}, {"v": 54.230}, {"v": 52.078}, {"v": 52.078}]},
38+
{"c":[{"v": 31}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
39+
{"c":[{"v": 32}, {"v": 54.230}, {"v": 52.078}, {"v": 52.615}]},
40+
{"c":[{"v": 33}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
41+
{"c":[{"v": 34}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
42+
{"c":[{"v": 35}, {"v": 54.768}, {"v": 51.540}, {"v": 52.078}]},
43+
{"c":[{"v": 36}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
44+
{"c":[{"v": 37}, {"v": 54.230}, {"v": 51.540}, {"v": 52.078}]},
45+
{"c":[{"v": 38}, {"v": 53.692}, {"v": 52.078}, {"v": 52.615}]},
46+
{"c":[{"v": 39}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
47+
{"c":[{"v": 40}, {"v": 54.230}, {"v": 51.540}, {"v": 52.078}]},
48+
{"c":[{"v": 41}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
49+
{"c":[{"v": 42}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
50+
{"c":[{"v": 43}, {"v": 54.768}, {"v": 51.540}, {"v": 52.615}]},
51+
{"c":[{"v": 44}, {"v": 54.230}, {"v": 52.078}, {"v": 52.078}]},
52+
{"c":[{"v": 45}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
53+
{"c":[{"v": 46}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
54+
{"c":[{"v": 47}, {"v": 54.230}, {"v": 52.078}, {"v": 52.615}]},
55+
{"c":[{"v": 48}, {"v": 54.768}, {"v": 51.540}, {"v": 52.615}]},
56+
{"c":[{"v": 49}, {"v": 54.768}, {"v": 51.540}, {"v": 52.078}]},
57+
{"c":[{"v": 50}, {"v": 53.692}, {"v": 52.078}, {"v": 52.078}]},
58+
{"c":[{"v": 51}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
59+
{"c":[{"v": 52}, {"v": 54.230}, {"v": 52.078}, {"v": 52.615}]},
60+
{"c":[{"v": 53}, {"v": 54.230}, {"v": 51.540}, {"v": 52.078}]},
61+
{"c":[{"v": 54}, {"v": 53.692}, {"v": 51.540}, {"v": 52.078}]},
62+
{"c":[{"v": 55}, {"v": 53.692}, {"v": 51.540}, {"v": 53.154}]},
63+
{"c":[{"v": 56}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
64+
{"c":[{"v": 57}, {"v": 53.692}, {"v": 51.002}, {"v": 52.615}]},
65+
{"c":[{"v": 58}, {"v": 53.692}, {"v": 52.078}, {"v": 52.078}]},
66+
{"c":[{"v": 59}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
67+
{"c":[{"v": 60}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
68+
{"c":[{"v": 61}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
69+
{"c":[{"v": 62}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
70+
{"c":[{"v": 63}, {"v": 53.692}, {"v": 52.078}, {"v": 52.615}]},
71+
{"c":[{"v": 64}, {"v": 53.692}, {"v": 51.540}, {"v": 52.078}]},
72+
{"c":[{"v": 65}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
73+
{"c":[{"v": 66}, {"v": 54.230}, {"v": 51.540}, {"v": 52.078}]},
74+
{"c":[{"v": 67}, {"v": 54.768}, {"v": 52.078}, {"v": 52.078}]},
75+
{"c":[{"v": 68}, {"v": 54.768}, {"v": 51.540}, {"v": 52.615}]},
76+
{"c":[{"v": 69}, {"v": 54.230}, {"v": 51.540}, {"v": 53.154}]},
77+
{"c":[{"v": 70}, {"v": 54.230}, {"v": 51.540}, {"v": 52.078}]},
78+
{"c":[{"v": 71}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
79+
{"c":[{"v": 72}, {"v": 54.230}, {"v": 52.078}, {"v": 52.615}]},
80+
{"c":[{"v": 73}, {"v": 54.230}, {"v": 51.540}, {"v": 52.078}]},
81+
{"c":[{"v": 74}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
82+
{"c":[{"v": 75}, {"v": 54.230}, {"v": 52.078}, {"v": 52.078}]},
83+
{"c":[{"v": 76}, {"v": 54.768}, {"v": 51.540}, {"v": 52.615}]},
84+
{"c":[{"v": 77}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
85+
{"c":[{"v": 78}, {"v": 53.692}, {"v": 52.078}, {"v": 52.615}]},
86+
{"c":[{"v": 79}, {"v": 53.692}, {"v": 52.078}, {"v": 52.078}]},
87+
{"c":[{"v": 80}, {"v": 54.230}, {"v": 51.540}, {"v": 52.615}]},
88+
{"c":[{"v": 81}, {"v": 54.230}, {"v": 52.078}, {"v": 52.615}]},
89+
{"c":[{"v": 82}, {"v": 54.230}, {"v": 51.540}, {"v": 52.078}]},
90+
{"c":[{"v": 83}, {"v": 53.692}, {"v": 52.078}, {"v": 52.615}]},
91+
{"c":[{"v": 84}, {"v": 53.692}, {"v": 51.540}, {"v": 52.615}]},
92+
{"c":[{"v": 85}, {"v": 54.230}, {"v": 51.540}, {"v": 53.154}]}
93+
]
94+
}

page_rasp_heatsink_cover_stress.json

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
{
2+
"cols": [{"id": "time" , "label": "Time" , "type": "number"},
3+
{"id": "empty" , "label": "No Heatsink", "type": "number"},
4+
{"id": "aluminum", "label": "Aluminum" , "type": "number"},
5+
{"id": "copper" , "label": "Copper" , "type": "number"}
6+
],
7+
"rows": [
8+
{"c":[{"v": 1}, {"v": 56.382}, {"v": 56.382}, {"v": 53.692}]},
9+
{"c":[{"v": 2}, {"v": 59.610}, {"v": 59.610}, {"v": 55.843}]},
10+
{"c":[{"v": 3}, {"v": 62.300}, {"v": 61.224}, {"v": 55.306}]},
11+
{"c":[{"v": 4}, {"v": 64.451}, {"v": 62.300}, {"v": 56.920}]},
12+
{"c":[{"v": 5}, {"v": 65.528}, {"v": 62.300}, {"v": 56.920}]},
13+
{"c":[{"v": 6}, {"v": 67.142}, {"v": 63.376}, {"v": 57.458}]},
14+
{"c":[{"v": 7}, {"v": 67.679}, {"v": 64.451}, {"v": 57.996}]},
15+
{"c":[{"v": 8}, {"v": 68.756}, {"v": 64.990}, {"v": 58.533}]},
16+
{"c":[{"v": 9}, {"v": 69.832}, {"v": 65.528}, {"v": 58.533}]},
17+
{"c":[{"v": 10}, {"v": 70.908}, {"v": 65.528}, {"v": 59.072}]},
18+
{"c":[{"v": 11}, {"v": 70.908}, {"v": 65.528}, {"v": 59.072}]},
19+
{"c":[{"v": 12}, {"v": 71.984}, {"v": 66.604}, {"v": 59.610}]},
20+
{"c":[{"v": 13}, {"v": 72.522}, {"v": 66.604}, {"v": 60.148}]},
21+
{"c":[{"v": 14}, {"v": 73.060}, {"v": 66.604}, {"v": 60.148}]},
22+
{"c":[{"v": 15}, {"v": 74.136}, {"v": 67.142}, {"v": 60.686}]},
23+
{"c":[{"v": 16}, {"v": 74.136}, {"v": 68.218}, {"v": 60.686}]},
24+
{"c":[{"v": 17}, {"v": 75.212}, {"v": 68.218}, {"v": 61.224}]},
25+
{"c":[{"v": 18}, {"v": 75.212}, {"v": 68.756}, {"v": 61.224}]},
26+
{"c":[{"v": 19}, {"v": 75.212}, {"v": 68.756}, {"v": 61.224}]},
27+
{"c":[{"v": 20}, {"v": 75.750}, {"v": 69.294}, {"v": 61.224}]},
28+
{"c":[{"v": 21}, {"v": 76.287}, {"v": 69.294}, {"v": 62.300}]},
29+
{"c":[{"v": 22}, {"v": 76.287}, {"v": 69.294}, {"v": 62.838}]},
30+
{"c":[{"v": 23}, {"v": 76.826}, {"v": 69.832}, {"v": 62.300}]},
31+
{"c":[{"v": 24}, {"v": 77.364}, {"v": 69.832}, {"v": 62.838}]},
32+
{"c":[{"v": 25}, {"v": 77.902}, {"v": 70.908}, {"v": 62.838}]},
33+
{"c":[{"v": 26}, {"v": 77.364}, {"v": 70.908}, {"v": 63.376}]},
34+
{"c":[{"v": 27}, {"v": 77.902}, {"v": 70.908}, {"v": 63.376}]},
35+
{"c":[{"v": 28}, {"v": 78.440}, {"v": 70.908}, {"v": 63.914}]},
36+
{"c":[{"v": 29}, {"v": 78.440}, {"v": 71.446}, {"v": 63.914}]},
37+
{"c":[{"v": 30}, {"v": 78.440}, {"v": 70.908}, {"v": 64.451}]},
38+
{"c":[{"v": 31}, {"v": 79.516}, {"v": 71.446}, {"v": 64.451}]},
39+
{"c":[{"v": 32}, {"v": 79.516}, {"v": 71.984}, {"v": 64.990}]},
40+
{"c":[{"v": 33}, {"v": 79.516}, {"v": 72.522}, {"v": 64.990}]},
41+
{"c":[{"v": 34}, {"v": 79.516}, {"v": 71.984}, {"v": 65.528}]},
42+
{"c":[{"v": 35}, {"v": 80.054}, {"v": 73.060}, {"v": 64.990}]},
43+
{"c":[{"v": 36}, {"v": 80.054}, {"v": 72.522}, {"v": 65.528}]},
44+
{"c":[{"v": 37}, {"v": 80.054}, {"v": 73.060}, {"v": 65.528}]},
45+
{"c":[{"v": 38}, {"v": 80.592}, {"v": 74.136}, {"v": 66.066}]},
46+
{"c":[{"v": 39}, {"v": 80.592}, {"v": 73.598}, {"v": 66.066}]},
47+
{"c":[{"v": 40}, {"v": 80.592}, {"v": 73.598}, {"v": 67.142}]},
48+
{"c":[{"v": 41}, {"v": 81.130}, {"v": 73.598}, {"v": 66.604}]},
49+
{"c":[{"v": 42}, {"v": 81.130}, {"v": 73.598}, {"v": 66.604}]},
50+
{"c":[{"v": 43}, {"v": 80.592}, {"v": 74.136}, {"v": 66.604}]},
51+
{"c":[{"v": 44}, {"v": 80.592}, {"v": 74.674}, {"v": 67.142}]},
52+
{"c":[{"v": 45}, {"v": 81.668}, {"v": 74.136}, {"v": 67.142}]},
53+
{"c":[{"v": 46}, {"v": 81.130}, {"v": 74.674}, {"v": 67.679}]},
54+
{"c":[{"v": 47}, {"v": 81.130}, {"v": 75.212}, {"v": 67.679}]},
55+
{"c":[{"v": 48}, {"v": 81.668}, {"v": 75.212}, {"v": 68.756}]},
56+
{"c":[{"v": 49}, {"v": 81.668}, {"v": 75.212}, {"v": 68.756}]},
57+
{"c":[{"v": 50}, {"v": 81.668}, {"v": 75.212}, {"v": 68.756}]},
58+
{"c":[{"v": 51}, {"v": 81.668}, {"v": 75.212}, {"v": 68.756}]},
59+
{"c":[{"v": 52}, {"v": 81.668}, {"v": 75.212}, {"v": 68.756}]},
60+
{"c":[{"v": 53}, {"v": 81.668}, {"v": 75.750}, {"v": 69.294}]},
61+
{"c":[{"v": 54}, {"v": 81.668}, {"v": 76.287}, {"v": 69.832}]},
62+
{"c":[{"v": 55}, {"v": 81.668}, {"v": 76.287}, {"v": 69.294}]},
63+
{"c":[{"v": 56}, {"v": 81.130}, {"v": 75.750}, {"v": 69.832}]},
64+
{"c":[{"v": 57}, {"v": 81.668}, {"v": 76.287}, {"v": 69.832}]},
65+
{"c":[{"v": 58}, {"v": 81.668}, {"v": 76.826}, {"v": 69.832}]},
66+
{"c":[{"v": 59}, {"v": 81.130}, {"v": 77.364}, {"v": 69.832}]},
67+
{"c":[{"v": 60}, {"v": 81.668}, {"v": 76.287}, {"v": 70.369}]},
68+
{"c":[{"v": 61}, {"v": 81.668}, {"v": 77.364}, {"v": 70.369}]},
69+
{"c":[{"v": 62}, {"v": 82.205}, {"v": 76.826}, {"v": 69.832}]},
70+
{"c":[{"v": 63}, {"v": 81.668}, {"v": 77.364}, {"v": 70.908}]},
71+
{"c":[{"v": 64}, {"v": 81.668}, {"v": 77.364}, {"v": 70.908}]},
72+
{"c":[{"v": 65}, {"v": 82.205}, {"v": 77.364}, {"v": 70.908}]},
73+
{"c":[{"v": 66}, {"v": 82.205}, {"v": 77.364}, {"v": 70.908}]},
74+
{"c":[{"v": 67}, {"v": 82.205}, {"v": 78.440}, {"v": 70.908}]},
75+
{"c":[{"v": 68}, {"v": 81.668}, {"v": 78.440}, {"v": 70.908}]},
76+
{"c":[{"v": 69}, {"v": 82.205}, {"v": 77.902}, {"v": 71.446}]},
77+
{"c":[{"v": 70}, {"v": 81.668}, {"v": 78.440}, {"v": 70.908}]},
78+
{"c":[{"v": 71}, {"v": 81.668}, {"v": 78.440}, {"v": 71.984}]},
79+
{"c":[{"v": 72}, {"v": 82.744}, {"v": 78.440}, {"v": 71.446}]},
80+
{"c":[{"v": 73}, {"v": 82.205}, {"v": 78.978}, {"v": 71.984}]},
81+
{"c":[{"v": 74}, {"v": 81.668}, {"v": 78.440}, {"v": 72.522}]},
82+
{"c":[{"v": 75}, {"v": 81.668}, {"v": 78.978}, {"v": 71.984}]},
83+
{"c":[{"v": 76}, {"v": 81.668}, {"v": 78.978}, {"v": 72.522}]},
84+
{"c":[{"v": 77}, {"v": 81.668}, {"v": 79.516}, {"v": 72.522}]},
85+
{"c":[{"v": 78}, {"v": 82.205}, {"v": 78.978}, {"v": 72.522}]},
86+
{"c":[{"v": 79}, {"v": 82.744}, {"v": 79.516}, {"v": 71.984}]},
87+
{"c":[{"v": 80}, {"v": 82.205}, {"v": 79.516}, {"v": 73.060}]},
88+
{"c":[{"v": 81}, {"v": 82.205}, {"v": 79.516}, {"v": 73.060}]},
89+
{"c":[{"v": 82}, {"v": 82.744}, {"v": 80.054}, {"v": 73.060}]},
90+
{"c":[{"v": 83}, {"v": 82.205}, {"v": 79.516}, {"v": 73.060}]},
91+
{"c":[{"v": 84}, {"v": 82.205}, {"v": 80.592}, {"v": 73.060}]},
92+
{"c":[{"v": 85}, {"v": 82.744}, {"v": 80.054}, {"v": 73.060}]}
93+
]
94+
}

0 commit comments

Comments
 (0)