aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2022-11-12 10:15:37 +0000
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2022-11-12 10:15:37 +0000
commit35b5c6a78c942743f45f11c6224a8fd4b1d0b9a1 (patch)
treefd9cd7502bbe4a3dd3d0297cc14920f47f06fec0
parente0ea162cece638e4372d52c96f5803ed70229474 (diff)
downloadperlweeklychallenge-club-35b5c6a78c942743f45f11c6224a8fd4b1d0b9a1.tar.gz
perlweeklychallenge-club-35b5c6a78c942743f45f11c6224a8fd4b1d0b9a1.tar.bz2
perlweeklychallenge-club-35b5c6a78c942743f45f11c6224a8fd4b1d0b9a1.zip
- Added solutions to the task 1 of week 190.
-rw-r--r--challenge-190/mohammad-anwar/java/theweeklychallenge/CapitalDetection.java63
-rw-r--r--challenge-190/mohammad-anwar/perl/ch-1.pl41
-rw-r--r--challenge-190/mohammad-anwar/python/ch-1.py48
-rw-r--r--challenge-190/mohammad-anwar/raku/ch-1.raku43
-rw-r--r--challenge-190/mohammad-anwar/swift/ch-1.swift78
-rw-r--r--stats/pwc-current.json189
-rw-r--r--stats/pwc-language-breakdown-summary.json86
-rw-r--r--stats/pwc-language-breakdown.json2614
-rw-r--r--stats/pwc-leaders.json740
-rw-r--r--stats/pwc-summary-1-30.json108
-rw-r--r--stats/pwc-summary-121-150.json26
-rw-r--r--stats/pwc-summary-151-180.json104
-rw-r--r--stats/pwc-summary-181-210.json50
-rw-r--r--stats/pwc-summary-211-240.json88
-rw-r--r--stats/pwc-summary-241-270.json102
-rw-r--r--stats/pwc-summary-271-300.json60
-rw-r--r--stats/pwc-summary-31-60.json32
-rw-r--r--stats/pwc-summary-61-90.json98
-rw-r--r--stats/pwc-summary-91-120.json34
-rw-r--r--stats/pwc-summary.json50
20 files changed, 2473 insertions, 2181 deletions
diff --git a/challenge-190/mohammad-anwar/java/theweeklychallenge/CapitalDetection.java b/challenge-190/mohammad-anwar/java/theweeklychallenge/CapitalDetection.java
new file mode 100644
index 0000000000..ed6af73570
--- /dev/null
+++ b/challenge-190/mohammad-anwar/java/theweeklychallenge/CapitalDetection.java
@@ -0,0 +1,63 @@
+package theweeklychallenge;
+
+/*
+
+Week 190:
+
+ https://theweeklychallenge.org/blog/perl-weekly-challenge-190
+
+Task #1: Capital Detection
+
+ You are given a string with alphabetic characters only:
+ A..Z and a..z.
+
+ Write a script to find out if the usage of Capital is appropriate
+ if it satisfies at least one of the following rules:
+
+ 1) Only first letter is capital and all others are small.
+ 2) Every letter is small.
+ 3) Every letter is capital.
+
+Compile and Run:
+
+ mohammad-anwar/java$ javac theweeklychallenge/CapitalDetection.java
+ mohammad-anwar/java$ java theweeklychallenge.CapitalDetection
+
+*/
+
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+import junit.framework.TestCase;
+import static junit.framework.Assert.*;
+
+public class CapitalDetection extends TestCase {
+
+ static Pattern rule1 = Pattern.compile("^[A-Za-z]+$");
+ static Pattern rule2 = Pattern.compile("^[A-Z][a-z]+$");
+ static Pattern rule3 = Pattern.compile("^[a-z]+$");
+ static Pattern rule4 = Pattern.compile("^[A-Z]+$");
+
+ public static void main(String[] args) {
+ junit.textui.TestRunner.run(
+ theweeklychallenge.CapitalDetection.class
+ );
+ }
+
+ public void testCapitalDetection() {
+ assertTrue(capitalDetection("Perl"));
+ assertTrue(capitalDetection("TPF"));
+ assertFalse(capitalDetection("PyThon"));
+ assertTrue(capitalDetection("raku"));
+ }
+
+ public static boolean capitalDetection(String name) {
+ if (rule1.matcher(name).find()
+ && (rule2.matcher(name).find()
+ || rule3.matcher(name).find()
+ || rule4.matcher(name).find())) {
+ return true;
+ }
+
+ return false;
+ }
+}
diff --git a/challenge-190/mohammad-anwar/perl/ch-1.pl b/challenge-190/mohammad-anwar/perl/ch-1.pl
new file mode 100644
index 0000000000..6a0b21e0df
--- /dev/null
+++ b/challenge-190/mohammad-anwar/perl/ch-1.pl
@@ -0,0 +1,41 @@
+#!/usr/bin/perl
+
+=head1
+
+Week 190:
+
+ https://theweeklychallenge.org/blog/perl-weekly-challenge-190
+
+Task #1: Capital Detection
+
+ You are given a string with alphabetic characters only:
+ A..Z and a..z.
+
+ Write a script to find out if the usage of Capital is appropriate
+ if it satisfies at least one of the following rules:
+
+ 1) Only first letter is capital and all others are small.
+ 2) Every letter is small.
+ 3) Every letter is capital.
+
+=cut
+
+use v5.36;
+use Test2::V0;
+
+ok capital_detection('Perl'), 'Example 1';
+ok capital_detection('TPF'), 'Example 2';
+ok !capital_detection('PyThon'), 'Example 3';
+ok capital_detection('raku'), 'Example 4';
+
+done_testing;
+
+#
+#
+# METHOD
+
+sub capital_detection {
+ $_ = $_[0];
+ return (/^[A-Za-z]+$/)
+ && ((/^[A-Z][a-z]+$/) || (/^[a-z]+$/) || (/^[A-Z]+$/));
+}
diff --git a/challenge-190/mohammad-anwar/python/ch-1.py b/challenge-190/mohammad-anwar/python/ch-1.py
new file mode 100644
index 0000000000..78d730abea
--- /dev/null
+++ b/challenge-190/mohammad-anwar/python/ch-1.py
@@ -0,0 +1,48 @@
+#!/usr/bin/python3
+
+'''
+
+Week 190:
+
+ https://theweeklychallenge.org/blog/perl-weekly-challenge-190
+
+Task #1: Capital Detection
+
+ You are given a string with alphabetic characters only:
+ A..Z and a..z.
+
+ Write a script to find out if the usage of Capital is appropriate
+ if it satisfies at least one of the following rules:
+
+ 1) Only first letter is capital and all others are small.
+ 2) Every letter is small.
+ 3) Every letter is capital.
+
+'''
+
+import re
+import unittest
+
+def capitalDetection(str) -> bool:
+ if bool(re.search('^[A-Za-z]+$', str)):
+ if bool(re.search('^[A-Z][a-z]+$', str)):
+ return True
+ if bool(re.search('^[a-z]+$', str)):
+ return True
+ if bool(re.search('^[A-Z]+$', str)):
+ return True
+
+ return False;
+
+#
+#
+# Unit test class
+
+class TestCapitalDetection(unittest.TestCase):
+ def test_capitalDetection(self):
+ self.assertTrue(capitalDetection('Perl'), 'Example 1')
+ self.assertTrue(capitalDetection('TPF'), 'Example 2')
+ self.assertFalse(capitalDetection('PyThon'), 'Example 3')
+ self.assertTrue(capitalDetection('raku'), 'Example 4')
+
+unittest.main()
diff --git a/challenge-190/mohammad-anwar/raku/ch-1.raku b/challenge-190/mohammad-anwar/raku/ch-1.raku
new file mode 100644
index 0000000000..9aeb62029a
--- /dev/null
+++ b/challenge-190/mohammad-anwar/raku/ch-1.raku
@@ -0,0 +1,43 @@
+#!/usr/bin/env raku
+
+=begin pod
+
+Week 190:
+
+ https://theweeklychallenge.org/blog/perl-weekly-challenge-190
+
+Task #1: Capital Detection
+
+ You are given a string with alphabetic characters only:
+ A..Z and a..z.
+
+ Write a script to find out if the usage of Capital is appropriate
+ if it satisfies at least one of the following rules:
+
+ 1) Only first letter is capital and all others are small.
+ 2) Every letter is small.
+ 3) Every letter is capital.
+
+=end pod
+
+use Test;
+
+ok capital_detection('Perl'), 'Example 1';
+ok capital_detection('TPF'), 'Example 2';
+ok !capital_detection('PyThon'), 'Example 3';
+ok capital_detection('raku'), 'Example 4';
+
+done-testing;
+
+#
+#
+# METHOD
+
+sub capital_detection(str $str) {
+ return ($str ~~ /^<[A..Za..z]>+$/)
+ && (($str ~~ /^<[A..Z]><[a..z]>+$/)
+ ||
+ ($str ~~ /^<[a..z]>+$/)
+ ||
+ ($str ~~ /^<[A..Z]>+$/));
+}
diff --git a/challenge-190/mohammad-anwar/swift/ch-1.swift b/challenge-190/mohammad-anwar/swift/ch-1.swift
new file mode 100644
index 0000000000..d5561aadb6
--- /dev/null
+++ b/challenge-190/mohammad-anwar/swift/ch-1.swift
@@ -0,0 +1,78 @@
+import Foundation
+
+/*
+
+Week 190:
+
+ https://perlweeklychallenge.org/blog/perl-weekly-challenge-190
+
+Task #1: Capital Detection
+
+ You are given a string with alphabetic characters only:
+ A..Z and a..z.
+
+ Write a script to find out if the usage of Capital is appropriate
+ if it satisfies at least one of the following rules:
+
+ 1) Only first letter is capital and all others are small.
+ 2) Every letter is small.
+ 3) Every letter is capital.
+
+ACTION:
+
+ $ swift ch-1.swift "Perl"
+ $ swift ch-1.swift "TPF"
+ $ swift ch-1.swift "PyThon"
+ $ swift ch-1.swift "raku"
+
+*/
+
+enum ParamError: Error {
+ case missingString
+}
+
+do {
+ let paramCount:Int = Int(CommandLine.argc)
+
+ if paramCount <= 1 {
+ throw ParamError.missingString
+ }
+
+ let name:String = CommandLine.arguments[1]
+
+ if (isValid("^[A-Za-z]+$", name)) {
+ if (isValid("^[A-Z][a-z]+$", name) ||
+ isValid("^[A-Z]+$", name) ||
+ isValid("^[a-z]+$", name)) {
+ print("1")
+ }
+ else {
+ print("0")
+ }
+ }
+ else {
+ print("0")
+ }
+}
+catch ParamError.missingString {
+ print("Missing string.")
+}
+catch let error {
+ print(error)
+}
+
+//
+//
+// Function
+
+func isValid(_ rule:String, _ name:String) -> Bool {
+ let regx = try! NSRegularExpression(pattern: rule)
+ let rang = NSRange(location: 0, length: name.utf16.count)
+
+ if (regx.firstMatch(in: name, options: [], range: rang) != nil) {
+ return true
+ }
+ else {
+ return false
+ }
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 79981bc2d3..7dad21b140 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,48 +1,54 @@
{
+ "legend" : {
+ "enabled" : 0
+ },
+ "chart" : {
+ "type" : "column"
+ },
"plotOptions" : {
"series" : {
- "borderWidth" : 0,
"dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- }
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
}
},
"drilldown" : {
"series" : [
{
+ "name" : "Cheok-Yin Fung",
+ "id" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Cheok-Yin Fung",
- "id" : "Cheok-Yin Fung"
+ ]
},
{
+ "id" : "E. Choroba",
"data" : [
[
"Perl",
2
]
],
- "name" : "E. Choroba",
- "id" : "E. Choroba"
+ "name" : "E. Choroba"
},
{
- "id" : "Feng Chang",
"name" : "Feng Chang",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Feng Chang"
},
{
- "id" : "Flavio Poletti",
"name" : "Flavio Poletti",
+ "id" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -59,14 +65,14 @@
]
},
{
- "name" : "Humberto Massa",
"data" : [
[
"Raku",
2
]
],
- "id" : "Humberto Massa"
+ "id" : "Humberto Massa",
+ "name" : "Humberto Massa"
},
{
"data" : [
@@ -79,17 +85,17 @@
1
]
],
- "name" : "James Smith",
- "id" : "James Smith"
+ "id" : "James Smith",
+ "name" : "James Smith"
},
{
+ "name" : "Jorg Sommrey",
"data" : [
[
"Perl",
2
]
],
- "name" : "Jorg Sommrey",
"id" : "Jorg Sommrey"
},
{
@@ -111,7 +117,6 @@
"id" : "Laurent Rosenfeld"
},
{
- "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -122,31 +127,45 @@
6
]
],
+ "id" : "Luca Ferrari",
"name" : "Luca Ferrari"
},
{
+ "name" : "Mark Anderson",
"data" : [
[
"Raku",
1
]
],
- "name" : "Mark Anderson",
"id" : "Mark Anderson"
},
{
"id" : "Marton Polgar",
- "name" : "Marton Polgar",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Marton Polgar"
+ },
+ {
+ "name" : "Mohammad S Anwar",
+ "data" : [
+ [
+ "Perl",
+ 1
+ ],
+ [
+ "Raku",
+ 1
+ ]
+ ],
+ "id" : "Mohammad S Anwar"
},
{
"id" : "Peter Campbell Smith",
- "name" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -156,9 +175,11 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Peter Campbell Smith"
},
{
+ "name" : "Robert DiCicco",
"data" : [
[
"Perl",
@@ -169,12 +190,9 @@
1
]
],
- "name" : "Robert DiCicco",
"id" : "Robert DiCicco"
},
{
- "id" : "Roger Bell_West",
- "name" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -184,20 +202,22 @@
"Raku",
2
]
- ]
+ ],
+ "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West"
},
{
+ "id" : "Tim Potapov",
"data" : [
[
"Perl",
2
]
],
- "name" : "Tim Potapov",
- "id" : "Tim Potapov"
+ "name" : "Tim Potapov"
},
{
- "id" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -208,10 +228,10 @@
1
]
],
- "name" : "Ulrich Rieke"
+ "id" : "Ulrich Rieke"
},
{
- "name" : "W. Luis Mochan",
+ "id" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -222,71 +242,48 @@
1
]
],
- "id" : "W. Luis Mochan"
+ "name" : "W. Luis Mochan"
}
]
},
- "chart" : {
- "type" : "column"
- },
- "legend" : {
- "enabled" : 0
- },
- "tooltip" : {
- "followPointer" : 1,
- "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/>"
- },
- "subtitle" : {
- "text" : "[Champions: 17] Last updated at 2022-11-11 19:08:11 GMT"
- },
- "xAxis" : {
- "type" : "category"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
"series" : [
{
"colorByPoint" : 1,
- "name" : "The Weekly Challenge - 190",
"data" : [
{
- "drilldown" : "Cheok-Yin Fung",
"name" : "Cheok-Yin Fung",
+ "drilldown" : "Cheok-Yin Fung",
"y" : 2
},
{
- "y" : 2,
"name" : "E. Choroba",
+ "y" : 2,
"drilldown" : "E. Choroba"
},
{
"drilldown" : "Feng Chang",
- "name" : "Feng Chang",
- "y" : 2
+ "y" : 2,
+ "name" : "Feng Chang"
},
{
+ "y" : 6,
"drilldown" : "Flavio Poletti",
- "name" : "Flavio Poletti",
- "y" : 6
+ "name" : "Flavio Poletti"
},
{
- "name" : "Humberto Massa",
+ "drilldown" : "Humberto Massa",
"y" : 2,
- "drilldown" : "Humberto Massa"
+ "name" : "Humberto Massa"
},
{
- "drilldown" : "James Smith",
"name" : "James Smith",
- "y" : 3
+ "y" : 3,
+ "drilldown" : "James Smith"
},
{
+ "name" : "Jorg Sommrey",
"drilldown" : "Jorg Sommrey",
- "y" : 2,
- "name" : "Jorg Sommrey"
+ "y" : 2
},
{
"name" : "Laurent Rosenfeld",
@@ -294,54 +291,76 @@
"drilldown" : "Laurent Rosenfeld"
},
{
- "name" : "Luca Ferrari",
+ "drilldown" : "Luca Ferrari",
"y" : 8,
- "drilldown" : "Luca Ferrari"
+ "name" : "Luca Ferrari"
},
{
+ "name" : "Mark Anderson",
"drilldown" : "Mark Anderson",
- "y" : 1,
- "name" : "Mark Anderson"
+ "y" : 1
},
{
+ "y" : 2,
"drilldown" : "Marton Polgar",
- "name" : "Marton Polgar",
- "y" : 2
+ "name" : "Marton Polgar"
+ },
+ {
+ "name" : "Mohammad S Anwar",
+ "y" : 2,
+ "drilldown" : "Mohammad S Anwar"
},
{
+ "name" : "Peter Campbell Smith",
"drilldown" : "Peter Campbell Smith",
- "y" : 3,
- "name" : "Peter Campbell Smith"
+ "y" : 3
},
{
- "drilldown" : "Robert DiCicco",
"y" : 2,
+ "drilldown" : "Robert DiCicco",
"name" : "Robert DiCicco"
},
{
- "drilldown" : "Roger Bell_West",
"name" : "Roger Bell_West",
+ "drilldown" : "Roger Bell_West",
"y" : 4
},
{
"y" : 2,
- "name" : "Tim Potapov",
- "drilldown" : "Tim Potapov"
+ "drilldown" : "Tim Potapov",
+ "name" : "Tim Potapov"
},
{
"y" : 3,
- "name" : "Ulrich Rieke",
- "drilldown" : "Ulrich Rieke"
+ "drilldown" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke"
},
{
"y" : 3,
- "name" : "W. Luis Mochan",
- "drilldown" : "W. Luis Mochan"
+ "drilldown" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan"
}
- ]
+ ],
+ "name" : "The Weekly Challenge - 190"
}
],
+ "subtitle" : {
+ "text" : "[Champions: 18] Last updated at 2022-11-12 10:09:31 GMT"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "tooltip" : {
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
+ "followPointer" : 1,
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
+ },
"title" : {
"text" : "The Weekly Challenge - 190"
+ },
+ "xAxis" : {
+ "type" : "category"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index ea19cd1247..5a1fcdc949 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,10 +1,49 @@
{
+ "chart" : {
+ "type" : "column"
+ },
+ "legend" : {
+ "enabled" : "false"
+ },
"title" : {
"text" : "The Weekly Challenge Contributions [2019 - 2022]"
},
+ "xAxis" : {
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
+ },
+ "type" : "category"
+ },
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : null
+ },
+ "min" : 0
+ },
+ "subtitle" : {
+ "text" : "Last updated at 2022-11-12 10:09:31 GMT"
+ },
"series" : [
{
"name" : "Contributions",
+ "dataLabels" : {
+ "align" : "right",
+ "format" : "{point.y:.0f}",
+ "enabled" : "true",
+ "rotation" : -90,
+ "y" : 10,
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ },
+ "color" : "#FFFFFF"
+ },
"data" : [
[
"Blog",
@@ -12,52 +51,13 @@
],
[
"Perl",
- 9283
+ 9284
],
[
"Raku",
- 5571
+ 5572
]
- ],
- "dataLabels" : {
- "y" : 10,
- "color" : "#FFFFFF",
- "enabled" : "true",
- "format" : "{point.y:.0f}",
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- },
- "align" : "right",
- "rotation" : -90
- }
+ ]
}
- ],
- "yAxis" : {
- "min" : 0,
- "title" : {
- "text" : null
- }
- },
- "xAxis" : {
- "labels" : {
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- }
- },
- "type" : "category"
- },
- "subtitle" : {
- "text" : "Last updated at 2022-11-11 19:08:10 GMT"
- },
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
- "legend" : {
- "enabled" : "false"
- },
- "chart" : {
- "type" : "column"
- }
+ ]
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index 9f5124841b..14678e020c 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,4 +1,984 @@
{
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2022-11-12 10:09:31 GMT"
+ },
+ "series" : [
+ {
+ "name" : "The Weekly Challenge Languages",
+ "data" : [
+ {
+ "y" : 161,
+ "drilldown" : "001",
+ "name" : "#001"
+ },
+ {
+ "drilldown" : "002",
+ "y" : 125,
+ "name" : "#002"
+ },
+ {
+ "drilldown" : "003",
+ "y" : 83,
+ "name" : "#003"
+ },
+ {
+ "name" : "#004",
+ "y" : 99,
+ "drilldown" : "004"
+ },
+ {
+ "name" : "#005",
+ "drilldown" : "005",
+ "y" : 78
+ },
+ {
+ "name" : "#006",
+ "drilldown" : "006",
+ "y" : 58
+ },
+ {
+ "name" : "#007",
+ "drilldown" : "007",
+ "y" : 65
+ },
+ {
+ "name" : "#008",
+ "y" : 78,
+ "drilldown" : "008"
+ },
+ {
+ "y" : 76,
+ "drilldown" : "009",
+ "name" : "#009"
+ },
+ {
+ "name" : "#010",
+ "drilldown" : "010",
+ "y" : 65
+ },
+ {
+ "drilldown" : "011",
+ "y" : 85,
+ "name" : "#011"
+ },
+ {
+ "name" : "#012",
+ "drilldown" : "012",
+ "y" : 89
+ },
+ {
+ "name" : "#013",
+ "drilldown" : "013",
+ "y" : 85
+ },
+ {
+ "name" : "#014",
+ "drilldown" : "014",
+ "y" : 101
+ },
+ {
+ "drilldown" : "015",
+ "y" : 99,
+ "name" : "#015"
+ },
+ {
+ "drilldown" : "016",
+ "y" : 71,
+ "name" : "#016"
+ },
+ {
+ "drilldown" : "017",
+ "y" : 84,
+ "name" : "#017"
+ },
+ {
+ "name" : "#018",
+ "drilldown" : "018",
+ "y" : 81
+ },
+ {
+ "drilldown" : "019",
+ "y" : 103,
+ "name" : "#019"
+ },
+ {
+ "name" : "#020",
+ "drilldown" : "020",
+ "y" : 101
+ },
+ {
+ "y" : 72,
+ "drilldown" : "021",
+ "name" : "#021"
+ },
+ {
+ "drilldown" : "022",
+ "y" : 68,
+ "name" : "#022"
+ },
+ {
+ "y" : 97,
+ "drilldown" : "023",
+ "name" : "#023"
+ },
+ {
+ "y" : 75,
+ "drilldown" : "024",
+ "name" : "#024"
+ },
+ {
+ "drilldown" : "025",
+ "y" : 59,
+ "name" : "#025"
+ },
+ {
+ "drilldown" : "026",
+ "y" : 74,
+ "name" : "#026"
+ },
+ {
+ "y" : 62,
+ "drilldown" : "027",
+ "name" : "#027"
+ },
+ {
+ "y" : 82,
+ "drilldown" : "028",
+ "name" : "#028"
+ },
+ {
+ "drilldown" : "029",
+ "y" : 81,
+ "name" : "#029"
+ },
+ {
+ "name" : "#030",
+ "y" : 119,
+ "drilldown" : "030"
+ },
+ {
+ "name" : "#031",
+ "y" : 91,
+ "drilldown" : "031"
+ },
+ {
+ "name" : "#032",
+ "y" : 96,
+ "drilldown" : "032"
+ },
+ {
+ "y" : 112,
+ "drilldown" : "033",
+ "name" : "#033"
+ },
+ {
+ "name" : "#034",
+ "drilldown" : "034",
+ "y" : 66
+ },
+ {
+ "drilldown" : "035",
+ "y" : 66,
+ "name" : "#035"
+ },
+ {
+ "drilldown" : "036",
+ "y" : 70,
+ "name" : "#036"
+ },
+ {
+ "y" : 69,
+ "drilldown" : "037",
+ "name" : "#037"
+ },
+ {
+