aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2021-07-04 14:58:18 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2021-07-04 14:58:18 +0100
commit5f7b76d5b841606c17f177a90397196ebf434c05 (patch)
treeb5911ed19744490c2f7419ac55fbcd83963aec3e
parent22d5fd8ea244526789b51e270689932b0f425571 (diff)
downloadperlweeklychallenge-club-5f7b76d5b841606c17f177a90397196ebf434c05.tar.gz
perlweeklychallenge-club-5f7b76d5b841606c17f177a90397196ebf434c05.tar.bz2
perlweeklychallenge-club-5f7b76d5b841606c17f177a90397196ebf434c05.zip
- Added solutions by Pete Houston.
-rw-r--r--challenge-119/pete-houston/perl/ch-1.pl58
-rw-r--r--challenge-119/pete-houston/perl/ch-2.pl82
-rw-r--r--stats/pwc-current.json295
-rw-r--r--stats/pwc-language-breakdown-summary.json52
-rw-r--r--stats/pwc-language-breakdown.json1694
-rw-r--r--stats/pwc-leaders.json782
-rw-r--r--stats/pwc-summary-1-30.json104
-rw-r--r--stats/pwc-summary-121-150.json100
-rw-r--r--stats/pwc-summary-151-180.json38
-rw-r--r--stats/pwc-summary-181-210.json56
-rw-r--r--stats/pwc-summary-211-240.json34
-rw-r--r--stats/pwc-summary-31-60.json42
-rw-r--r--stats/pwc-summary-61-90.json48
-rw-r--r--stats/pwc-summary-91-120.json54
-rw-r--r--stats/pwc-summary.json44
15 files changed, 1819 insertions, 1664 deletions
diff --git a/challenge-119/pete-houston/perl/ch-1.pl b/challenge-119/pete-houston/perl/ch-1.pl
new file mode 100644
index 0000000000..7deaf7aa55
--- /dev/null
+++ b/challenge-119/pete-houston/perl/ch-1.pl
@@ -0,0 +1,58 @@
+#!/usr/bin/env perl
+#===============================================================================
+#
+# FILE: 11901.pl
+#
+# USAGE: ./11901.pl [ N ]
+#
+# DESCRIPTION: Swap the nybbles and output the decimal.
+#
+# OPTIONS: If N is omitted, run the test suite instead
+# REQUIREMENTS: Bit::Manip, Test::More
+# NOTES: If N is given but not a small whole number an error is thrown.
+# Either swap subroutine could be used as the main one or the
+# test one in reality, of course.
+# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk
+# ORGANIZATION: Openstrike
+# VERSION: 1.0
+# CREATED: 28/06/21
+#===============================================================================
+
+use strict;
+use warnings;
+use Bit::Manip qw/bit_get bit_set/;
+use Test::More;
+
+if (scalar @ARGV) {
+ my $n = valid_input ();
+ print 0+nybble_swap ($n) . "\n";
+ exit;
+}
+
+plan tests => 256;
+for my $i (1 .. 255, 0) {
+ is nybble_swap ($i), check_swap ($i),
+ "$i swaps match to " . nybble_swap ($i);
+}
+
+sub valid_input {
+ my ($input) = $ARGV[0] =~ /^([0-9][0-9]*)$/
+ or die "Argument must be positive int\n";
+ die "Input must be less than 256" if $input >= 256;
+ return $input;
+}
+
+sub nybble_swap {
+ my $byte = shift;
+ my $nybble = bit_get ($byte, 7, 4);
+ $byte = bit_set ($byte, 4, 4, bit_get ($byte, 3, 0));
+ $byte = bit_set ($byte, 0, 4, $nybble);
+ return $byte;
+}
+
+sub check_swap {
+ my $num = shift;
+ my $upper = int $num / 16;
+ my $lower = $num % 16;
+ return $lower * 16 + $upper;
+}
diff --git a/challenge-119/pete-houston/perl/ch-2.pl b/challenge-119/pete-houston/perl/ch-2.pl
new file mode 100644
index 0000000000..59af059e7c
--- /dev/null
+++ b/challenge-119/pete-houston/perl/ch-2.pl
@@ -0,0 +1,82 @@
+#!/usr/bin/env perl
+#===============================================================================
+#
+# FILE: 11902.pl
+#
+# USAGE: ./11902.pl [-v] N
+#
+# DESCRIPTION: Print the nth member of the increasing sequence with
+# only digits 1, 2 and 3 and no double 1s.
+#
+# OPTIONS: -v will additionally list all values up to the Nth
+# REQUIREMENTS: List::Util, Getopt::Std (both in core)
+# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk
+# ORGANIZATION: Openstrike
+# VERSION: 1.0
+# CREATED: 28/06/21
+#===============================================================================
+
+use strict;
+use warnings;
+
+use List::Util 'max';
+use Getopt::Std 'getopts';
+
+# Parse the command line options and args
+my $verbose = 0;
+{
+ my %opts;
+ getopts ('v', \%opts);
+ $verbose++ if $opts{v};
+}
+
+my ($n) = $ARGV[0] =~ /^([0-9]+)$/ or die "Argument must be positive int\n";
+
+# Loop through the sequence up to the Nth entry
+my $x = 1;
+for (2 .. $n) {
+ print "$x\n" if $verbose;
+ $x = next_seq ($x);
+}
+print "$x\n";
+
+# Generate the next element of the sequence from the current one.
+sub next_seq {
+ my $cur = shift;
+
+ # Handle the trivial case
+ return $cur + 1 unless substr ($cur, -1) eq 3;
+
+ # Find the last non-3 and increment from there
+ my $loc = max rindex ($cur, 1), rindex ($cur, 2);
+
+ if ($loc < 0) {
+ # They're all threes, so replace them all with repetitions of
+ # '21' and prepend with 1
+ my $new = "1$cur";
+ $new =~ s/33/21/g;
+ $new =~ s/3$/2/;
+ return $new;
+ }
+
+ # Increment the last non-3 and replace the 3s following it with the
+ # minimal pattern which is '12121212...'
+ my $lastnon3 = substr $cur, $loc, 1;
+ my $new = $cur;
+ my $len = length $cur;
+ my $rstr = $lastnon3 + 1 . string_fill ('12', $len - $loc - 1);
+
+ substr $new, $loc, $len - $loc + 1, $rstr;
+
+ return $new;
+}
+
+# Given a pattern to repeat and a length, return a string of precisely
+# that length filled with the pattern.
+sub string_fill {
+ my ($pat, $len) = @_;
+ my $lpat = length $pat;
+ my $buf = $pat x ($len / $lpat);
+ $buf .= substr ($pat, 0, $len % $lpat);
+ return $buf;
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 71a01593ed..a9673b93e4 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,34 +1,27 @@
{
+ "chart" : {
+ "type" : "column"
+ },
"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/>",
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
"followPointer" : 1
},
- "subtitle" : {
- "text" : "[Champions: 31] Last updated at 2021-07-04 13:38:36 GMT"
- },
- "title" : {
- "text" : "The Weekly Challenge - 119"
- },
"plotOptions" : {
"series" : {
"dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
+ "format" : "{point.y}",
+ "enabled" : 1
},
"borderWidth" : 0
}
},
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
+ "xAxis" : {
+ "type" : "category"
},
"drilldown" : {
"series" : [
{
- "id" : "Abigail",
- "name" : "Abigail",
"data" : [
[
"Perl",
@@ -38,7 +31,9 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Abigail",
+ "name" : "Abigail"
},
{
"data" : [
@@ -47,8 +42,8 @@
2
]
],
- "id" : "Adam Herzog",
- "name" : "Adam Herzog"
+ "name" : "Adam Herzog",
+ "id" : "Adam Herzog"
},
{
"data" : [
@@ -61,22 +56,22 @@
2
]
],
- "id" : "Athanasius",
- "name" : "Athanasius"
+ "name" : "Athanasius",
+ "id" : "Athanasius"
},
{
+ "id" : "Colin Crain",
+ "name" : "Colin Crain",
"data" : [
[
"Blog",
1
]
- ],
- "name" : "Colin Crain",
- "id" : "Colin Crain"
+ ]
},
{
- "id" : "Dave Cross",
"name" : "Dave Cross",
+ "id" : "Dave Cross",
"data" : [
[
"Perl",
@@ -85,6 +80,8 @@
]
},
{
+ "id" : "Dave Jacoby",
+ "name" : "Dave Jacoby",
"data" : [
[
"Perl",
@@ -94,9 +91,7 @@
"Blog",
1
]
- ],
- "id" : "Dave Jacoby",
- "name" : "Dave Jacoby"
+ ]
},
{
"id" : "Duane Powell",
@@ -109,8 +104,8 @@
]
},
{
- "id" : "E. Choroba",
"name" : "E. Choroba",
+ "id" : "E. Choroba",
"data" : [
[
"Perl",
@@ -119,8 +114,8 @@
]
},
{
- "id" : "Flavio Poletti",
"name" : "Flavio Poletti",
+ "id" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -147,40 +142,42 @@
1
]
],
- "id" : "James Smith",
- "name" : "James Smith"
+ "name" : "James Smith",
+ "id" : "James Smith"
},
{
+ "name" : "Jan Krnavek",
+ "id" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Jan Krnavek",
- "name" : "Jan Krnavek"
+ ]
},
{
+ "name" : "Joan Mimosinnet",
+ "id" : "Joan Mimosinnet",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Joan Mimosinnet",
- "name" : "Joan Mimosinnet"
+ ]
},
{
- "id" : "Jorg Sommrey",
- "name" : "Jorg Sommrey",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Jorg Sommrey",
+ "name" : "Jorg Sommrey"
},
{
+ "id" : "Lance Wicks",
+ "name" : "Lance Wicks",
"data" : [
[
"Perl",
@@ -190,13 +187,9 @@
"Blog",
1
]
- ],
- "name" : "Lance Wicks",
- "id" : "Lance Wicks"
+ ]
},
{
- "id" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -210,11 +203,13 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Laurent Rosenfeld",
+ "id" : "Laurent Rosenfeld"
},
{
- "id" : "Luca Ferrari",
"name" : "Luca Ferrari",
+ "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -227,14 +222,14 @@
]
},
{
- "name" : "Lucas Ransan",
- "id" : "Lucas Ransan",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Lucas Ransan",
+ "id" : "Lucas Ransan"
},
{
"data" : [
@@ -243,18 +238,18 @@
2
]
],
- "id" : "Mark Anderson",
- "name" : "Mark Anderson"
+ "name" : "Mark Anderson",
+ "id" : "Mark Anderson"
},
{
- "id" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Mohammad S Anwar",
+ "id" : "Mohammad S Anwar"
},
{
"name" : "Niels van Dijke",
@@ -267,14 +262,14 @@
]
},
{
- "name" : "Olivier Delouya",
- "id" : "Olivier Delouya",
"data" : [
[
"Perl",
1
]
- ]
+ ],
+ "id" : "Olivier Delouya",
+ "name" : "Olivier Delouya"
},
{
"data" : [
@@ -287,8 +282,16 @@
"id" : "Paulo Custodio"
},
{
- "name" : "Roger Bell_West",
- "id" : "Roger Bell_West",
+ "name" : "Pete Houston",
+ "id" : "Pete Houston",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ]
+ },
+ {
"data" : [
[
"Perl",
@@ -302,7 +305,9 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West"
},
{
"data" : [
@@ -315,30 +320,32 @@
1
]
],
- "id" : "Simon Green",
- "name" : "Simon Green"
+ "name" : "Simon Green",
+ "id" : "Simon Green"
},
{
+ "id" : "Simon Proctor",
+ "name" : "Simon Proctor",
"data" : [
[
"Raku",
2
]
- ],
- "name" : "Simon Proctor",
- "id" : "Simon Proctor"
+ ]
},
{
- "name" : "Steven Wilson",
- "id" : "Steven Wilson",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Steven Wilson",
+ "id" : "Steven Wilson"
},
{
+ "name" : "Stuart Little",
+ "id" : "Stuart Little",
"data" : [
[
"Perl",
@@ -348,13 +355,11 @@
"Raku",
2
]
- ],
- "id" : "Stuart Little",
- "name" : "Stuart Little"
+ ]
},
{
- "name" : "Ulrich Rieke",
"id" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -367,14 +372,14 @@
]
},
{
- "name" : "Vinod Kumar K",
- "id" : "Vinod Kumar K",
"data" : [
[
"Perl",
1
]
- ]
+ ],
+ "id" : "Vinod Kumar K",
+ "name" : "Vinod Kumar K"
},
{
"data" : [
@@ -387,131 +392,134 @@
1
]
],
- "id" : "W. Luis Mochan",
- "name" : "W. Luis Mochan"
+ "name" : "W. Luis Mochan",
+ "id" : "W. Luis Mochan"
},
{
- "name" : "Wanderdoc",
- "id" : "Wanderdoc",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Wanderdoc",
+ "id" : "Wanderdoc"
}
]
},
- "xAxis" : {
- "type" : "category"
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
},
- "chart" : {
- "type" : "column"
+ "title" : {
+ "text" : "The Weekly Challenge - 119"
+ },
+ "legend" : {
+ "enabled" : 0
},
"series" : [
{
- "colorByPoint" : 1,
- "name" : "The Weekly Challenge - 119",
"data" : [
{
- "name" : "Abigail",
+ "y" : 4,
"drilldown" : "Abigail",
- "y" : 4
+ "name" : "Abigail"
},
{
+ "y" : 2,
"drilldown" : "Adam Herzog",
- "name" : "Adam Herzog",
- "y" : 2
+ "name" : "Adam Herzog"
},
{
- "drilldown" : "Athanasius",
"name" : "Athanasius",
+ "drilldown" : "Athanasius",
"y" : 4
},
{
+ "y" : 1,
"drilldown" : "Colin Crain",
- "name" : "Colin Crain",
- "y" : 1
+ "name" : "Colin Crain"
},
{
+ "drilldown" : "Dave Cross",
"y" : 2,
- "name" : "Dave Cross",
- "drilldown" : "Dave Cross"
+ "name" : "Dave Cross"
},
{
"y" : 3,
- "name" : "Dave Jacoby",
- "drilldown" : "Dave Jacoby"
+ "drilldown" : "Dave Jacoby",
+ "name" : "Dave Jacoby"
},
{
"name" : "Duane Powell",
- "drilldown" : "Duane Powell",
- "y" : 2
+ "y" : 2,
+ "drilldown" : "Duane Powell"
},
{
- "y" : 2,
"name" : "E. Choroba",
+ "y" : 2,
"drilldown" : "E. Choroba"
},
{
"y" : 6,
- "name" : "Flavio Poletti",
- "drilldown" : "Flavio Poletti"
+ "drilldown" : "Flavio Poletti",
+ "name" : "Flavio Poletti"
},
{
+ "name" : "James Smith",
"y" : 3,
- "drilldown" : "James Smith",
- "name" : "James Smith"
+ "drilldown" : "James Smith"
},
{
+ "name" : "Jan Krnavek",
"y" : 2,
- "drilldown" : "Jan Krnavek",
- "name" : "Jan Krnavek"
+ "drilldown" : "Jan Krnavek"
},
{
+ "y" : 2,
"drilldown" : "Joan Mimosinnet",
- "name" : "Joan Mimosinnet",
- "y" : 2
+ "name" : "Joan Mimosinnet"
},
{
- "name" : "Jorg Sommrey",
"drilldown" : "Jorg Sommrey",
- "y" : 2
+ "y" : 2,
+ "name" : "Jorg Sommrey"
},
{
"drilldown" : "Lance Wicks",
- "name" : "Lance Wicks",
- "y" : 3
+ "y" : 3,
+ "name" : "Lance Wicks"
},
{
- "name" : "Laurent Rosenfeld",
+ "y" : 5,
"drilldown" : "Laurent Rosenfeld",
- "y" : 5
+ "name" : "Laurent Rosenfeld"
},
{
- "y" : 4,
"name" : "Luca Ferrari",
- "drilldown" : "Luca Ferrari"
+ "drilldown" : "Luca Ferrari",
+ "y" : 4
},
{
+ "drilldown" : "Lucas Ransan",
"y" : 2,
- "name" : "Lucas Ransan",
- "drilldown" : "Lucas Ransan"
+ "name" : "Lucas Ransan"
},
{
- "drilldown" : "Mark Anderson",
"name" : "Mark Anderson",
+ "drilldown" : "Mark Anderson",
"y" : 2
},
{
- "y" : 2,
"name" : "Mohammad S Anwar",
+ "y" : 2,
"drilldown" : "Mohammad S Anwar"
},
{
- "drilldown" : "Niels van Dijke",
"name" : "Niels van Dijke",
- "y" : 2
+ "y" : 2,
+ "drilldown" : "Niels van Dijke"
},
{
"y" : 1,
@@ -524,9 +532,14 @@
"y" : 2
},
{
+ "drilldown" : "Pete Houston",
+ "y" : 2,
+ "name" : "Pete Houston"
+ },
+ {
+ "y" : 5,
"drilldown" : "Roger Bell_West",
- "name" : "Roger Bell_West",
- "y" : 5
+ "name" : "Roger Bell_West"
},
{
"y" : 3,
@@ -534,44 +547,46 @@
"name" : "Simon Green"
},
{
- "y" : 2,
"name" : "Simon Proctor",
+ "y" : 2,
"drilldown" : "Simon Proctor"
},
{
- "drilldown" : "Steven Wilson",
"name" : "Steven Wilson",
- "y" : 2
+ "y" : 2,
+ "drilldown" : "Steven Wilson"
},
{
+ "name" : "Stuart Little",
"y" : 4,
- "drilldown" : "Stuart Little",
- "name" : "Stuart Little"
+ "drilldown" : "Stuart Little"
},
{
+ "drilldown" : "Ulrich Rieke",
"y" : 4,
- "name" : "Ulrich Rieke",
- "drilldown" : "Ulrich Rieke"
+ "name" : "Ulrich Rieke"
},
{
- "name" : "Vinod Kumar K",
+ "y" : 1,
"drilldown" : "Vinod Kumar K",
- "y" : 1
+ "name" : "Vinod Kumar K"
},
{
- "y" : 3,
"drilldown" : "W. Luis Mochan",
+ "y" : 3,
"name" : "W. Luis Mochan"
},
{
"y" : 2,
- "name" : "Wanderdoc",
- "drilldown" : "Wanderdoc"
+ "drilldown" : "Wanderdoc",
+ "name" : "Wanderdoc"
}
- ]
+ ],
+ "colorByPoint" : 1,
+ "name" : "The Weekly Challenge - 119"
}
],
- "legend" : {
- "enabled" : 0
+ "subtitle" : {
+ "text" : "[Champions: 32] Last updated at 2021-07-04 13:57:33 GMT"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 494f0b4d3f..d1ff20a782 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,27 +1,15 @@
{
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
- "subtitle" : {
- "text" : "Last updated at 2021-07-04 13:38:36 GMT"
- },
- "title" : {
- "text" : "The Weekly Challenge Contributions [2019 - 2021]"
- },
- "yAxis" : {
- "min" : 0,
- "title" : {
- "text" : null
- }
- },
"xAxis" : {
+ "type" : "category",
"labels" : {
"style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
}
- },
- "type" : "category"
+ }
+ },
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
},
"chart" : {
"type" : "column"
@@ -29,16 +17,16 @@
"series" : [
{
"dataLabels" : {
- "align" : "right",
- "color" : "#FFFFFF",
- "format" : "{point.y:.0f}",
+ "enabled" : "true",
+ "rotation" : -90,
"style" : {
"fontFamily" : "Verdana, sans-serif",
"fontSize" : "13px"
},
- "y" : 10,
- "enabled" : "true",
- "rotation" : -90
+ "align" : "right",
+ "format" : "{point.y:.0f}",
+ "color" : "#FFFFFF",
+ "y" : 10
},
"data" : [
[
@@ -47,7 +35,7 @@
],
[
"Perl",
- 5662
+ 5664
],
[
"Raku",
@@ -57,6 +45,18 @@
"name" : "Contributions"
}
],
+ "subtitle" : {
+ "text" : "Last updated at 2021-07-04 13:57:33 GMT"
+ },
+ "yAxis" : {
+ "min" : 0,
+ "title" : {
+ "text" : null
+ }
+ },
+ "title" : {
+ "text" : "The Weekly Challenge Contributions [2019 - 2021]"
+ },
"legend" : {
"enabled" : "false"
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index 6d32b5aa81..1366c42d42 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -2,11 +2,643 @@
"xAxis" : {
"type" : "category"
},
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ }
+ }
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "tooltip" : {
+ "headerFormat" : "<span style=\"font-size:11px\"></span>",
+ "followPointer" : "true",
+ "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>"
+ },
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2021-07-04 13:57:33 GMT"
+ },
+ "series" : [
+ {
+ "name" : "The Weekly Challenge Languages",
+ "colorByPoint" : "true",
+ "data" : [
+ {
+ "y" : 161,
+ "drilldown" : "001",
+ "name" : "#001"
+ },
+ {
+ "y" : 125,
+ "drilldown" : "002",
+ "name" : "#002"
+ },
+ {
+ "name" : "#003",
+ "y" : 81,
+ "drilldown" : "003"
+ },
+ {
+ "name" : "#004",
+ "y" : 99,
+ "drilldown" : "004"
+ },
+ {
+ "y" : 78,
+ "drilldown" : "005",
+ "name" : "#005"
+ },
+ {
+ "drilldown" : "006",
+ "y" : 58,
+ "name" : "#006"
+ },
+ {
+ "name" : "#007",
+ "y" : 64,
+ "drilldown" : "007"
+ },
+ {
+ "drilldown" : "008",
+ "y" : 78,
+ "name" : "#008"
+ },
+ {
+ "drilldown" : "009",
+ "y" : 76,
+ "name" : "#009"
+ },
+ {
+ "drilldown" : "010",
+ "y" : 65,
+ "name" : "#010"
+ },
+ {
+ "y" : 85,
+ "drilldown" : "011",
+ "name" : "#011"
+ },
+ {
+ "drilldown" : "012",
+ "y" : 89,
+ "name" : "#012"
+ },
+ {
+ "name" : "#013",
+ "y" : 85,
+ "drilldown" : "013"
+ },
+ {
+ "drilldown" : "014",
+ "y" : 101,
+ "name" : "#014"
+ },
+ {
+ "name" : "#015",
+ "drilldown" : "015",
+ "y" : 99
+ },
+ {
+ "drilldown" : "016",
+ "y" : 71,
+ "name" : "#016"
+ },
+ {
+ "name" : "#017",
+ "drilldown" : "017",
+ "y" : 84
+ },
+ {
+ "name" : "#018",
+ "y" : 81,
+ "drilldown" : "018"
+ },
+ {
+ "name" : "#019",
+ "drilldown" : "019",
+ "y" : 103
+ },
+ {
+ "y" : 101,
+ "drilldown" : "020",
+ "name" : "#020"
+ },
+ {
+ "name" : "#021",
+ "drilldown" : "021",
+ "y" : 72
+ },
+ {
+ "name" : "#022",
+ "y" : 68,
+ "drilldown" : "022"
+ },
+ {
+ "drilldown" : "023",
+ "y" : 97,
+ "name" : "#023"
+ },
+ {
+ "drilldown" : "024",
+ "y" : 74,
+ "name" : "#024"
+ },
+ {
+ "name" : "#025",
+ "y" : 59,
+ "drilldown" : "025"
+ },
+ {
+ "name" : "#026",
+ "drilldown" : "026",
+ "y" : 74
+ },
+ {
+ "name" : "#027",
+ "y" : 60,
+ "drilldown" : "027"
+ },
+ {
+ "name" : "#028",
+ "drilldown" : "028",
+ "y" : 80
+ },
+ {
+ "y" : 79,
+ "drilldown" : "029",
+ "name" : "#029"
+ },
+