aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-084/pete-houston/perl/ch-1.pl30
-rw-r--r--challenge-084/pete-houston/perl/ch-2.pl56
-rw-r--r--stats/pwc-current.json319
-rw-r--r--stats/pwc-language-breakdown-summary.json78
-rw-r--r--stats/pwc-language-breakdown.json1186
-rw-r--r--stats/pwc-leaders.json390
-rw-r--r--stats/pwc-summary-1-30.json102
-rw-r--r--stats/pwc-summary-121-150.json106
-rw-r--r--stats/pwc-summary-151-180.json48
-rw-r--r--stats/pwc-summary-181-210.json24
-rw-r--r--stats/pwc-summary-31-60.json112
-rw-r--r--stats/pwc-summary-61-90.json106
-rw-r--r--stats/pwc-summary-91-120.json40
-rw-r--r--stats/pwc-summary.json52
14 files changed, 1375 insertions, 1274 deletions
diff --git a/challenge-084/pete-houston/perl/ch-1.pl b/challenge-084/pete-houston/perl/ch-1.pl
new file mode 100644
index 0000000000..d9028b21f1
--- /dev/null
+++ b/challenge-084/pete-houston/perl/ch-1.pl
@@ -0,0 +1,30 @@
+#!/usr/bin/env perl
+#===============================================================================
+#
+# FILE: 8401.pl
+#
+# USAGE: ./8401.pl N
+#
+# DESCRIPTION: Reverse a valid 32-bit signed integer N
+#
+# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk
+# ORGANIZATION: Openstrike
+# VERSION: 1.0
+# CREATED: 26/10/20
+#===============================================================================
+
+use strict;
+use warnings;
+use 5.014; # for /a
+
+my $ans = 0;
+my $in = shift @ARGV;
+my $intmax = 2**31 - 1;
+my $intmin = -1 - $intmax;
+
+if ($in && $in =~ /^(-?)(\d+)$/a) {
+ my $rev = $1 . reverse $2;
+ $ans = $rev if ($rev <= $intmax && $rev >= $intmin);
+}
+
+printf "%i\n", $ans;
diff --git a/challenge-084/pete-houston/perl/ch-2.pl b/challenge-084/pete-houston/perl/ch-2.pl
new file mode 100644
index 0000000000..c6d3d1bb70
--- /dev/null
+++ b/challenge-084/pete-houston/perl/ch-2.pl
@@ -0,0 +1,56 @@
+#!/usr/bin/env perl
+#===============================================================================
+#
+# FILE: 8402.pl
+#
+# USAGE: ./8402.pl
+#
+# DESCRIPTION: Find squares with all-1 corners in 2-d bit array
+#
+# REQUIREMENTS: List::Util
+# NOTES: Array is read from STDIN
+# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk
+# ORGANIZATION: Openstrike
+# VERSION: 1.0
+# CREATED: 31/10/20
+#===============================================================================
+
+use strict;
+use warnings;
+use List::Util 'min';
+
+my @a; # Bit array
+my $count = 0;
+
+# Input
+print "Enter your array, 1 row at a time.\n";
+while (<STDIN>) {
+ push @a, [/[01]/g];
+}
+
+# Make sure it is rectangular
+validate (\@a);
+
+# Find the squares
+my $min = min ($#a, $#{$a[0]});
+for my $y (0 .. $#a - 1) {
+ for my $x (0 .. $#{$a[0]} - 1) {
+ next unless $a[$y][$x];
+ for my $offset (1 .. min ($#a - $y, $#{$a[0]} - $x)) {
+ $count++ if $a[$y + $offset][$x] &&
+ $a[$y][$x + $offset] &&
+ $a[$y + $offset][$x + $offset];
+ }
+ }
+}
+
+# Output
+print "$count\n";
+
+sub validate {
+ my $arr = shift;
+ my $len = $#{$arr->[0]};
+ for (1 .. $#$arr) {
+ die "Rows have different lengths" unless $#{$arr->[$_]} == $len;
+ }
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index d062d770af..cc8ff5deb0 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,70 +1,52 @@
{
- "legend" : {
- "enabled" : 0
- },
- "tooltip" : {
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "followPointer" : 1
- },
- "subtitle" : {
- "text" : "[Champions: 37] Last updated at 2020-11-01 16:45:59 GMT"
- },
- "xAxis" : {
- "type" : "category"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
"series" : [
{
+ "name" : "Perl Weekly Challenge - 084",
"data" : [
{
"name" : "Abigail",
- "y" : 2,
- "drilldown" : "Abigail"
+ "drilldown" : "Abigail",
+ "y" : 2
},
{
"y" : 2,
- "drilldown" : "Andrew Shitov",
- "name" : "Andrew Shitov"
+ "name" : "Andrew Shitov",
+ "drilldown" : "Andrew Shitov"
},
{
"name" : "Arne Sommer",
- "y" : 4,
- "drilldown" : "Arne Sommer"
+ "drilldown" : "Arne Sommer",
+ "y" : 4
},
{
- "name" : "Athanasius",
"y" : 4,
+ "name" : "Athanasius",
"drilldown" : "Athanasius"
},
{
- "name" : "Colin Crain",
+ "y" : 1,
"drilldown" : "Colin Crain",
- "y" : 1
+ "name" : "Colin Crain"
},
{
- "y" : 1,
+ "name" : "Cristina Heredia",
"drilldown" : "Cristina Heredia",
- "name" : "Cristina Heredia"
+ "y" : 1
},
{
- "y" : 2,
+ "name" : "Dave Cross",
"drilldown" : "Dave Cross",
- "name" : "Dave Cross"
+ "y" : 2
},
{
- "y" : 2,
+ "name" : "Dave Jacoby",
"drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby"
+ "y" : 2
},
{
- "y" : 2,
+ "name" : "Dieter Dobbelaere",
"drilldown" : "Dieter Dobbelaere",
- "name" : "Dieter Dobbelaere"
+ "y" : 2
},
{
"y" : 2,
@@ -72,63 +54,63 @@
"name" : "E. Choroba"
},
{
- "drilldown" : "Feng Chang",
"y" : 2,
+ "drilldown" : "Feng Chang",
"name" : "Feng Chang"
},
{
"name" : "Flavio Poletti",
- "y" : 4,
- "drilldown" : "Flavio Poletti"
+ "drilldown" : "Flavio Poletti",
+ "y" : 4
},
{
+ "y" : 2,
"name" : "James Smith",
- "drilldown" : "James Smith",
- "y" : 2
+ "drilldown" : "James Smith"
},
{
- "name" : "Jan Krnavek",
"y" : 2,
- "drilldown" : "Jan Krnavek"
+ "drilldown" : "Jan Krnavek",
+ "name" : "Jan Krnavek"
},
{
- "drilldown" : "Jorg Sommrey",
"y" : 2,
- "name" : "Jorg Sommrey"
+ "name" : "Jorg Sommrey",
+ "drilldown" : "Jorg Sommrey"
},
{
"y" : 2,
- "drilldown" : "Jose Luis",
- "name" : "Jose Luis"
+ "name" : "Jose Luis",
+ "drilldown" : "Jose Luis"
},
{
+ "y" : 4,
"name" : "Julio de Castro",
- "drilldown" : "Julio de Castro",
- "y" : 4
+ "drilldown" : "Julio de Castro"
},
{
"drilldown" : "Kang-min Liu",
- "y" : 4,
- "name" : "Kang-min Liu"
+ "name" : "Kang-min Liu",
+ "y" : 4
},
{
"drilldown" : "Lars Thegler",
- "y" : 2,
- "name" : "Lars Thegler"
+ "name" : "Lars Thegler",
+ "y" : 2
},
{
+ "drilldown" : "Laurent Rosenfeld",
"name" : "Laurent Rosenfeld",
- "y" : 5,
- "drilldown" : "Laurent Rosenfeld"
+ "y" : 5
},
{
- "drilldown" : "Lubos Kolouch",
"y" : 2,
+ "drilldown" : "Lubos Kolouch",
"name" : "Lubos Kolouch"
},
{
- "name" : "Mark Anderson",
"drilldown" : "Mark Anderson",
+ "name" : "Mark Anderson",
"y" : 2
},
{
@@ -137,44 +119,49 @@
"y" : 2
},
{
- "name" : "Myoungjin Jeon",
"y" : 6,
- "drilldown" : "Myoungjin Jeon"
+ "drilldown" : "Myoungjin Jeon",
+ "name" : "Myoungjin Jeon"
},
{
"drilldown" : "Niels van Dijke",
- "y" : 2,
- "name" : "Niels van Dijke"
+ "name" : "Niels van Dijke",
+ "y" : 2
},
{
"name" : "Nuno Vieira",
- "y" : 2,
- "drilldown" : "Nuno Vieira"
+ "drilldown" : "Nuno Vieira",
+ "y" : 2
},
{
- "y" : 2,
+ "drilldown" : "Pete Houston",
+ "name" : "Pete Houston",
+ "y" : 2
+ },
+ {
+ "name" : "Philip Hood",
"drilldown" : "Philip Hood",
- "name" : "Philip Hood"
+ "y" : 2
},
{
+ "drilldown" : "Rage311",
"name" : "Rage311",
- "y" : 2,
- "drilldown" : "Rage311"
+ "y" : 2
},
{
- "drilldown" : "Roger Bell_West",
"y" : 5,
- "name" : "Roger Bell_West"
+ "name" : "Roger Bell_West",
+ "drilldown" : "Roger Bell_West"
},
{
+ "name" : "Samir Parikh",
"drilldown" : "Samir Parikh",
- "y" : 3,
- "name" : "Samir Parikh"
+ "y" : 3
},
{
- "name" : "Shawn Wagner",
+ "y" : 2,
"drilldown" : "Shawn Wagner",
- "y" : 2
+ "name" : "Shawn Wagner"
},
{
"y" : 3,
@@ -182,9 +169,9 @@
"name" : "Simon Green"
},
{
- "drilldown" : "Simon Proctor",
"y" : 2,
- "name" : "Simon Proctor"
+ "name" : "Simon Proctor",
+ "drilldown" : "Simon Proctor"
},
{
"name" : "Stuart Little",
@@ -192,46 +179,56 @@
"y" : 2
},
{
+ "y" : 2,
"name" : "Ulrich Rieke",
- "drilldown" : "Ulrich Rieke",
- "y" : 2
+ "drilldown" : "Ulrich Rieke"
},
{
- "name" : "Walt Mankowski",
"y" : 2,
+ "name" : "Walt Mankowski",
"drilldown" : "Walt Mankowski"
},
{
- "name" : "Wanderdoc",
+ "y" : 2,
"drilldown" : "Wanderdoc",
- "y" : 2
+ "name" : "Wanderdoc"
}
],
- "colorByPoint" : 1,
- "name" : "Perl Weekly Challenge - 084"
+ "colorByPoint" : 1
}
],
+ "legend" : {
+ "enabled" : 0
+ },
+ "tooltip" : {
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
+ "followPointer" : 1
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge - 084"
+ },
"drilldown" : {
"series" : [
{
+ "name" : "Abigail",
+ "id" : "Abigail",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Abigail",
- "name" : "Abigail"
+ ]
},
{
- "name" : "Andrew Shitov",
- "id" : "Andrew Shitov",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Andrew Shitov",
+ "name" : "Andrew Shitov"
},
{
"name" : "Arne Sommer",
@@ -252,8 +249,6 @@
]
},
{
- "name" : "Athanasius",
- "id" : "Athanasius",
"data" : [
[
"Perl",
@@ -263,80 +258,81 @@
"Raku",
2
]
- ]
+ ],
+ "id" : "Athanasius",
+ "name" : "Athanasius"
},
{
+ "name" : "Colin Crain",
+ "id" : "Colin Crain",
"data" : [
[
"Blog",
1
]
- ],
- "id" : "Colin Crain",
- "name" : "Colin Crain"
+ ]
},
{
- "id" : "Cristina Heredia",
"data" : [
[
"Perl",
1
]
],
+ "id" : "Cristina Heredia",
"name" : "Cristina Heredia"
},
{
"id" : "Dave Cross",
+ "name" : "Dave Cross",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Dave Cross"
+ ]
},
{
+ "id" : "Dave Jacoby",
"name" : "Dave Jacoby",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Dave Jacoby"
+ ]
},
{
+ "name" : "Dieter Dobbelaere",
+ "id" : "Dieter Dobbelaere",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Dieter Dobbelaere",
- "name" : "Dieter Dobbelaere"
+ ]
},
{
+ "id" : "E. Choroba",
"name" : "E. Choroba",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "E. Choroba"
+ ]
},
{
+ "name" : "Feng Chang",
"id" : "Feng Chang",
"data" : [
[
"Raku",
2
]
- ],
- "name" : "Feng Chang"
+ ]
},
{
- "name" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -347,49 +343,51 @@
2
]
],
- "id" : "Flavio Poletti"
+ "id" : "Flavio Poletti",
+ "name" : "Flavio Poletti"
},
{
+ "id" : "James Smith",
+ "name" : "James Smith",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "James Smith",
- "name" : "James Smith"
+ ]
},
{
"id" : "Jan Krnavek",
+ "name" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
- ],
- "name" : "Jan Krnavek"
+ ]
},
{
- "id" : "Jorg Sommrey",
"data" : [
[
"Perl",
2
]
],
- "name" : "Jorg Sommrey"
+ "name" : "Jorg Sommrey",
+ "id" : "Jorg Sommrey"
},
{
- "name" : "Jose Luis",
- "id" : "Jose Luis",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Jose Luis",
+ "name" : "Jose Luis"
},
{
+ "id" : "Julio de Castro",
"name" : "Julio de Castro",
"data" : [
[
@@ -400,8 +398,7 @@
"Raku",
2
]
- ],
- "id" : "Julio de Castro"
+ ]
},
{
"data" : [
@@ -428,7 +425,6 @@
"name" : "Lars Thegler"
},
{
- "name" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -443,40 +439,42 @@
1
]
],
- "id" : "Laurent Rosenfeld"
+ "id" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld"
},
{
+ "name" : "Lubos Kolouch",
"id" : "Lubos Kolouch",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Lubos Kolouch"
+ ]
},
{
- "name" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
],
- "id" : "Mark Anderson"
+ "id" : "Mark Anderson",
+ "name" : "Mark Anderson"
},
{
- "id" : "Markus Holzer",
"data" : [
[
"Raku",
2
]
],
- "name" : "Markus Holzer"
+ "name" : "Markus Holzer",
+ "id" : "Markus Holzer"
},
{
"name" : "Myoungjin Jeon",
+ "id" : "Myoungjin Jeon",
"data" : [
[
"Perl",
@@ -490,28 +488,37 @@
"Blog",
2
]
- ],
- "id" : "Myoungjin Jeon"
+ ]
},
{
+ "name" : "Niels van Dijke",
"id" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
+ ]
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
],
- "name" : "Niels van Dijke"
+ "name" : "Nuno Vieira",
+ "id" : "Nuno Vieira"
},
{
- "id" : "Nuno Vieira",
"data" : [
[
"Perl",
2
]
],
- "name" : "Nuno Vieira"
+ "id" : "Pete Houston",
+ "name" : "Pete Houston"
},
{
"data" : [
@@ -552,7 +559,6 @@
]
},
{
- "name" : "Samir Parikh",
"data" : [
[
"Perl",
@@ -563,11 +569,12 @@
1
]
],
- "id" : "Samir Parikh"
+ "id" : "Samir Parikh",
+ "name" : "Samir Parikh"
},
{
- "name" : "Shawn Wagner",
"id" : "Shawn Wagner",
+ "name" : "Shawn Wagner",
"data" : [
[
"Perl",
@@ -576,8 +583,6 @@
]
},
{
- "name" : "Simon Green",
- "id" : "Simon Green",
"data" : [
[
"Perl",
@@ -587,16 +592,18 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Simon Green",
+ "name" : "Simon Green"
},
{
- "id" : "Simon Proctor",
"data" : [
[
"Raku",
2
]
],
+ "id" : "Simon Proctor",
"name" : "Simon Proctor"
},
{
@@ -610,6 +617,7 @@
]
},
{
+ "name" : "Ulrich Rieke",
"id" : "Ulrich Rieke",
"data" : [
[
@@ -620,8 +628,7 @@
"Raku",
1
]
- ],
- "name" : "Ulrich Rieke"
+ ]
},
{
"data" : [
@@ -630,27 +637,21 @@
2
]
],
- "id" : "Walt Mankowski",
- "name" : "Walt Mankowski"
+ "name" : "Walt Mankowski",
+ "id" : "Walt Mankowski"
},
{
"id" : "Wanderdoc",
+ "name" : "Wanderdoc",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Wanderdoc"
+ ]
}
]
},
- "chart" : {
- "type" : "column"
- },
- "title" : {
- "text" : "Perl Weekly Challenge - 084"
- },
"plotOptions" : {
"series" : {
"dataLabels" : {
@@ -659,5 +660,19 @@
},
"borderWidth" : 0
}
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "subtitle" : {
+ "text" : "[Champions: 38] Last updated at 2020-11-01 17:33:48 GMT"
+ },
+ "xAxis" : {
+ "type" : "category"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 7a3d4bb600..c6b3e1bdfe 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,19 +1,27 @@
{
+ "xAxis" : {
+ "type" : "category",
+ "labels" : {
+ "style" : {
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ }
+ }
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : null
+ },
+ "min" : 0
+ },
+ "subtitle" : {
+ "text" : "Last updated at 2020-11-01 17:33:48 GMT"
+ },
"series" : [
{
- "name" : "Contributions",
- "dataLabels" : {
- "rotation" : -90,
- "align" : "right",
- "format" : "{point.y:.0f}",
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- },
- "color" : "#FFFFFF",
- "enabled" : "true",
- "y" : 10
- },
"data" : [
[
"Blog",
@@ -21,43 +29,35 @@
],
[
"Perl",
- 3711
+ 3713
],
[
"Raku",
2372
]
- ]
+ ],
+ "dataLabels" : {
+ "format" : "{point.y:.0f}",
+ "align" : "right",
+ "color" : "#FFFFFF",
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ },
+ "enabled" : "true",
+ "rotation" : -90,
+ "y" : 10
+ },
+ "name" : "Contributions"
}
],
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
+ },
"title" : {
"text" : "Perl Weekly Challenge Contributions [2019 - 2020]"
},
- "chart" : {
- "type" : "column"
- },
"legend" : {
"enabled" : "false"
- },
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
- "subtitle" : {
- "text" : "Last updated at 2020-11-01 16:45:59 GMT"
- },
- "xAxis" : {
- "labels" : {
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- }
- },
- "type" : "category"
- },
- "yAxis" : {
- "min" : 0,
- "title" : {
- "text" : null
- }
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index d110492f1e..a883a3e447 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,26 +1,447 @@
{
- "tooltip" : {
- "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>",
- "followPointer" : "true",
- "headerFormat" : "<span style=\"font-size:11px\"></span>"
- },
+ "series" : [
+ {
+ "name" : "Perl Weekly Challenge Languages",
+ "colorByPoint" : "true",
+ "data" : [
+ {
+ "drilldown" : "001",
+ "name" : "#001",
+ "y" : 145
+ },
+ {
+ "name" : "#002",
+ "drilldown" : "002",
+ "y" : 114
+ },
+ {
+ "drilldown" : "003",
+ "name" : "#003",
+ "y" : 71
+ },
+ {
+ "drilldown" : "004",
+ "name" : "#004",
+ "y" : 91
+ },
+ {
+ "y" : 72,
+ "drilldown" : "005",
+ "name" : "#005"
+ },
+ {
+ "drilldown" : "006",
+ "name" : "#006",
+ "y" : 52
+ },
+ {
+ "y" : 59,
+ "name" : "#007",
+ "drilldown" : "007"
+ },
+ {
+ "y" : 72,
+ "drilldown" : "008",
+ "name" : "#008"
+ },
+ {
+ "drilldown" : "009",
+ "name" : "#009",
+ "y" : 70
+ },
+ {
+ "y" : 60,
+ "drilldown" : "010",
+ "name" : "#010"
+ },
+ {
+ "name" : "#011",
+ "drilldown" : "011",
+ "y" : 79
+ },
+ {
+ "drilldown" : "012",
+ "name" : "#012",
+ "y" : 83
+ },
+ {
+ "name" : "#013",
+ "drilldown" : "013",
+ "y" : 78
+ },
+ {
+ "drilldown" : "014",
+ "name" : "#014",
+ "y" : 96
+ },
+ {
+ "drilldown" : "015",
+ "name" : "#015",
+ "y" : 93
+ },
+ {
+ "drilldown" : "016",
+ "name" : "#016",
+ "y" : 66
+ },
+ {
+ "y" : 79,
+ "drilldown" : "017",
+ "name" : "#017"
+ },
+ {
+ "name" : "#018",
+ "drilldown" : "018",
+ "y" : 76
+ },
+ {
+ "y" : 97,
+ "name" : "#019",
+ "drilldown" : "019"
+ },
+ {
+ "drilldown" : "020",
+ "name" : "#020",
+ "y" : 95
+ },
+ {
+ "drilldown" : "021",
+ "name" : "#021",
+ "y" : 67
+ },
+ {
+ "name" : "#022",
+ "drilldown" : "022",
+ "y" : 63
+ },
+ {
+ "y" : 91,
+ "name" : "#023",
+ "drilldown" : "023"
+ },
+ {
+ "name" : "#024",
+ "drilldown" : "024",
+ "y" : 70
+ },
+ {
+ "name" : "#025",
+ "drilldown" : "025",
+ "y" : 55
+ },
+ {
+ "y" : 70,
+ "name" : "#026",
+ "drilldown" : "026"
+ },
+ {
+ "y" : 58,
+ "name" : "#027",
+ "drilldown" : "027"
+ },
+ {
+ "y" : 78,
+ "drilldown" : "028",
+ "name" : "#028"
+ },
+ {
+ "name" : "#029",
+ "drilldown" : "029",
+ "y" : 77
+ },
+ {
+ "name" : "#030",
+ "drilldown" : "030",
+ "y" : 115
+ },
+ {
+ "y" : 87,
+ "name" : "#031",
+ "drilldown" : "031"
+ },
+ {
+ "name" : "#032",
+ "drilldown" : "032",
+ "y" : 92
+ },
+ {
+ "drilldown" : "033",
+ "name" : "#033",
+ "y" : 108
+ },
+ {
+ "name" : "#034",
+ "drilldown" : "034",
+ "y" : 62
+ },
+ {
+ "y" : 62,
+ "drilldown" : "035",
+ "name" : "#035"
+ },
+ {
+ "y" : 66,
+ "drilldown" : "036",
+ "name" : "#036"
+ },
+ {