aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-170/ulrich-rieke/cpp/ch-1.cpp29
-rw-r--r--challenge-170/ulrich-rieke/cpp/ch-2.cpp97
-rw-r--r--challenge-170/ulrich-rieke/haskell/ch-1.hs17
-rw-r--r--challenge-170/ulrich-rieke/haskell/ch-2.hs12
-rw-r--r--challenge-170/ulrich-rieke/perl/ch-1.pl30
-rw-r--r--challenge-170/ulrich-rieke/perl/ch-2.pl82
-rw-r--r--challenge-170/ulrich-rieke/raku/ch-1.raku14
-rw-r--r--stats/pwc-current.json159
-rw-r--r--stats/pwc-language-breakdown-summary.json76
-rw-r--r--stats/pwc-language-breakdown.json2382
-rw-r--r--stats/pwc-leaders.json404
-rw-r--r--stats/pwc-summary-1-30.json100
-rw-r--r--stats/pwc-summary-121-150.json52
-rw-r--r--stats/pwc-summary-151-180.json40
-rw-r--r--stats/pwc-summary-181-210.json30
-rw-r--r--stats/pwc-summary-211-240.json32
-rw-r--r--stats/pwc-summary-241-270.json44
-rw-r--r--stats/pwc-summary-31-60.json122
-rw-r--r--stats/pwc-summary-61-90.json30
-rw-r--r--stats/pwc-summary-91-120.json104
-rw-r--r--stats/pwc-summary.json558
21 files changed, 2357 insertions, 2057 deletions
diff --git a/challenge-170/ulrich-rieke/cpp/ch-1.cpp b/challenge-170/ulrich-rieke/cpp/ch-1.cpp
new file mode 100644
index 0000000000..024c1046ca
--- /dev/null
+++ b/challenge-170/ulrich-rieke/cpp/ch-1.cpp
@@ -0,0 +1,29 @@
+#include <vector>
+#include <iostream>
+#include <cmath>
+
+bool isPrime( int number ) {
+ int stop = std::sqrt( static_cast<double>( number ) ) ;
+ for ( int i = 2 ; i <= stop ; ++i )
+ if ( number % i == 0 )
+ return false ;
+ return true ;
+}
+
+int main( ) {
+ std::vector<int> firstPrimes { 1 } ;
+ int current = 2 ;
+ while ( firstPrimes.size( ) != 10 ) {
+ if ( isPrime( current ) )
+ firstPrimes.push_back( current ) ;
+ current++ ;
+ }
+ std::vector<int> primorials { 1 } ;
+ for ( int i = 1 ; i < 10 ; i++ ) {
+ primorials.push_back( primorials.back( ) * firstPrimes[ i ] ) ;
+ }
+ for ( int n : primorials )
+ std::cout << n << ' ' ;
+ std::cout << std::endl ;
+ return 0 ;
+}
diff --git a/challenge-170/ulrich-rieke/cpp/ch-2.cpp b/challenge-170/ulrich-rieke/cpp/ch-2.cpp
new file mode 100644
index 0000000000..bd6fee64b1
--- /dev/null
+++ b/challenge-170/ulrich-rieke/cpp/ch-2.cpp
@@ -0,0 +1,97 @@
+#include <iostream>
+#include <vector>
+#include <numeric>
+#include <string>
+#include <algorithm>
+
+void printMatrix( const std::vector<std::vector<int>> & matrix ) {
+ std::vector<int> maxima ;
+ for ( const auto & row : matrix ) {
+ maxima.push_back( *std::max_element( row.begin( ) , row.end( ) , []( const auto
+ numa , const auto numb){ return numa > numb ; })) ;
+ }
+ int maxWidth = std::to_string(*std::max_element( maxima.begin( ) , maxima.end( )) + 1).
+ length( ) ;
+ for ( const auto row : matrix ) {
+ std::cout << '[' ;
+ for ( const auto num : row ) {
+ std::cout.width( maxWidth ) ;
+ std::cout << num << ' ' ;
+ }
+ std::cout << "]\n" ;
+ }
+}
+
+std::vector<int> findRow( const std::vector<int> & firstRow, const std::vector<int>
+ & secondRow ) {
+ std::vector<int> result ;
+ for ( int i : firstRow ) {
+ for ( int j : secondRow ) {
+ result.push_back( i * j ) ;
+ }
+ }
+ return result ;
+}
+
+std::vector<std::vector<int>> findBlock( const std::vector<int> & aRow ,
+ const std::vector<std::vector<int>> & aBlock ) {
+ std::vector<std::vector<int>> dataBlock ;
+ for ( const auto & blockRow : aBlock )
+ dataBlock.push_back( findRow( aRow , blockRow ) ) ;
+ return dataBlock ;
+}
+
+std::vector<std::vector<int>> kronecker ( const std::vector<std::vector<int>> &
+ firstMatrix , const std::vector<std::vector<int>> & secondMatrix ) {
+ std::vector<std::vector<int>> kronProduct ;
+ for ( const auto & row : firstMatrix ) {
+ std::vector<std::vector<int>> partialBlock = findBlock( row, secondMatrix ) ;
+ for ( const auto & row : partialBlock )
+ kronProduct.push_back( row ) ;
+ }
+ return kronProduct ;
+}
+
+std::vector<std::vector<int>> enterMatrix( ) {
+ std::vector<std::vector<int>> aMatrix ;
+ std::vector<int> row ;
+ std::cout << "Please enter natural numbers , end to end a row, ready to end matr.\n" ;
+ std::string number ;
+ std::getline( std::cin , number ) ;
+ while ( number != "ready" ) {
+ if ( number != "end" ) {
+ row.push_back( std::stoi( number ) ) ;
+ }
+ else {
+ aMatrix.push_back( row ) ;
+ row.clear( ) ;
+ }
+ std::getline( std::cin , number ) ;
+ }
+ int len = aMatrix.begin( )->size( ) ;
+ std::cout << len << '\n' ;
+ while ( ! std::all_of( aMatrix.begin( ) , aMatrix.end( ) , [len]( auto & row ) {
+ return row.size( ) == len ; })) {
+ std::cout << "Invalid entry! All rows should contain same quantity of numbers!\n" ;
+ aMatrix.clear( ) ;
+ row.clear( ) ;
+ std::getline( std::cin , number ) ;
+ while ( number != "ready" ) {
+ while ( number != "end" ) {
+ row.push_back( std::stoi( number ) ) ;
+ std::getline( std::cin , number ) ;
+ }
+ aMatrix.push_back( row ) ;
+ std::getline( std::cin , number ) ;
+ }
+ }
+ return aMatrix ;
+}
+
+int main( ) {
+ std::vector<std::vector<int>> firstMatrix = enterMatrix( ) ;
+ std::vector<std::vector<int>> secondMatrix = enterMatrix( ) ;
+ std::vector<std::vector<int>> kronProduct = kronecker( firstMatrix , secondMatrix ) ;
+ printMatrix( kronProduct ) ;
+ return 0 ;
+}
diff --git a/challenge-170/ulrich-rieke/haskell/ch-1.hs b/challenge-170/ulrich-rieke/haskell/ch-1.hs
new file mode 100644
index 0000000000..79642a9927
--- /dev/null
+++ b/challenge-170/ulrich-rieke/haskell/ch-1.hs
@@ -0,0 +1,17 @@
+module Challenge170
+ where
+
+isPrime :: Int -> Bool
+isPrime n
+ |n == 2 = True
+ |n == 1 = False
+ |otherwise = null $ filter (\i -> mod n i == 0 ) [2 .. root]
+ where
+ root :: Int
+ root = floor $ sqrt $ fromIntegral n
+
+primorials :: [Int]
+primorials = map (\i -> product $ take i firstPrimes ) [1 .. 10]
+where
+ firstPrimes :: [Int]
+ firstPrimes = [1] ++ (take 9 $ filter isPrime [2 , 3 ..])
diff --git a/challenge-170/ulrich-rieke/haskell/ch-2.hs b/challenge-170/ulrich-rieke/haskell/ch-2.hs
new file mode 100644
index 0000000000..fb216ea7d7
--- /dev/null
+++ b/challenge-170/ulrich-rieke/haskell/ch-2.hs
@@ -0,0 +1,12 @@
+module Challenge170_2
+ where
+
+createRow :: [Int] -> [Int] -> [Int]
+createRow row otherRow = concat $ map (\i -> map ( *i ) otherRow ) row
+
+createBlock :: [Int] -> [[Int]] -> [[Int]]
+createBlock row block = map (\line -> createRow row line) block
+
+kronecker :: [[Int]] -> [[Int]] -> [[Int]]
+kronecker firstMatrix secondMatrix = concatMap (\line -> createBlock line
+secondMatrix ) firstMatrix
diff --git a/challenge-170/ulrich-rieke/perl/ch-1.pl b/challenge-170/ulrich-rieke/perl/ch-1.pl
new file mode 100644
index 0000000000..581619ace7
--- /dev/null
+++ b/challenge-170/ulrich-rieke/perl/ch-1.pl
@@ -0,0 +1,30 @@
+use strict ;
+use warnings ;
+use feature 'say' ;
+use POSIX ;
+
+sub isPrime {
+ my $number = shift ;
+ my $stop = sqrt( $number ) ;
+ for my $i ( 2 .. floor( $stop )) {
+ if ( $number % $i == 0 ) {
+ return 0 ;
+ }
+ }
+ return 1 ;
+}
+
+my @primeNumbers = ( 1 ) ;
+my @primorials ;
+my $current = 2 ;
+while ( scalar( @primeNumbers ) != 10 ) {
+ if ( isPrime( $current ) ) {
+ push @primeNumbers, $current ;
+ }
+ $current++ ;
+}
+push @primorials, 1 ;
+for my $i (1 .. 9) {
+ push @primorials , $primorials[-1] * $primeNumbers[ $i ] ;
+}
+say join( ', ' , @primorials ) ;
diff --git a/challenge-170/ulrich-rieke/perl/ch-2.pl b/challenge-170/ulrich-rieke/perl/ch-2.pl
new file mode 100644
index 0000000000..ff3c340b42
--- /dev/null
+++ b/challenge-170/ulrich-rieke/perl/ch-2.pl
@@ -0,0 +1,82 @@
+#!/usr/bin/perl ;
+use strict ;
+use warnings ;
+use feature 'say' ;
+use List::Util qw ( max ) ;
+
+sub createRow {
+ my $firstLine = shift ;
+ my $secondLine = shift ;
+ my @result ;
+ for my $n1 ( split( /\s+/ , $firstLine )) {
+ for my $n2 ( split( /\s+/ , $secondLine )) {
+ push @result , $n1 * $n2 ;
+ }
+ }
+ return join( ' ' , @result ) ;
+}
+
+sub createBlockFromLine {
+ my $line = shift ;
+ my $block = shift ;
+ my @result ;
+ for my $row( @$block ) {
+ push @result , createRow( $line , $row ) ;
+ }
+ return @result ;
+}
+
+sub kronecker {
+ my $firstMatrix = shift ;
+ my $secondMatrix = shift ;
+ my @result ;
+ for my $row( @$firstMatrix ) {
+ push @result , createBlockFromLine( $row , $secondMatrix ) ;
+ }
+ return @result ;
+}
+
+sub printMatrix {
+ my $matrix = shift ;
+ my @allNumbers ;
+ for my $row( @$matrix ) {
+ for my $num( split( /\s/ , $row )) {
+ push @allNumbers , $num ;
+ }
+ }
+ my $maxLen = length ( max( @allNumbers ) . "" ) + 1 ;
+ for my $row( @$matrix ) {
+ print '[' ;
+ for my $num( split( /\s/ , $row )) {
+ print (' ' x ( $maxLen - ( length ($num . "" ))) . $num . ' ') ;
+ }
+ say ']' ;
+ }
+}
+
+sub enterMatrix {
+ say "Please enter a natural numbers separated by spaces!" ;
+ say "Enter end to stop matrix entry!" ;
+ my @matrix ;
+ my $line = <STDIN> ;
+ chomp $line ;
+ my $numberCount = scalar( split( /\s+/ , $line ) ) ;
+ while ( $line ne "end" ) {
+ my $nextNumberCount = scalar( split( /\s+/ , $line )) ;
+ if ( $nextNumberCount == $numberCount ) {
+ push @matrix , $line ;
+ }
+ else {
+ say "You should enter as many numbers as in the first line of the matrix!" ;
+ say "Re-enter!" ;
+ }
+ $line = <STDIN> ;
+ chomp $line ;
+ }
+ return @matrix ;
+}
+
+my @firstMatrix = enterMatrix( ) ;
+my @secondMatrix = enterMatrix( ) ;
+my @kron_product = kronecker( \@firstMatrix , \@secondMatrix ) ;
+printMatrix (\@kron_product ) ;
diff --git a/challenge-170/ulrich-rieke/raku/ch-1.raku b/challenge-170/ulrich-rieke/raku/ch-1.raku
new file mode 100644
index 0000000000..547a669518
--- /dev/null
+++ b/challenge-170/ulrich-rieke/raku/ch-1.raku
@@ -0,0 +1,14 @@
+use v6 ;
+my @primorials ;
+my @firstPrimes = 1 ;
+my $current = 2 ;
+while ( @firstPrimes.elems != 10 ) {
+ if ( $current.is-prime ) {
+ @firstPrimes.push( $current ) ;
+ }
+ $current++ ;
+}
+for (0..9) -> $i {
+ @primorials.push( [*] @firstPrimes[ 0 .. $i] ) ;
+}
+say @primorials.join( ',' ) ;
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 9f55f01b37..728cfff2d3 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,21 +1,20 @@
{
"series" : [
{
- "name" : "The Weekly Challenge - 170",
"data" : [
{
+ "drilldown" : "Cheok-Yin Fung",
"y" : 2,
- "name" : "Cheok-Yin Fung",
- "drilldown" : "Cheok-Yin Fung"
+ "name" : "Cheok-Yin Fung"
},
{
- "drilldown" : "Dave Jacoby",
"y" : 2,
+ "drilldown" : "Dave Jacoby",
"name" : "Dave Jacoby"
},
{
- "drilldown" : "E. Choroba",
"name" : "E. Choroba",
+ "drilldown" : "E. Choroba",
"y" : 2
},
{
@@ -24,104 +23,79 @@
"drilldown" : "James Smith"
},
{
- "drilldown" : "Luca Ferrari",
"y" : 8,
+ "drilldown" : "Luca Ferrari",
"name" : "Luca Ferrari"
},
{
- "y" : 2,
"name" : "Marton Polgar",
- "drilldown" : "Marton Polgar"
+ "drilldown" : "Marton Polgar",
+ "y" : 2
},
{
- "drilldown" : "Matthew Neleigh",
"name" : "Matthew Neleigh",
+ "drilldown" : "Matthew Neleigh",
"y" : 2
},
{
+ "name" : "Peter Campbell Smith",
"drilldown" : "Peter Campbell Smith",
- "y" : 3,
- "name" : "Peter Campbell Smith"
+ "y" : 3
},
{
+ "name" : "Robert DiCicco",
"drilldown" : "Robert DiCicco",
- "y" : 2,
- "name" : "Robert DiCicco"
+ "y" : 2
},
{
- "y" : 4,
"name" : "Roger Bell_West",
- "drilldown" : "Roger Bell_West"
+ "drilldown" : "Roger Bell_West",
+ "y" : 4
},
{
- "drilldown" : "Stephen G Lynn",
"name" : "Stephen G Lynn",
- "y" : 4
+ "y" : 4,
+ "drilldown" : "Stephen G Lynn"
+ },
+ {
+ "name" : "Ulrich Rieke",
+ "y" : 3,
+ "drilldown" : "Ulrich Rieke"
},
{
- "name" : "W. Luis Mochan",
"y" : 3,
- "drilldown" : "W. Luis Mochan"
+ "drilldown" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan"
}
],
+ "name" : "The Weekly Challenge - 170",
"colorByPoint" : 1
}
],
- "legend" : {
- "enabled" : 0
- },
"title" : {
"text" : "The Weekly Challenge - 170"
},
- "xAxis" : {
- "type" : "category"
- },
- "subtitle" : {
- "text" : "[Champions: 12] Last updated at 2022-06-21 22:17:58 GMT"
- },
- "chart" : {
- "type" : "column"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "tooltip" : {
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "followPointer" : 1,
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>"
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- },
- "borderWidth" : 0
- }
- },
"drilldown" : {
"series" : [
{
- "id" : "Cheok-Yin Fung",
- "name" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Cheok-Yin Fung",
+ "id" : "Cheok-Yin Fung"
},
{
- "id" : "Dave Jacoby",
- "name" : "Dave Jacoby",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Dave Jacoby",
+ "id" : "Dave Jacoby"
},
{
"data" : [
@@ -130,12 +104,12 @@
2
]
],
- "id" : "E. Choroba",
- "name" : "E. Choroba"
+ "name" : "E. Choroba",
+ "id" : "E. Choroba"
},
{
- "name" : "James Smith",
"id" : "James Smith",
+ "name" : "James Smith",
"data" : [
[
"Perl",
@@ -148,6 +122,7 @@
]
},
{
+ "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -158,7 +133,6 @@
6
]
],
- "id" : "Luca Ferrari",
"name" : "Luca Ferrari"
},
{
@@ -168,8 +142,8 @@
2
]
],
- "id" : "Marton Polgar",
- "name" : "Marton Polgar"
+ "name" : "Marton Polgar",
+ "id" : "Marton Polgar"
},
{
"id" : "Matthew Neleigh",
@@ -183,7 +157,6 @@
},
{
"id" : "Peter Campbell Smith",
- "name" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -193,9 +166,11 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Peter Campbell Smith"
},
{
+ "id" : "Robert DiCicco",
"data" : [
[
"Perl",
@@ -206,7 +181,6 @@
1
]
],
- "id" : "Robert DiCicco",
"name" : "Robert DiCicco"
},
{
@@ -220,10 +194,11 @@
2
]
],
- "id" : "Roger Bell_West",
- "name" : "Roger Bell_West"
+ "name" : "Roger Bell_West",
+ "id" : "Roger Bell_West"
},
{
+ "name" : "Stephen G Lynn",
"data" : [
[
"Perl",
@@ -234,11 +209,23 @@
2
]
],
- "name" : "Stephen G Lynn",
"id" : "Stephen G Lynn"
},
{
- "name" : "W. Luis Mochan",
+ "id" : "Ulrich Rieke",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 1
+ ]
+ ],
+ "name" : "Ulrich Rieke"
+ },
+ {
"id" : "W. Luis Mochan",
"data" : [
[
@@ -249,8 +236,40 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "W. Luis Mochan"
}
]
+ },
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ },
+ "borderWidth" : 0
+ }
+ },
+ "legend" : {
+ "enabled" : 0
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "tooltip" : {
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
+ "followPointer" : 1,
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>"
+ },
+ "subtitle" : {
+ "text" : "[Champions: 13] Last updated at 2022-06-21 22:29:30 GMT"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 5033ce8f8d..2a7a66f852 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,34 +1,6 @@
{
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
- "yAxis" : {
- "min" : 0,
- "title" : {
- "text" : null
- }
- },
- "chart" : {
- "type" : "column"
- },
- "legend" : {
- "enabled" : "false"
- },
"series" : [
{
- "name" : "Contributions",
- "dataLabels" : {
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- },
- "enabled" : "true",
- "y" : 10,
- "format" : "{point.y:.0f}",
- "align" : "right",
- "rotation" : -90,
- "color" : "#FFFFFF"
- },
"data" : [
[
"Blog",
@@ -36,28 +8,56 @@
],
[
"Perl",
- 8265
+ 8267
],
[
"Raku",
- 4905
+ 4906
]
- ]
+ ],
+ "name" : "Contributions",
+ "dataLabels" : {
+ "rotation" : -90,
+ "enabled" : "true",
+ "align" : "right",
+ "color" : "#FFFFFF",
+ "y" : 10,
+ "format" : "{point.y:.0f}",
+ "style" : {
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ }
+ }
}
],
- "subtitle" : {
- "text" : "Last updated at 2022-06-21 22:17:58 GMT"
+ "title" : {
+ "text" : "The Weekly Challenge Contributions [2019 - 2022]"
},
"xAxis" : {
- "type" : "category",
"labels" : {
"style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
}
+ },
+ "type" : "category"
+ },
+ "yAxis" : {
+ "min" : 0,
+ "title" : {
+ "text" : null
}
},
- "title" : {
- "text" : "The Weekly Challenge Contributions [2019 - 2022]"
+ "chart" : {
+ "type" : "column"
+ },
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
+ },
+ "legend" : {
+ "enabled" : "false"
+ },
+ "subtitle" : {
+ "text" : "Last updated at 2022-06-21 22:29:29 GMT"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index a45878fd66..3064dda610 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -2,881 +2,9 @@
"legend" : {
"enabled" : "false"
},
- "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" : [
- {
- "data" : [
- {
- "y" : 161,
- "name" : "#001",
- "drilldown" : "001"
- },
- {
- "drilldown" : "002",
- "y" : 125,
- "name" : "#002"
- },
- {
- "name" : "#003",
- "y" : 83,
- "drilldown" : "003"
- },
- {
- "y" : 99,
- "name" : "#004",
- "drilldown" : "004"
- },
- {
- "drilldown" : "005",
- "name" : "#005",
- "y" : 78
- },
- {
- "y" : 58,
- "name" : "#006",
- "drilldown" : "006"
- },
- {
- "name" : "#007",
- "y" : 64,
- "drilldown" : "007"
- },
- {
- "drilldown" : "008",
- "y" : 78,
- "name" : "#008"
- },
- {
- "name" : "#009",
- "y" : 76,
- "drilldown" : "009"
- },
- {
- "name" : "#010",
- "y" : 65,
- "drilldown" : "010"
- },
- {
- "y" : 85,
- "name" : "#011",
- "drilldown" : "011"
- },
- {
- "drilldown" : "012",
- "name" : "#012",
- "y" : 89
- },
- {
- "drilldown" : "013",
- "y" : 85,
- "name" : "#013"
- },
- {
- "drilldown" : "014",
- "y" : 101,
- "name" : "#014"
- },
- {
- "y" : 99,
- "name" : "#015",
- "drilldown" : "015"
- },
- {
- "name" : "#016",
- "y" : 71,
- "drilldown" : "016"
- },
- {
- "y" : 84,
- "name" : "#017",
- "drilldown" : "017"
- },
- {
- "y" : 81,
- "name" : "#018",
- "drilldown" : "018"
- },
- {
- "y" : 103,
- "name" : "#019",
- "drilldown" : "019"
- },
- {
- "drilldown" : "020",
- "name" : "#020",
- "y" : 101
- },
- {
- "drilldown" : "021",
- "name" : "#021",
- "y" : 72
- },
- {
- "y" : 68,
- "name" : "#022",
- "drilldown" : "022"
- },
- {
- "y" : 97,
- "name" : "#023",
- "drilldown" : "023"
- },
- {
- "drilldown" : "024",
- "y" : 75,
- "name" : "#024"
- },
- {
- "name" : "#025",
- "y" : 59,
- "drilldown" : "025"
- },
- {
- "drilldown" : "026",
- "y" : 74,
- "name" : "#026"
- },
- {
- "drilldown" : "027",
- "y" : 62,
- "name" : "#027"
- },
- {
- "drilldown" : "028",
- "name" : "#028",
- "y" : 82
- },
- {
- "drilldown" : "029",
- "name" : "#029",
- "y" : 81
- },
- {
- "name" : "#030",
- "y" : 119,
- "drilldown" : "030"
- },
- {
- "y" : 91,
- "name" : "#031",
- "drilldown" : "031"
- },
- {
- "drilldown" : "032",
- "y" : 96,
- "name" : "#032"
- },
- {
- "y" : 112,
- "name" : "#033",
- "drilldown" : "033"
- },
- {
- "drilldown" : "034",
- "y" : 66,
- "name" : "#034"
- },
- {
- "drilldown" : "035",
- "y" : 66,
- "name" : "#035"
- },
- {
- "drilldown" : "036",
- "name" : "#036",
- "y" : 70
- },
- {
- "y" : 69,
- "name" : "#037",
- "drilldown" : "037"
- },
- {
- "drilldown" : "038",
- "y" : 70,
- "name" : "#038"
- },
- {
- "drilldown" : "039",
- "y" : 64,
- "name" : "#039"
- },
- {
- "drilldown" : "040",
- "y" : 75,
- "name" : "#040"
- },
- {
- "y" : 78,
- "name" : "#041",
- "drilldown" : "041"
- },
- {
- "drilldown" : "042",
- "name" : "#042",
- "y" : 94
- },
- {
- "name" : "#043",
- "y" : 70,
- "drilldown" : "043"
- },
- {
- "drilldown" : "044",
- "y" : 87,
- "name" : "#044"
- },
- {
- "drilldown" : "045",
- "y" : 98,
- "name" : "#045"
- },
- {
- "y" : 89,
- "name" : "#046",
- "drilldown" : "046"
- },
- {
- "name" : "#047",
- "y" : 86,
- "drilldown" : "047"
- },
- {
- "y" : 110,
- "name" : "#048",
- "drilldown" : "048"
- },
- {
- "y" : 91,
- "name" : "#049",
- "drilldown" : "049"
- },
- {
- "y" : 100,
- "name" : "#050",
- "drilldown" : "050"
- },
- {
- "name" : "#051",
- "y" : 91,
- "drilldown" : "051"
- },
- {
- "drilldown" : "052",
- "name" : "#052",
- "y" : 93
- },
- {
- "drilldown" : "053",
- "y" : 103,
- "name" : "#053"
- },
- {
- "drilldown" : "054",
-