commit time zone distribution in #curl

https://github.com/curl/stats/pull/24

@bagder no +0530?

@billchenchina @bagder

They're included in +0500 for counting purposes.

From the linked pull request:

"""
if(/^Date: +([+-])(\d\d\d\d)/) {
my ($plus, $tz) = ($1, $2);
if($tz % 100) {
# move the partial hour into the full hour slot
$tz -= $tz % 100;
$tz = sprintf "%04u", $tz;
"""

@krinkle @bagder Great to know! Thanks