From dce688b2c0f8f86bd3e0e9cd131e6158b7f82669 Mon Sep 17 00:00:00 2001 From: rahildar Date: Fri, 18 Mar 2016 17:23:00 +0530 Subject: [PATCH 1/8] try --- filter2.js | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 filter2.js diff --git a/filter2.js b/filter2.js new file mode 100644 index 0000000..f8a7b58 --- /dev/null +++ b/filter2.js @@ -0,0 +1,53 @@ +var fs = require('fs'); +var _=require('highland'); + +// +// var exp=[]; +// exp.push("authorEmail"); +// exp.push("authorName"); +// exp.push("insertions"); +// exp.push("deletions"); +// console.log(exp); + + +// var jsondata; +// fs.readFile("./myApp/gitLogsMaster.json","utf8",function(error,data){ +// //console.log(data); +// var modifiedjson=data.filter(function(record) { +// return true; +// }).map(function(record) { +// var temp={}; +// for (var i = 0; i < exp.length; i++) { +// temp[exp[i]]=record[exp[i]] +// } +// return temp; +// }) +// }) +// var fs = require('fs'); +// var readableStream = fs.createReadStream('./myApp/gitLogsMaster.json'); +// var data = ''; +// var obj=[]; +// j=0; +// readableStream.setEncoding('utf8'); +// readableStream.on('data', function(chunk) { +// if(chunk !== null) +// var local=JSON.parse(chunk); +// console.log(local[0]); +// }); +// +// readableStream.on('end', function() { +// }); +var fs = require('fs'); +var readableStream = fs.createReadStream('./myApp/gitLogsMaster.json'); +var data = ''; +var chunk; +readableStream.setEncoding('utf8'); +readableStream.on('readable', function() { + while ((chunk=readableStream.read()) != null) { + _(chunk).pipe(); + } +}); + +readableStream.on('end', function() { + console.log(data) +}); From bbbb0701645c7f8b18353c422fb64d748a26129d Mon Sep 17 00:00:00 2001 From: rahildar Date: Sat, 19 Mar 2016 22:47:38 +0530 Subject: [PATCH 2/8] custom expression evaluator --- filter.js | 110 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 filter.js diff --git a/filter.js b/filter.js new file mode 100644 index 0000000..ccb07c6 --- /dev/null +++ b/filter.js @@ -0,0 +1,110 @@ +var fs = require('fs'); +var _=require('highland'); +var readableStream = fs.createReadStream('logs.json'); +readableStream.setEncoding('utf8'); +var keys=['insertions','deletions','authorName','authorEmail']; +var exp="select insertions deletions authorName authorEmail from StreamA if(insertions>max(rollingCount(1min,insertions)))" +var expkeys; +var aggregates=['average','min','max']; +var accumulators=['rollingCount','rollingTime']; +var aggregateVariables=[]; +var patterns=[]; +for (var j = 0; j < aggregates.length; j++) { + for (var i = 0; i < accumulators.length; i++) { + patterns.push('/'+aggregates[j]+'\('+accumulators[i]+'/') + } +} + + + + + + + +var conditions =exp.match(/if\(.+[><=(!=)(contains)][(avesrage)(max)(min)]\)/g) +conditions=conditions.toString().split(" "); +for (var i = 0; i < conditions.length; i++) { + for (var i = 0; i < keys.length; i++) { + if(conditions.indexOf(keys[i])>=0) + aggregateVariables.push(keys[i]); + } +} +var logicaloperators=[]; +var operators=['>','<','=','!==','contains']; +for (var i = 0; i < conditions.length; i++) { + if(conditions[i].indexOf('>')>=0){ + logicaloperators.push('>') + } + else if (conditions[i].indexOf('<')>=0) { + logicaloperators.push('<') + } + else if (conditions[i].indexOf('=')>=0) { + logicaloperators.push('=') + } + else if (conditions[i].indexOf('!=')>=0) { + logicaloperators.push('!=') + } + else if (conditions[i].indexOf('contains')>=0) { + logicaloperators.push('!=') + } +} +for (var j = 0; j < conditions.length; j++) { + var code=''; + for (var i = 0; i < logicaloperators.length; i++) { + conditions[j].split(logicaloperators[i]).each(function(singlecondition) { + for (var k = 0; k < patterns.length; k++) { + singlecondition.match(patterns[k]); + code+=k; + } + }) + } +} + + + + + + +// console.log(logicaloperators); + + + + + + + +// var through = _.pipeline( +// _.map(function (chunk) { +// var data=JSON.parse(chunk); // assuming the chunk/stream to be array of objects +// if(!keys) +// keys=Object.keys(data[0]); // All the keys of a single record +// if(!expkeys) +// { +// var temp=exp.split(" "); +// if(temp[1]=='*'); +// { +// expkeys=keys; //keys in expression +// } +// else{ +// var i=1; +// while(temp[i]!=='from') +// expkeys.push(temp[i]) +// } +// } +// } +// +// +// // if(data[0].insertions > 100) +// // { +// // data[0].highlight=true; +// // } +// // else{ +// // data[0].highlight=false; +// // } +// return JSON.stringify(data); +// }), +// _.filter(function (chunk) { +// console.log("hello"); +// }) +// ); +// _(readableStream).pipe(through).pipe(process.stdout); From 6f078e4665c67ab735c53f5848f2f87494f2c3d6 Mon Sep 17 00:00:00 2001 From: rahildar Date: Sat, 19 Mar 2016 22:58:33 +0530 Subject: [PATCH 3/8] executing expression on stream of data and modifying the stream --- filter.js | 126 ++++++++++-------------------------------------------- 1 file changed, 22 insertions(+), 104 deletions(-) diff --git a/filter.js b/filter.js index ccb07c6..5ccd97a 100644 --- a/filter.js +++ b/filter.js @@ -3,108 +3,26 @@ var _=require('highland'); var readableStream = fs.createReadStream('logs.json'); readableStream.setEncoding('utf8'); var keys=['insertions','deletions','authorName','authorEmail']; -var exp="select insertions deletions authorName authorEmail from StreamA if(insertions>max(rollingCount(1min,insertions)))" -var expkeys; -var aggregates=['average','min','max']; -var accumulators=['rollingCount','rollingTime']; -var aggregateVariables=[]; -var patterns=[]; -for (var j = 0; j < aggregates.length; j++) { - for (var i = 0; i < accumulators.length; i++) { - patterns.push('/'+aggregates[j]+'\('+accumulators[i]+'/') - } -} - - - - - - - -var conditions =exp.match(/if\(.+[><=(!=)(contains)][(avesrage)(max)(min)]\)/g) -conditions=conditions.toString().split(" "); -for (var i = 0; i < conditions.length; i++) { - for (var i = 0; i < keys.length; i++) { - if(conditions.indexOf(keys[i])>=0) - aggregateVariables.push(keys[i]); - } -} -var logicaloperators=[]; -var operators=['>','<','=','!==','contains']; -for (var i = 0; i < conditions.length; i++) { - if(conditions[i].indexOf('>')>=0){ - logicaloperators.push('>') - } - else if (conditions[i].indexOf('<')>=0) { - logicaloperators.push('<') - } - else if (conditions[i].indexOf('=')>=0) { - logicaloperators.push('=') - } - else if (conditions[i].indexOf('!=')>=0) { - logicaloperators.push('!=') - } - else if (conditions[i].indexOf('contains')>=0) { - logicaloperators.push('!=') - } -} -for (var j = 0; j < conditions.length; j++) { - var code=''; - for (var i = 0; i < logicaloperators.length; i++) { - conditions[j].split(logicaloperators[i]).each(function(singlecondition) { - for (var k = 0; k < patterns.length; k++) { - singlecondition.match(patterns[k]); - code+=k; - } +//var exp="select record.insertions deletions authorName authorEmail from StreamA if(insertions>max(rollingCount(1min,insertions)))" +var exp="select record.insertions deletions authorName authorEmail from StreamA if(insertions>deletions)" + +var condition =exp.match(/if\(.+[><=(!=)(contains)][(avesrage)(max)(min)]\)/g) +condition=condition.toString(); +condition="if((record.insertions>record.deletions) || record.type=='commit' )"; +var through = _.pipeline( + _.map(function (chunk) { + var data=JSON.parse(chunk); // assuming the chunk/stream to be array of objects + data.map(function(record) { + var bool='false'; + bool=eval(condition+"true"); + if(bool) + record.highlight=true; + }) + return JSON.stringify(data); + }), + _.filter(function (chunk) { +// console.log("index of all highlights"+); + return chunk }) - } -} - - - - - - -// console.log(logicaloperators); - - - - - - - -// var through = _.pipeline( -// _.map(function (chunk) { -// var data=JSON.parse(chunk); // assuming the chunk/stream to be array of objects -// if(!keys) -// keys=Object.keys(data[0]); // All the keys of a single record -// if(!expkeys) -// { -// var temp=exp.split(" "); -// if(temp[1]=='*'); -// { -// expkeys=keys; //keys in expression -// } -// else{ -// var i=1; -// while(temp[i]!=='from') -// expkeys.push(temp[i]) -// } -// } -// } -// -// -// // if(data[0].insertions > 100) -// // { -// // data[0].highlight=true; -// // } -// // else{ -// // data[0].highlight=false; -// // } -// return JSON.stringify(data); -// }), -// _.filter(function (chunk) { -// console.log("hello"); -// }) -// ); -// _(readableStream).pipe(through).pipe(process.stdout); + ); +_(readableStream).pipe(through).pipe(process.stdout); From 3c30f38515a38635958b25457787f6862a1160ce Mon Sep 17 00:00:00 2001 From: rahildar Date: Tue, 22 Mar 2016 00:38:39 +0530 Subject: [PATCH 4/8] modified code for including multiple calls for rolling-count and rolling-time within an expression --- filter.js | 115 +++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 92 insertions(+), 23 deletions(-) diff --git a/filter.js b/filter.js index 5ccd97a..ab2f4e2 100644 --- a/filter.js +++ b/filter.js @@ -1,28 +1,97 @@ var fs = require('fs'); var _=require('highland'); +var rollingCount=require('./rollingCount'); var readableStream = fs.createReadStream('logs.json'); readableStream.setEncoding('utf8'); -var keys=['insertions','deletions','authorName','authorEmail']; -//var exp="select record.insertions deletions authorName authorEmail from StreamA if(insertions>max(rollingCount(1min,insertions)))" -var exp="select record.insertions deletions authorName authorEmail from StreamA if(insertions>deletions)" - -var condition =exp.match(/if\(.+[><=(!=)(contains)][(avesrage)(max)(min)]\)/g) +var keys; +var exp="select record.insertions record.deletions record.authorName record.authorEmail from StreamA if(rollingCount(22).avg(record.insertions)> rollingCount(11).max(record.insertions))" +//var exp="select record.insertions deletions authorName authorEmail from StreamA if(insertions>deletions)" +var RT=[];//function constructors generated from expression for rollingTime +var RC=[];//function constructors generated from expression for rollingCounts +var condition =exp.match(/if\(.+[><=(!=)(contains)]\)/g) condition=condition.toString(); -condition="if((record.insertions>record.deletions) || record.type=='commit' )"; -var through = _.pipeline( - _.map(function (chunk) { - var data=JSON.parse(chunk); // assuming the chunk/stream to be array of objects - data.map(function(record) { - var bool='false'; - bool=eval(condition+"true"); - if(bool) - record.highlight=true; - }) - return JSON.stringify(data); - }), - _.filter(function (chunk) { -// console.log("index of all highlights"+); - return chunk - }) - ); -_(readableStream).pipe(through).pipe(process.stdout); +var rollingCountemp=condition.match(/rollingCount\D\d+\D/g); +if (rollingCountemp) { +var rollingCountVars=[]; +for (var i = 0; i < rollingCountemp.length; i++) { + rollingCountVars.push(rollingCountemp[i].match(/\d+/g)) +} +for (var i = 0; i < rollingCountemp.length; i++) { + RC.push(new rollingCount(parseInt(rollingCountVars[i]))); +} +for (var i = 0; i < 2; i++) { + condition=condition.replace(rollingCountemp[i],'RC['+i+']') +} + +}//if ends RollingCount +var rollingTimetemp=condition.match(/rollingTime\D\d+\D/g); +if(rollingTimetemp){ +var rollingTimeVars=[]; +// for (var i = 0; i < rollingTimetemp.length; i++) { +// rollingTimeVars.push(rollingTimetemp[i].match(/\d+/g)) +// } +// for (var i = 0; i < rollingTimetemp.length; i++) { +// RT.push(new rollingTime(parseInt(rollingTimeVars[i]))); +// } + +for (var i = 0; i < 2; i++) { + condition=condition.replace(rollingTimetemp[i],'RT['+i+']') +} +}//if ends rollingTimetemp + + + + + +// //condition="if(record.insertions>disp())"; +// var through = _.pipeline( +// _.map(function (chunk) { +// var data=JSON.parse(chunk); // assuming the chunk/stream to be array of objects +// if(!keys) +// keys=Object.keys(data[0]) +// if(!expkeys) +// { +// var temp=exp.split(" "); +// if(temp[1]=='*'); +// { +// expkeys=keys; //keys in expression +// } +// else{ +// var i=1; +// while(temp[i]!=='from') +// expkeys.push(temp[i].substr(7)) +// } +// } +// data.map(function(record) { +// var bool='false'; +// bool=eval(condition+"true"); +// if(bool) +// record.highlight=true; +// }) +// return JSON.stringify(data); +// }), +// _.filter(function (chunk) { +// return chunk +// }) +// ); +// _(readableStream).pipe(through).pipe(process.stdout); +/************************************rollingCount***********************************************/ +function rollingCount(value,n,aggregate) { + + + + +} + + + + + + + + + + + + +/*********************************rollingTime***************************************************/ From 70c01216b45d6139a7f481fb8830781804dfe124 Mon Sep 17 00:00:00 2001 From: neel0711 Date: Tue, 22 Mar 2016 11:18:18 +0530 Subject: [PATCH 5/8] added count accumulator code --- fun.js | 121 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ trial.js | 36 +++++++++++++++++ 2 files changed, 157 insertions(+) create mode 100644 fun.js create mode 100644 trial.js diff --git a/fun.js b/fun.js new file mode 100644 index 0000000..cf33f87 --- /dev/null +++ b/fun.js @@ -0,0 +1,121 @@ + + +module.exports=function myfunction(n) +{ + + var arr1= new Array(); + var count=0; + this.sum= function(value) + { + var length; + length=arr1.length; + if(count=n) + { + var k=count%n; + arr1[k]=value; + var sum=0; + for(var h=0;h=n) + { + var k=count%n; + arr1[k]=value; + var min=99999999999; + for(var h=0;harr1[h]) + { + min=arr1[h]; + } + + } + count++; + return min; + } + + } + + this.max= function(value) + { + var length; + length=arr1.length; + if(count=n) + { + var k=count%n; + arr1[k]=value; + var max=-99999999999; + for(var h=0;h=n) + { + var k=count%n; + arr1[k]=value; + var sum=0; + for(var h=0;h Date: Tue, 22 Mar 2016 13:55:24 +0530 Subject: [PATCH 6/8] changes in fun.js and trial.js for standard deviation --- fun.js | 41 +++++++++++++++++++++++++++++++++++++++++ trial.js | 8 ++++---- 2 files changed, 45 insertions(+), 4 deletions(-) diff --git a/fun.js b/fun.js index cf33f87..8b94adc 100644 --- a/fun.js +++ b/fun.js @@ -116,6 +116,47 @@ module.exports=function myfunction(n) } } + + + this.standardDeviation= function(value) + { + var length; + length=arr1.length; + if(count=n) + { + var k=count%n; + arr1[k]=value; + var sum=0; + for(var h=0;h Date: Thu, 31 Mar 2016 12:00:13 +0530 Subject: [PATCH 7/8] Master Branch Migration Commit --- baskar/LogAggregator-4 | 1 + check.js | 67 + check.txt | 0 demo.js | 7 + dest/routes/dimensions.js | 56 + dest/routes/index.js | 8 + dest/routes/logdata.js | 58 + dest/routes/measures.js | 50 + example.js | 70 + filter.js | 124 +- filterduplicate.js | 85 + gitLogsMaster.json | 114565 +++++++++++++++++++++++++++++++++++ gruntfile.js | 18 + output | 0 package.json | 7 +- query-executor/index.js | 93 + rollingCount.js | 165 + rollingCountExample.js | 12 + rollingTime.js | 184 + rollingTimeExample.js | 19 + samplequery.js | 38 + start.js | 38 + test/queryParser.spec.js | 68 + trial.js | 17 +- tryquery.js | 65 + 25 files changed, 115728 insertions(+), 87 deletions(-) create mode 160000 baskar/LogAggregator-4 create mode 100644 check.js create mode 100644 check.txt create mode 100644 demo.js create mode 100644 dest/routes/dimensions.js create mode 100644 dest/routes/index.js create mode 100644 dest/routes/logdata.js create mode 100644 dest/routes/measures.js create mode 100644 example.js create mode 100644 filterduplicate.js create mode 100644 gitLogsMaster.json create mode 100644 gruntfile.js create mode 100644 output create mode 100644 query-executor/index.js create mode 100644 rollingCount.js create mode 100644 rollingCountExample.js create mode 100644 rollingTime.js create mode 100644 rollingTimeExample.js create mode 100644 samplequery.js create mode 100644 start.js create mode 100644 test/queryParser.spec.js create mode 100644 tryquery.js diff --git a/baskar/LogAggregator-4 b/baskar/LogAggregator-4 new file mode 160000 index 0000000..afa321b --- /dev/null +++ b/baskar/LogAggregator-4 @@ -0,0 +1 @@ +Subproject commit afa321b8c1cd9a10a8fb8413fc85f74a53ed72ca diff --git a/check.js b/check.js new file mode 100644 index 0000000..9482a1d --- /dev/null +++ b/check.js @@ -0,0 +1,67 @@ +var sift = require('sift'); +var _=require('highland') + +// eval= { +// val1: '140', +// val2: <%= val1%> +// } + +// console.log(eval.val2); +// // i=eval.val2; +// var fs = require('fs'); +// var output=fs.createWriteStream('output') +// var calls=0; +// var num=_(['1','2','3','4','5','6']).map(function(x) { +// ++calls; +// return x+1; +// }); +// var nums=num.batch(2); +// nums.pipe(output) +// var output=_(['some','texe']).intersperse('n'); +// // _(output).pipe(process.stdout); + +// var output=_(['somme','texmme']).splitBy('mm'); +// _(output).pipe(process.stdout); +// var output=_(['foo', 'bar']).invoke('toUpperCase', []) +// _(output).pipe(process.stdout); +// var output=_(['foo', 'bar']).map(toUpperCase); +// _(output).pipe(process.stdout) + +// var output=_([1]).reduce1(function(a,b) { +// return a+b; +// }); +// _(output).each(function(x) { +// console.log(x); +// }); +var ar=[] + +for (var i = 1; i <= 100; i++) { + ar.push(i); + +} + +var output=_(ar).batch(10).reduce1(function (a,b) { + // console.log(x); + a=parseInt(a); + b=parseInt(b) + return a+b; +}); + +_(output).each(function(x) { + console.log(x); +}) +// console.log(calls); +// var sift = require('sift'); +// +// +// eval= { +// val1: 5, +// val2: 5 +// } +// +// var sifter = sift({$where: function() { +// return this.val1 >= this.val2; +// }}); +// +// eval.highlight=sifter(eval) +// console.log(eval); diff --git a/check.txt b/check.txt new file mode 100644 index 0000000..e69de29 diff --git a/demo.js b/demo.js new file mode 100644 index 0000000..bdc1999 --- /dev/null +++ b/demo.js @@ -0,0 +1,7 @@ +var _ = require('highland'); +var sift = require('sift'); + + +var sifter=sift({index:{$gt:'0'}}); + +console.log(sifter({index:'-9'})); diff --git a/dest/routes/dimensions.js b/dest/routes/dimensions.js new file mode 100644 index 0000000..6f9e651 --- /dev/null +++ b/dest/routes/dimensions.js @@ -0,0 +1,56 @@ +var express = require('express'); +var dimensionRouter = express.Router(); +var mongoose = require('mongoose'); +var Namespace = require('../model/db').namespaceModel; + +/* GET Dimensions */ +dimensionRouter.get('/', function(req, res) { + if(req.session.oid!==null){ + Namespace.findNamespace(req.session.oid, function(err, namespace) { + if (namespace != null) { + res.send(namespace.dimensions); + } + }); +} +}); + +/* POST Dimension */ + +dimensionRouter.post('/addDimension', function(req, res) { + if (req.session.oid !== null) { + Namespace.findNamespace(req.session.oid, function(err, namespace) { + if (namespace != null) { + namespace.dimensions.push({ + displayName: req.body.displayname, + fieldName: req.body.fieldname + }); + + namespace.save(function(err, namespace) { + console.log('namespace saved:', namespace); + }); + } + }); +} + res.redirect('/'); +}); + +/*delete*/ +dimensionRouter.post('/:id', function(req, res) { + console.log("deleted value is", req.params.id); + // Namespace.findNamespace('test_namespace', function(err, namespace) { + // if (namespace != null) { + // var length = namespace.dimensions.length; + // for(var i =0 ;i<=(!=)(contains)]\)/g) +var condition =exp.match(/if\(.+\)/g) condition=condition.toString(); -var rollingCountemp=condition.match(/rollingCount\D\d+\D/g); -if (rollingCountemp) { + + +var rollingCountemp=condition.match(/rollingCount\D\d+\D/g);//checks and replaces rollingCount with instantiated function objects +if (rollingCountemp) { // like RC[0] for first rollingCount and so on.. var rollingCountVars=[]; for (var i = 0; i < rollingCountemp.length; i++) { rollingCountVars.push(rollingCountemp[i].match(/\d+/g)) -} -for (var i = 0; i < rollingCountemp.length; i++) { RC.push(new rollingCount(parseInt(rollingCountVars[i]))); -} -for (var i = 0; i < 2; i++) { + console.log('RC['+i+']'+'initialized with count'+(parseInt(rollingCountVars[i]))); condition=condition.replace(rollingCountemp[i],'RC['+i+']') } - }//if ends RollingCount -var rollingTimetemp=condition.match(/rollingTime\D\d+\D/g); -if(rollingTimetemp){ +var rollingTimetemp=condition.match(/rollingTime\D\d+\D/g);//checks and replaces rollingTime with instantiated function objects +if(rollingTimetemp){ // like RT[0] for first rollingTime and so on.. var rollingTimeVars=[]; -// for (var i = 0; i < rollingTimetemp.length; i++) { -// rollingTimeVars.push(rollingTimetemp[i].match(/\d+/g)) -// } -// for (var i = 0; i < rollingTimetemp.length; i++) { -// RT.push(new rollingTime(parseInt(rollingTimeVars[i]))); -// } - -for (var i = 0; i < 2; i++) { +for (var i = 0; i < rollingTimetemp.length; i++) { + rollingTimeVars.push(rollingTimetemp[i].match(/\d+/g)) + RT.push(new rollingTime(parseInt(rollingTimeVars[i]))); condition=condition.replace(rollingTimetemp[i],'RT['+i+']') } }//if ends rollingTimetemp - - - - -// //condition="if(record.insertions>disp())"; -// var through = _.pipeline( -// _.map(function (chunk) { -// var data=JSON.parse(chunk); // assuming the chunk/stream to be array of objects -// if(!keys) -// keys=Object.keys(data[0]) -// if(!expkeys) -// { -// var temp=exp.split(" "); -// if(temp[1]=='*'); -// { -// expkeys=keys; //keys in expression -// } -// else{ -// var i=1; -// while(temp[i]!=='from') -// expkeys.push(temp[i].substr(7)) -// } -// } -// data.map(function(record) { -// var bool='false'; -// bool=eval(condition+"true"); -// if(bool) -// record.highlight=true; -// }) -// return JSON.stringify(data); -// }), -// _.filter(function (chunk) { -// return chunk -// }) -// ); -// _(readableStream).pipe(through).pipe(process.stdout); -/************************************rollingCount***********************************************/ -function rollingCount(value,n,aggregate) { - - - - -} - - - - - - - - - - - - -/*********************************rollingTime***************************************************/ +var through = _.pipeline( + _.map(function (chunk) { + var data=JSON.parse(chunk); // assuming the chunk/stream to be array of objects + if(!keys) + keys=Object.keys(data[0]); + if(!expkeys){ + var temp=exp.split(" "); + if(temp[1]=='*') + expkeys=keys; //keys in expression + else{ + var i=1; + var tempkeys=new Array(); + while(temp[i]!=='from'){ + tempkeys.push(temp[i].substr(7)); + i++; + } + expkeys=tempkeys; + } + } + data.map(function(record) { + var bool=false; + bool=eval(condition+"{true}"); + + if(bool){ + record.highlight="true"; + // console.log("*****insertions******** "+record.insertions); + } + }) + return JSON.stringify(data); + }), + _.filter(function (chunk) { + return chunk; + }) + ); +_(readableStream).pipe(through).pipe(process.stdout); diff --git a/filterduplicate.js b/filterduplicate.js new file mode 100644 index 0000000..969bddd --- /dev/null +++ b/filterduplicate.js @@ -0,0 +1,85 @@ +var fs = require('fs'); +var _=require('highland'); +var rollingCount=require('./rollingCount'); +var readableStream = fs.createReadStream('logs.json'); +var writable=fs.createWriteStream('output.json') +readableStream.setEncoding('utf8'); +var keys; +var expkeys; +var exp="select record.insertions record.deletions record.authorName record.authorEmail from StreamA if(record.insertions> rollingCount(10).average(record.insertions))" +//var exp="select record.insertions deletions authorName authorEmail from StreamA if(insertions>deletions)" +// var exp="select record.insertions record.deletions record.authorName record.authorEmail from StreamA if(record.insertions> 10)" +var RT=[];//function constructors generated from expression for rollingTime +var RC=[];//function constructors generated from expression for rollingCounts +var condition =exp.match(/if\(.+\)/g) +condition=condition.toString(); + + +var rollingCountemp=condition.match(/rollingCount\D\d+\D/g);//checks and replaces rollingCount with instantiated function objects +if (rollingCountemp) { // like RC[0] for first rollingCount and so on.. +var rollingCountVars=[]; +for (var i = 0; i < rollingCountemp.length; i++) { + rollingCountVars.push(rollingCountemp[i].match(/\d+/g)) + RC.push(new rollingCount(parseInt(rollingCountVars[i]))); + console.log('RC['+i+']'+'initialized with count '+(parseInt(rollingCountVars[i]))); + condition=condition.replace(rollingCountemp[i],'RC['+i+']') +} +}//if ends RollingCount +var rollingTimetemp=condition.match(/rollingTime\D\d+[msh]\D/g);//checks and replaces rollingTime with instantiated function objects +if(rollingTimetemp){ // like RT[0] for first rollingTime and so on.. +var rollingTimeVars=[]; +for (var i = 0; i < rollingTimetemp.length; i++) { + rollingTimeVars.push(rollingTimetemp[i].match(/\d+[msh]/g).toString()); + RT.push(new rollingTime(parseInt(rollingTimeVars[i]))); + console.log('RT['+i+']'+'initialized with Time '+ rollingTimeVars[i]); + condition=condition.replace(rollingTimetemp[i],'RT['+i+']') +} +console.log(rollingTimeVars); +}//if ends rollingTimetemp + +var through = _.pipeline( + _.map(function (chunk) { + var data=JSON.parse(chunk); // assuming the chunk/stream to be array of objects + if(!keys) + keys=Object.keys(data[0]); + if(!expkeys){ + var temp=exp.split(" "); + if(temp[1]=='*') + expkeys=keys; //keys in expression + else{ + var i=1; + var tempkeys=new Array(); + while(temp[i]!=='from'){ + tempkeys.push(temp[i].substr(7)); + i++; + } + expkeys=tempkeys; + } + } + data.map(function(record) { + var bool=false; + bool=eval(condition+"{true}"); + if(bool){ + console.log("*****insertions******** "+record.insertions); + record.highlight="true"; + } + }) + return JSON.stringify(data); + }), + _.filter(function (chunk) { + chunk=JSON.parse(chunk); + // var data=chunk.map(function(record) { + // if (record.highlight) { + // var obj=new Object(); + // for (var i = 0; i < expkeys.length; i++) { + // obj[expkeys[i]]=record[expkeys[i]]; + // } + // obj.highlight="true"; + // return obj; + // } + // }) + // console.log(data); + return JSON.stringify(chunk); + }) + ); +_(readableStream).pipe(through).pipe(writable); diff --git a/gitLogsMaster.json b/gitLogsMaster.json new file mode 100644 index 0000000..e2812bc --- /dev/null +++ b/gitLogsMaster.json @@ -0,0 +1,114565 @@ + [ + { + "authorName": "Brian White ", + "authorEmail": "mscdex@gmail.com", + "date": "2016-01-06T04:46:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-12-27T04:54:01.000Z", + "fileChanged": "1", + "insertions": "838", + "deletions": "399", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2016-01-05T09:11:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2016-01-05T09:07:09.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-23T19:32:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-27T06:08:08.000Z", + "fileChanged": "24", + "insertions": "24", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Dave ", + "authorEmail": "dave@jut.io", + "date": "2016-01-05T00:15:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Richard Sun ", + "authorEmail": "rsun@media.ucla.edu", + "date": "2016-01-05T11:12:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-12-12T01:43:04.000Z", + "fileChanged": "2", + "insertions": "113", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2016-01-02T01:37:10.000Z", + "fileChanged": "38", + "insertions": "14", + "deletions": "76", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2016-01-01T21:26:23.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "José F. Romaniello ", + "authorEmail": "jfromaniello@gmail.com", + "date": "2015-12-31T14:51:46.000Z", + "fileChanged": "2", + "insertions": "65", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2016-01-03T05:39:55.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2016-01-04T02:53:27.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2016-01-03T16:26:31.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-12-27T06:25:13.000Z", + "fileChanged": "1", + "insertions": "196", + "deletions": "129", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-12-28T19:42:05.000Z", + "fileChanged": "1", + "insertions": "364", + "deletions": "336", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2016-01-03T04:05:40.000Z", + "fileChanged": "3", + "insertions": "24", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Martin Bark ", + "authorEmail": "martin@barkynet.com", + "date": "2015-12-14T21:36:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Anna Henningsen ", + "authorEmail": "sqrt@entless.org", + "date": "2015-12-20T11:30:04.000Z", + "fileChanged": "3", + "insertions": "80", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "jona ", + "authorEmail": "jona@jona.io", + "date": "2015-12-19T20:38:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-31T04:13:15.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-30T22:02:28.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-30T21:39:47.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-30T02:56:29.000Z", + "fileChanged": "29", + "insertions": "5", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-31T16:21:50.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-12-31T06:32:42.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-29T05:28:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-12-30T16:01:06.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-30T07:09:25.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Sobol ", + "authorEmail": "contact@ryansobol.com", + "date": "2015-12-28T21:06:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Ripkens ", + "authorEmail": "bripkens.dev@gmail.com", + "date": "2015-12-28T23:10:21.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nik Nyby ", + "authorEmail": "nnyby@columbia.edu", + "date": "2015-12-22T20:17:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2015-11-22T09:08:45.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "iamchenxin ", + "authorEmail": "iamchenxin@gmail.com", + "date": "2015-12-28T13:19:59.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Devin Nakamura ", + "authorEmail": "devinn@ca.ibm.com", + "date": "2015-12-18T15:50:11.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-27T06:45:46.000Z", + "fileChanged": "42", + "insertions": "12", + "deletions": "60", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-12-27T05:19:35.000Z", + "fileChanged": "1", + "insertions": "31", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Damian Schenkelman ", + "authorEmail": "damian.schenkelman@gmail.com", + "date": "2015-12-23T23:52:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-12-29T18:04:13.000Z", + "fileChanged": "1", + "insertions": "263", + "deletions": "89", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-12-27T07:19:45.000Z", + "fileChanged": "1", + "insertions": "156", + "deletions": "131", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-12-26T17:13:23.000Z", + "fileChanged": "1", + "insertions": "117", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-12-21T21:48:43.000Z", + "fileChanged": "1", + "insertions": "565", + "deletions": "410", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-12-28T23:41:34.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-12-30T06:24:25.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-12-30T01:11:17.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-10-12T04:11:57.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-27T02:39:16.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-26T23:04:56.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-27T02:29:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Matt Loring ", + "authorEmail": "mattloring@google.com", + "date": "2015-12-09T19:37:51.000Z", + "fileChanged": "4", + "insertions": "25", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-26T21:48:54.000Z", + "fileChanged": "7", + "insertions": "3", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-26T05:52:52.000Z", + "fileChanged": "12", + "insertions": "5", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-12-28T21:58:24.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-12-28T06:11:51.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-12-27T21:42:51.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-26T06:00:10.000Z", + "fileChanged": "11", + "insertions": "3", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-26T04:31:50.000Z", + "fileChanged": "21", + "insertions": "3", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-25T23:32:13.000Z", + "fileChanged": "29", + "insertions": "9", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-12-20T17:02:08.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-12-20T03:08:13.000Z", + "fileChanged": "1", + "insertions": "254", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-25T17:21:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-24T21:00:29.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-24T00:02:12.000Z", + "fileChanged": "313", + "insertions": "317", + "deletions": "317", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-23T21:09:34.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-23T19:34:07.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-23T09:33:56.000Z", + "fileChanged": "18", + "insertions": "2", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-23T09:15:44.000Z", + "fileChanged": "3", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-23T08:58:14.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-11-21T18:29:59.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-21T21:52:39.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-12-24T02:34:59.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Max Barinov ", + "authorEmail": "me@maxbarinov.com", + "date": "2015-12-21T13:00:16.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Adri Van Houdt ", + "authorEmail": "adri.van.houdt@gmail.com", + "date": "2015-12-16T22:21:35.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2015-12-17T09:44:34.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2015-12-18T02:09:15.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-12-20T16:57:03.000Z", + "fileChanged": "1", + "insertions": "644", + "deletions": "354", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-12-17T00:47:37.000Z", + "fileChanged": "1", + "insertions": "232", + "deletions": "86", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-12-20T12:21:35.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-12-17T21:21:24.000Z", + "fileChanged": "1", + "insertions": "176", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-12-22T17:43:44.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-12-22T18:22:52.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Mudit Ameta ", + "authorEmail": "zeusdeux@gmail.com", + "date": "2015-12-01T20:49:01.000Z", + "fileChanged": "3", + "insertions": "31", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-12-21T20:27:19.000Z", + "fileChanged": "3", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Dave ", + "authorEmail": "dave@jut.io", + "date": "2015-12-06T12:55:02.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Claudio Rodriguez ", + "authorEmail": "cjrodr@yahoo.com", + "date": "2015-12-17T13:05:45.000Z", + "fileChanged": "5", + "insertions": "135", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-11-18T12:59:43.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-07-09T19:12:38.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-07-04T02:31:02.000Z", + "fileChanged": "1", + "insertions": "50", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-18T02:25:09.000Z", + "fileChanged": "1", + "insertions": "39", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-12-15T08:55:35.000Z", + "fileChanged": "7", + "insertions": "94", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-12-18T06:35:23.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-12-05T21:53:30.000Z", + "fileChanged": "4", + "insertions": "156", + "deletions": "55", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-11-11T19:28:41.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-11-11T07:15:15.000Z", + "fileChanged": "3", + "insertions": "46", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-11-11T00:04:56.000Z", + "fileChanged": "2", + "insertions": "66", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-11-10T23:36:50.000Z", + "fileChanged": "3", + "insertions": "72", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-11-10T10:04:26.000Z", + "fileChanged": "2", + "insertions": "72", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-11-10T09:58:51.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-12-17T22:23:46.000Z", + "fileChanged": "5", + "insertions": "82", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-12-14T21:12:43.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-12-17T06:16:46.000Z", + "fileChanged": "2", + "insertions": "68", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-12-17T11:13:11.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bo Borgerson ", + "authorEmail": "gigabo@gmail.com", + "date": "2015-12-17T02:31:38.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-12-14T23:20:25.000Z", + "fileChanged": "30", + "insertions": "613", + "deletions": "614", + "type": "Commit" + }, + { + "authorName": "chrisjohn404 ", + "authorEmail": "chris.s.johnson4@gmail.com", + "date": "2015-12-17T08:11:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nicholas Young ", + "authorEmail": "nicholas@nicholaswyoung.com", + "date": "2015-12-17T15:38:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Minwoo Jung ", + "authorEmail": "jmwsoft@gmail.com", + "date": "2015-08-21T21:30:08.000Z", + "fileChanged": "6", + "insertions": "35", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Xotic750 ", + "authorEmail": "xotic750@gmail", + "date": "2015-12-17T00:15:40.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-12-16T17:50:18.000Z", + "fileChanged": "1", + "insertions": "77", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2015-12-15T03:12:21.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-12-16T14:20:46.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Jan Schär ", + "authorEmail": "jscissr@gmail.com", + "date": "2015-11-25T20:56:11.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "ronkorving ", + "authorEmail": "ron@ronkorving.nl", + "date": "2015-09-22T03:36:03.000Z", + "fileChanged": "1", + "insertions": "39", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-12-15T22:38:00.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-12-15T22:37:16.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "ronkorving ", + "authorEmail": "rkorving@wizcorp.jp", + "date": "2015-12-16T02:09:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-12-15T11:57:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-12-15T11:49:03.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-12-15T00:33:47.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-12-08T01:46:33.000Z", + "fileChanged": "2", + "insertions": "85", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Nelson Pecora ", + "authorEmail": "nelson@yoshokatana.com", + "date": "2015-09-08T20:25:57.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bryan English ", + "authorEmail": "bryan@bryanenglish.com", + "date": "2015-12-04T06:58:18.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Lenny Markus ", + "authorEmail": "lmarkus@paypal.com", + "date": "2015-12-14T18:25:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Hideki Yamamura ", + "authorEmail": "hideki.yamamura@gmail.com", + "date": "2015-12-13T04:25:44.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-11-04T11:56:17.000Z", + "fileChanged": "1", + "insertions": "276", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-12-11T19:57:45.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-10-27T16:54:42.000Z", + "fileChanged": "3", + "insertions": "97", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2015-12-13T11:07:04.000Z", + "fileChanged": "73", + "insertions": "1449", + "deletions": "345", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-12-14T05:58:37.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2015-12-13T15:37:27.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Martin von Gagern ", + "authorEmail": "Martin.vGagern@gmx.net", + "date": "2015-12-14T09:50:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-12-11T22:45:53.000Z", + "fileChanged": "2", + "insertions": "274", + "deletions": "274", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-12-10T20:03:59.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Arthur Gautier ", + "authorEmail": "superbaloo+registrations.github@superbaloo.net", + "date": "2015-12-08T16:55:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-12-12T01:11:17.000Z", + "fileChanged": "2", + "insertions": "64", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-10T04:19:30.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-12-11T20:47:39.000Z", + "fileChanged": "3", + "insertions": "43", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-11-03T01:56:24.000Z", + "fileChanged": "9", + "insertions": "808", + "deletions": "126", + "type": "Commit" + }, + { + "authorName": "janriemer ", + "authorEmail": "janriemer@users.noreply.github.com", + "date": "2015-12-10T09:12:15.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Tom Gallacher ", + "authorEmail": "tomgallacher23@gmail.com", + "date": "2015-12-11T13:45:12.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Prince J Wesley ", + "authorEmail": "princejohnwesley@gmail.com", + "date": "2015-12-06T09:16:52.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alexander Martin ", + "authorEmail": "alex@suitupalex.com", + "date": "2015-10-28T16:33:57.000Z", + "fileChanged": "3", + "insertions": "274", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-11-26T21:34:11.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Jörg Krause ", + "authorEmail": "joerg.krause@embedded.rocks", + "date": "2015-12-08T20:53:06.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-12-08T13:57:22.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-12-08T12:36:38.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-08T03:31:38.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-08T03:21:24.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-08T03:03:21.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-08T02:50:25.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-12-09T20:55:29.000Z", + "fileChanged": "3", + "insertions": "38", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Calvin Metcalf ", + "authorEmail": "cmetcalf@appgeo.com", + "date": "2015-12-09T21:55:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Matteo Collina ", + "authorEmail": "hello@matteocollina.com", + "date": "2015-12-09T21:54:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2015-12-09T21:54:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-12-09T19:20:32.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-12-08T22:46:07.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-06T01:29:28.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Roman Klauke ", + "authorEmail": "romaaan.git@gmail.com", + "date": "2015-12-07T19:20:50.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-12-02T02:37:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-12-02T04:54:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-12-08T00:21:40.000Z", + "fileChanged": "1", + "insertions": "129", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "wurde ", + "authorEmail": "andy.bettisworth@accreu.com", + "date": "2015-12-07T05:29:24.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-12-01T11:25:14.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-12-01T11:31:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-10-16T11:32:06.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-12-08T03:15:43.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Matt Loring ", + "authorEmail": "mattloring@google.com", + "date": "2015-11-25T14:08:58.000Z", + "fileChanged": "13", + "insertions": "180", + "deletions": "199", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-12-07T23:53:48.000Z", + "fileChanged": "1", + "insertions": "75", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Matt Loring ", + "authorEmail": "mattloring@google.com", + "date": "2015-12-07T23:52:53.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-12-06T02:28:15.000Z", + "fileChanged": "4", + "insertions": "24", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Michael Ruddy ", + "authorEmail": "mruddybtc@gmail.com", + "date": "2015-11-19T19:00:00.000Z", + "fileChanged": "4", + "insertions": "197", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Rafał Pocztarski ", + "authorEmail": "r.pocztarski@gmail.com", + "date": "2015-12-02T17:13:27.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Super Zheng ", + "authorEmail": "superzheng@tencent.com", + "date": "2015-12-04T08:14:24.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-11-21T21:29:37.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-12-05T21:03:30.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-05T06:40:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "yorkie ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2015-11-25T04:40:42.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "fansworld-claudio ", + "authorEmail": "cr@fansworld.tv", + "date": "2015-12-02T17:58:50.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-11-21T14:33:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bryce Baril ", + "authorEmail": "bryce@ravenwall.com", + "date": "2015-12-04T18:08:51.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-12-04T21:56:11.000Z", + "fileChanged": "3", + "insertions": "35", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-12-02T01:34:45.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-12-04T23:31:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Gireesh Punathil ", + "authorEmail": "gpunathi@in.ibm.com", + "date": "2015-11-23T09:28:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-11-24T03:07:29.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-12-04T11:41:51.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-12-04T11:41:10.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-12-04T11:40:17.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-12-04T11:39:33.000Z", + "fileChanged": "1", + "insertions": "52", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-12-04T11:38:20.000Z", + "fileChanged": "1", + "insertions": "74", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "yorkie ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2015-12-03T22:07:01.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "evan.lucas ", + "authorEmail": "evan.lucas@help.com", + "date": "2015-11-12T14:47:38.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-11-11T19:32:06.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-10-05T20:13:18.000Z", + "fileChanged": "5", + "insertions": "79", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-10-15T22:16:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-12-01T05:22:40.000Z", + "fileChanged": "1000", + "insertions": "68914", + "deletions": "51657", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-28T03:40:56.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-11-18T17:08:24.000Z", + "fileChanged": "2", + "insertions": "106", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-11-13T20:23:33.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-10-29T18:17:37.000Z", + "fileChanged": "2", + "insertions": "60", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-12-02T16:49:35.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "64", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-12-03T23:37:38.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-12-04T01:07:30.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Minwoo Jung ", + "authorEmail": "jmwsoft@gmail.com", + "date": "2015-12-03T23:49:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rebecca Turner ", + "authorEmail": "rebecca@npmjs.com", + "date": "2015-12-03T23:48:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Kat Marchán ", + "authorEmail": "kzm@sykosomatic.org", + "date": "2015-12-03T23:45:39.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-11-19T16:42:59.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "jpersson ", + "authorEmail": "jonathan.persson@creuna.se", + "date": "2015-12-02T16:17:19.000Z", + "fileChanged": "8", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "jpersson ", + "authorEmail": "jonathan.persson@creuna.se", + "date": "2015-11-27T23:30:32.000Z", + "fileChanged": "27", + "insertions": "712", + "deletions": "625", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-12-01T21:13:40.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Scott Buchanan ", + "authorEmail": "sbuchanan@ebay.com", + "date": "2015-12-03T19:11:22.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Minwoo Jung ", + "authorEmail": "jmwsoft@gmail.com", + "date": "2015-11-17T08:59:30.000Z", + "fileChanged": "6", + "insertions": "27", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-12-03T15:41:27.000Z", + "fileChanged": "357", + "insertions": "2887", + "deletions": "4847", + "type": "Commit" + }, + { + "authorName": "Stefan Budeanu ", + "authorEmail": "stefan@budeanu.com", + "date": "2015-11-25T00:17:49.000Z", + "fileChanged": "4", + "insertions": "17", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Michael Cornacchia ", + "authorEmail": "cornacch@ca.ibm.com", + "date": "2015-11-06T17:51:48.000Z", + "fileChanged": "9", + "insertions": "140", + "deletions": "58", + "type": "Commit" + }, + { + "authorName": "Myles Borins ", + "authorEmail": "mborins@us.ibm.com", + "date": "2015-12-02T18:47:45.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-03-20T02:04:07.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-12-01T04:56:35.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-12-01T16:27:39.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Andrei Sedoi ", + "authorEmail": "bsnote@gmail.com", + "date": "2015-11-26T15:55:05.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Jan Krems ", + "authorEmail": "jan.krems@groupon.com", + "date": "2015-11-30T18:40:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-12-01T14:11:18.000Z", + "fileChanged": "3", + "insertions": "87", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Zirak ", + "authorEmail": "zirakertan@gmail.com", + "date": "2015-11-15T14:46:17.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-11-24T20:39:24.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Peter A. Bigot ", + "authorEmail": "pab@pabigot.com", + "date": "2015-11-23T22:12:46.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bryan English ", + "authorEmail": "bryan@bryanenglish.com", + "date": "2015-11-19T01:42:05.000Z", + "fileChanged": "1", + "insertions": "43", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Luigi Pinca ", + "authorEmail": "luigipinca@gmail.com", + "date": "2015-12-01T08:10:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Dave ", + "authorEmail": "dave@jut.io", + "date": "2015-11-30T10:41:51.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-26T03:41:09.000Z", + "fileChanged": "1", + "insertions": "150", + "deletions": "151", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-10-15T19:55:42.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "yorkie ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2015-11-04T08:17:21.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-11-25T21:37:43.000Z", + "fileChanged": "4", + "insertions": "32", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-11-25T21:27:29.000Z", + "fileChanged": "6", + "insertions": "44", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "jpersson ", + "authorEmail": "jonathan.persson@creuna.se", + "date": "2015-11-29T17:51:24.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-11-24T23:36:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Woltman ", + "authorEmail": "nwoltman@outlook.com", + "date": "2015-08-17T03:26:46.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-25T06:12:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-11-25T21:38:01.000Z", + "fileChanged": "11", + "insertions": "40", + "deletions": "114", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-11-23T21:13:40.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-11-21T00:19:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-25T04:59:49.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-11-25T00:55:51.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-11-25T00:52:35.000Z", + "fileChanged": "2", + "insertions": "46", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-24T16:31:11.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-25T17:47:41.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Gallacher ", + "authorEmail": "tomgallacher23@gmail.com", + "date": "2015-11-24T21:48:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Chunyang Dai ", + "authorEmail": "chunyang.dai@intel.com", + "date": "2015-10-21T16:24:12.000Z", + "fileChanged": "4", + "insertions": "37", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Matt Loring ", + "authorEmail": "mattloring@google.com", + "date": "2015-09-22T18:53:56.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-11-20T10:52:17.000Z", + "fileChanged": "17", + "insertions": "61", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-24T00:01:35.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Jan Schär ", + "authorEmail": "jscissr@gmail.com", + "date": "2015-11-20T21:16:55.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-11-23T19:58:18.000Z", + "fileChanged": "3", + "insertions": "54", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-23T03:29:14.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bryan English ", + "authorEmail": "bryan@bryanenglish.com", + "date": "2015-11-24T02:27:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-21T20:37:49.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-24T06:32:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bryon Leung ", + "authorEmail": "teslaslegacy@gmail.com", + "date": "2015-10-07T17:47:57.000Z", + "fileChanged": "4", + "insertions": "34", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-20T18:15:31.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-22T04:10:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Lewis Cowper ", + "authorEmail": "lewis.cowper@googlemail.com", + "date": "2015-11-23T09:06:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Gallacher ", + "authorEmail": "tomgallacher23@gmail.com", + "date": "2015-10-09T12:58:44.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Carl Lei ", + "authorEmail": "xecycle@gmail.com", + "date": "2015-11-03T01:53:59.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Carl Lei ", + "authorEmail": "xecycle@gmail.com", + "date": "2015-11-03T01:52:46.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Carl Lei ", + "authorEmail": "xecycle@gmail.com", + "date": "2015-11-03T11:21:31.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-11-22T01:21:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-11-21T11:45:23.000Z", + "fileChanged": "1", + "insertions": "136", + "deletions": "231", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-11-21T11:43:57.000Z", + "fileChanged": "1", + "insertions": "947", + "deletions": "2186", + "type": "Commit" + }, + { + "authorName": "yorkie ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2015-11-19T14:24:19.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Jan Schär ", + "authorEmail": "jscissr@gmail.com", + "date": "2015-11-20T19:23:25.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-09-14T22:26:59.000Z", + "fileChanged": "7", + "insertions": "78", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Alexander Gromnitsky ", + "authorEmail": "alexander.gromnitsky@gmail.com", + "date": "2015-11-20T19:28:11.000Z", + "fileChanged": "4", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Matt Loring ", + "authorEmail": "mattloring@google.com", + "date": "2015-11-11T02:25:01.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Martin Forsberg ", + "authorEmail": "git@martinforsberg.se", + "date": "2015-11-20T17:36:59.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bryan English ", + "authorEmail": "bryan@bryanenglish.com", + "date": "2015-11-20T00:28:45.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Stefan Budeanu ", + "authorEmail": "stefan@budeanu.com", + "date": "2015-11-09T05:00:56.000Z", + "fileChanged": "7", + "insertions": "116", + "deletions": "88", + "type": "Commit" + }, + { + "authorName": "Michael Cornacchia ", + "authorEmail": "cornacch@ca.ibm.com", + "date": "2015-10-27T16:55:09.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Minwoo Jung ", + "authorEmail": "jmwsoft@gmail.com", + "date": "2015-11-17T08:59:30.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-11-16T19:09:26.000Z", + "fileChanged": "3", + "insertions": "410", + "deletions": "391", + "type": "Commit" + }, + { + "authorName": "Stefan Budeanu ", + "authorEmail": "stefan@budeanu.com", + "date": "2015-11-10T19:56:52.000Z", + "fileChanged": "9", + "insertions": "89", + "deletions": "66", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-11-19T17:05:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-11-19T17:16:29.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Wyatt Preul ", + "authorEmail": "wpreul@gmail.com", + "date": "2015-08-24T21:53:46.000Z", + "fileChanged": "5", + "insertions": "1", + "deletions": "130", + "type": "Commit" + }, + { + "authorName": "Wyatt Preul ", + "authorEmail": "wpreul@gmail.com", + "date": "2015-08-24T21:25:51.000Z", + "fileChanged": "2", + "deletions": "14", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Wyatt Preul ", + "authorEmail": "wpreul@gmail.com", + "date": "2015-08-24T21:44:42.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Stefan Budeanu ", + "authorEmail": "stefan@budeanu.com", + "date": "2015-11-18T16:40:32.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-17T05:42:47.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "yorkie ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2015-11-16T18:54:04.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-11-18T14:07:15.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "fansworld-claudio ", + "authorEmail": "cr@fansworld.tv", + "date": "2015-11-16T13:59:39.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-11-17T21:52:11.000Z", + "fileChanged": "1", + "insertions": "163", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2015-04-21T16:34:52.000Z", + "fileChanged": "3", + "insertions": "35", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-10-22T04:47:36.000Z", + "fileChanged": "1", + "insertions": "40", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-10-22T04:09:33.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-11-17T00:50:14.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-16T17:11:50.000Z", + "fileChanged": "1", + "insertions": "83", + "deletions": "83", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-17T05:17:16.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "P.S.V.R ", + "authorEmail": "pmq2001@gmail.com", + "date": "2015-11-16T02:59:07.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Stefan Budeanu ", + "authorEmail": "stefan@budeanu.com", + "date": "2015-11-09T23:19:11.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Stefan Budeanu ", + "authorEmail": "stefan@budeanu.com", + "date": "2015-11-09T23:19:11.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-15T04:43:27.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-11-14T23:53:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Böhm ", + "authorEmail": "me@feedic.com", + "date": "2015-08-13T18:21:30.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bryan English ", + "authorEmail": "bryan@bryanenglish.com", + "date": "2015-11-14T03:21:49.000Z", + "fileChanged": "28", + "insertions": "372", + "deletions": "311", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-15T22:41:19.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Markus Tzoe ", + "authorEmail": "chou.marcus@gmail.com", + "date": "2015-09-30T18:27:17.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Minwoo Jung ", + "authorEmail": "jmwsoft@gmail.com", + "date": "2015-11-15T04:56:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Michael Cornacchia ", + "authorEmail": "cornacch@ca.ibm.com", + "date": "2015-10-30T16:08:49.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2015-11-13T02:10:26.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Stefan Budeanu ", + "authorEmail": "stefan@budeanu.com", + "date": "2015-11-10T21:33:25.000Z", + "fileChanged": "7", + "insertions": "131", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Myles Borins ", + "authorEmail": "mborins@us.ibm.com", + "date": "2015-11-11T22:49:35.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Craig Cavalier ", + "authorEmail": "craigcav@gmail.com", + "date": "2015-10-26T21:40:56.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Myles Borins ", + "authorEmail": "mborins@us.ibm.com", + "date": "2015-10-26T21:39:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Stefan Budeanu ", + "authorEmail": "stefan@budeanu.com", + "date": "2015-11-12T22:28:04.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Stefan Budeanu ", + "authorEmail": "stefan@budeanu.com", + "date": "2015-11-13T01:49:21.000Z", + "fileChanged": "5", + "insertions": "67", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Stefan Budeanu ", + "authorEmail": "stefan@budeanu.com", + "date": "2015-11-10T16:50:32.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "evan.lucas ", + "authorEmail": "evan.lucas@help.com", + "date": "2015-11-12T14:47:38.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-11-12T12:28:15.000Z", + "fileChanged": "2", + "insertions": "121", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Imran Iqbal ", + "authorEmail": "imrani@ca.ibm.com", + "date": "2015-11-04T22:08:07.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-13T13:34:57.000Z", + "fileChanged": "2", + "insertions": "99", + "deletions": "99", + "type": "Commit" + }, + { + "authorName": "Jesse McCarthy ", + "authorEmail": "git_commits@jessemccarthy.net", + "date": "2015-11-10T20:27:48.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Gallacher ", + "authorEmail": "tomgallacher23@gmail.com", + "date": "2015-10-30T10:59:21.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Roman Klauke ", + "authorEmail": "romaaan.git@gmail.com", + "date": "2015-11-05T19:08:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Manuel B ", + "authorEmail": "baslr@users.noreply.github.com", + "date": "2015-10-28T00:39:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-13T15:01:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bryan English ", + "authorEmail": "bryan@bryanenglish.com", + "date": "2015-11-13T07:21:22.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Stefan Budeanu ", + "authorEmail": "stefan@budeanu.com", + "date": "2015-11-10T21:56:18.000Z", + "fileChanged": "15", + "insertions": "139", + "deletions": "147", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-11-12T17:43:48.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-10-26T16:06:28.000Z", + "fileChanged": "4", + "insertions": "56", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Vladimir Varankin ", + "authorEmail": "nek.narqo+git@gmail.com", + "date": "2015-10-28T12:56:34.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-02T23:39:21.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Devin Nakamura ", + "authorEmail": "devinn@ca.ibm.com", + "date": "2015-09-14T18:29:49.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Bryan English ", + "authorEmail": "bryan@bryanenglish.com", + "date": "2015-11-11T06:33:28.000Z", + "fileChanged": "1", + "insertions": "55", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-11-12T19:30:20.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-05T20:04:26.000Z", + "fileChanged": "1", + "insertions": "551", + "deletions": "564", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-05T19:54:10.000Z", + "fileChanged": "1", + "insertions": "551", + "deletions": "559", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-05T19:15:39.000Z", + "fileChanged": "1", + "insertions": "379", + "deletions": "334", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-05T16:00:46.000Z", + "fileChanged": "1", + "insertions": "451", + "deletions": "477", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-05T15:40:47.000Z", + "fileChanged": "1", + "insertions": "158", + "deletions": "153", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-05T15:28:34.000Z", + "fileChanged": "1", + "insertions": "149", + "deletions": "153", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T22:59:28.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T22:56:03.000Z", + "fileChanged": "1", + "insertions": "692", + "deletions": "702", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T17:50:07.000Z", + "fileChanged": "1", + "insertions": "236", + "deletions": "242", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T17:43:06.000Z", + "fileChanged": "1", + "insertions": "105", + "deletions": "106", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T17:38:09.000Z", + "fileChanged": "1", + "insertions": "93", + "deletions": "94", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T17:36:11.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T17:35:20.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T17:33:35.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T17:31:41.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T17:30:11.000Z", + "fileChanged": "1", + "insertions": "143", + "deletions": "153", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T17:26:30.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T17:25:20.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T17:23:52.000Z", + "fileChanged": "1", + "insertions": "155", + "deletions": "155", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T17:19:49.000Z", + "fileChanged": "1", + "insertions": "57", + "deletions": "57", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T17:12:06.000Z", + "fileChanged": "1", + "insertions": "96", + "deletions": "97", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T17:07:07.000Z", + "fileChanged": "1", + "insertions": "498", + "deletions": "502", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T16:45:27.000Z", + "fileChanged": "1", + "insertions": "89", + "deletions": "91", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T16:37:27.000Z", + "fileChanged": "1", + "insertions": "216", + "deletions": "216", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T16:30:26.000Z", + "fileChanged": "1", + "insertions": "149", + "deletions": "152", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T16:23:03.000Z", + "fileChanged": "1", + "insertions": "418", + "deletions": "428", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T15:52:13.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T15:51:43.000Z", + "fileChanged": "1", + "insertions": "61", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T15:51:00.000Z", + "fileChanged": "1", + "insertions": "375", + "deletions": "373", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T15:50:18.000Z", + "fileChanged": "1", + "insertions": "299", + "deletions": "299", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T15:49:28.000Z", + "fileChanged": "1", + "insertions": "366", + "deletions": "337", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-11-04T15:48:45.000Z", + "fileChanged": "1", + "insertions": "54", + "deletions": "54", + "type": "Commit" + }, + { + "authorName": "Stefan Budeanu ", + "authorEmail": "stefan@budeanu.com", + "date": "2015-11-09T00:18:55.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ashley Williams ", + "authorEmail": "ashley666ashley@gmail.com", + "date": "2015-11-11T15:33:43.000Z", + "fileChanged": "3", + "insertions": "45", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-11-12T12:29:27.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Stefan Budeanu ", + "authorEmail": "stefan@budeanu.com", + "date": "2015-11-06T19:50:57.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-11-11T19:32:06.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-10-20T10:24:53.000Z", + "fileChanged": "1", + "insertions": "48", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-11-05T00:59:59.000Z", + "fileChanged": "1", + "insertions": "68", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Zheng Chaoping ", + "authorEmail": "zbinlin@gmail.com", + "date": "2015-11-10T16:57:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-11-09T20:08:50.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-11-09T21:38:13.000Z", + "fileChanged": "3", + "insertions": "1", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-11-06T20:12:49.000Z", + "fileChanged": "5", + "insertions": "91", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-08T17:53:50.000Z", + "fileChanged": "2", + "insertions": "38", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-08T17:51:29.000Z", + "fileChanged": "5", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-06T22:15:18.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tyler Henkel ", + "authorEmail": "tylerhenkel@hotmail.com", + "date": "2015-11-10T19:33:36.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Roman Klauke ", + "authorEmail": "romaaan.git@gmail.com", + "date": "2015-11-09T22:52:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Junliang Yan ", + "authorEmail": "jyan@ca.ibm.com", + "date": "2015-11-06T18:46:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-08-28T14:38:39.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-10-29T19:22:12.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Hugues Malphettes ", + "authorEmail": "hmalphettes@gmail.com", + "date": "2015-11-10T01:50:31.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-11-09T23:10:49.000Z", + "fileChanged": "27", + "insertions": "63", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "Myles Borins ", + "authorEmail": "mborins@us.ibm.com", + "date": "2015-11-09T22:43:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2015-11-09T22:49:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Hemanth.HM ", + "authorEmail": "hemanth.hm@gmail.com", + "date": "2015-11-07T08:18:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-11-08T11:01:51.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "micnic ", + "authorEmail": "micnic90@gmail.com", + "date": "2015-10-14T21:10:25.000Z", + "fileChanged": "25", + "insertions": "110", + "deletions": "106", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-10-26T12:30:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-10-20T18:20:10.000Z", + "fileChanged": "6", + "insertions": "25", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-10-19T23:14:05.000Z", + "fileChanged": "4", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-10-20T18:18:15.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-11-03T18:06:50.000Z", + "fileChanged": "4", + "insertions": "96", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Rebecca Turner ", + "authorEmail": "me@re-becca.org", + "date": "2015-11-03T01:16:25.000Z", + "fileChanged": "149", + "insertions": "770", + "deletions": "173", + "type": "Commit" + }, + { + "authorName": "qinjia ", + "authorEmail": "qinjia@outlook.com", + "date": "2015-11-06T09:32:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Alejandro Oviedo ", + "authorEmail": "alejandro.oviedo.g@gmail.com", + "date": "2015-11-06T14:00:16.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-07-27T07:10:57.000Z", + "fileChanged": "1", + "insertions": "36", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ömer Fadıl Usta ", + "authorEmail": "omerusta@gmail.com", + "date": "2015-10-28T12:49:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Andres Suarez ", + "authorEmail": "zertosh@gmail.com", + "date": "2015-10-29T00:12:35.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-11-05T17:16:18.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "fansworld-claudio ", + "authorEmail": "cr@fansworld.tv", + "date": "2015-10-13T19:15:06.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "fansworld-claudio ", + "authorEmail": "cr@fansworld.tv", + "date": "2015-09-10T12:31:27.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ashok Suthar ", + "authorEmail": "coderatlabs@gmail.com", + "date": "2015-11-05T14:33:18.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-10-03T22:15:08.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2015-11-02T23:21:24.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-11-03T20:33:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Imran Iqbal ", + "authorEmail": "imrani@ca.ibm.com", + "date": "2015-11-03T16:10:16.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "David Woods ", + "authorEmail": "david@birnamdesigns.com", + "date": "2015-10-26T17:51:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-10-28T18:01:02.000Z", + "fileChanged": "7", + "insertions": "309", + "deletions": "49", + "type": "Commit" + }, + { + "authorName": "Sam P Gallagher-Bishop ", + "authorEmail": "SPGB@users.noreply.github.com", + "date": "2015-11-03T20:11:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-10-29T15:58:41.000Z", + "fileChanged": "1", + "insertions": "94", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-11-02T15:43:02.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-11-02T12:14:14.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-11-02T12:06:26.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-31T20:31:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Guilherme Souza ", + "authorEmail": "sitegui@sitegui.com.br", + "date": "2015-10-25T01:56:49.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-11-01T01:53:21.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rebecca Turner ", + "authorEmail": "me@re-becca.org", + "date": "2015-10-29T23:50:12.000Z", + "fileChanged": "2249", + "insertions": "106214", + "deletions": "132946", + "type": "Commit" + }, + { + "authorName": "Rebecca Turner ", + "authorEmail": "me@re-becca.org", + "date": "2015-10-29T23:51:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rebecca Turner ", + "authorEmail": "me@re-becca.org", + "date": "2015-10-29T23:40:20.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-11-02T00:34:19.000Z", + "fileChanged": "4", + "insertions": "60", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jason Gerfen ", + "authorEmail": "jason.gerfen@gmail.com", + "date": "2015-10-31T15:24:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Emily Aviva Kapor-Mater ", + "authorEmail": "emily@emilyaviva.com", + "date": "2015-10-29T21:52:36.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-02-10T00:27:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Imran Iqbal ", + "authorEmail": "imrani@ca.ibm.com", + "date": "2015-10-19T19:57:06.000Z", + "fileChanged": "13", + "insertions": "103", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-25T18:48:41.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "phijohns ", + "authorEmail": "phillip.johnsen@finn.no", + "date": "2015-10-28T19:59:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-10-21T03:18:30.000Z", + "fileChanged": "1", + "insertions": "162", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-10-29T16:22:00.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-10-29T12:39:56.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-10-29T12:33:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-10-28T22:06:40.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Myles Borins ", + "authorEmail": "mborins@us.ibm.com", + "date": "2015-10-20T20:29:18.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-25T18:48:41.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Junliang Yan ", + "authorEmail": "jyan@ca.ibm.com", + "date": "2015-10-28T19:57:13.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Junliang Yan ", + "authorEmail": "jyan@ca.ibm.com", + "date": "2015-10-26T12:39:13.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-27T16:40:41.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Myles Borins ", + "authorEmail": "mborins@us.ibm.com", + "date": "2015-10-19T20:26:30.000Z", + "fileChanged": "1", + "insertions": "39", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-10-26T00:19:58.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Stefan Budeanu ", + "authorEmail": "stefan@budeanu.com", + "date": "2015-10-28T02:52:15.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-09-30T02:33:43.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-10-24T07:46:08.000Z", + "fileChanged": "2", + "insertions": "122", + "deletions": "78", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-10-27T16:54:42.000Z", + "fileChanged": "3", + "insertions": "93", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-10-08T17:41:29.000Z", + "fileChanged": "10", + "insertions": "21", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-10-08T17:40:10.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-24T18:51:10.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "ronkorving ", + "authorEmail": "rkorving@wizcorp.jp", + "date": "2015-09-18T08:36:57.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-10-26T13:11:03.000Z", + "fileChanged": "2", + "insertions": "60", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-10-20T19:39:49.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-09-20T07:37:03.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-10-23T18:34:11.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-10-22T03:42:27.000Z", + "fileChanged": "1", + "insertions": "214", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-10-26T15:10:24.000Z", + "fileChanged": "3", + "insertions": "32", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-04-23T06:25:15.000Z", + "fileChanged": "11", + "insertions": "771", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-10-24T08:42:29.000Z", + "fileChanged": "2", + "insertions": "46", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-10-23T21:54:04.000Z", + "fileChanged": "2", + "insertions": "74", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Junliang Yan ", + "authorEmail": "jyan@ca.ibm.com", + "date": "2015-10-23T16:48:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Myles Borins ", + "authorEmail": "mborins@us.ibm.com", + "date": "2015-10-20T18:40:54.000Z", + "fileChanged": "37", + "insertions": "81", + "deletions": "77", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-10-22T11:58:26.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-10-23T17:10:49.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-10-21T23:30:19.000Z", + "fileChanged": "3", + "insertions": "109", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michael Dawson ", + "authorEmail": "michael_dawson@ca.ibm.com", + "date": "2015-10-22T20:15:33.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Michael Dawson ", + "authorEmail": "michael_dawson@ca.ibm.com", + "date": "2015-09-29T14:22:00.000Z", + "fileChanged": "4", + "insertions": "107", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-10-22T08:36:00.000Z", + "fileChanged": "8", + "insertions": "99", + "deletions": "73", + "type": "Commit" + }, + { + "authorName": "Rebecca Turner ", + "authorEmail": "me@re-becca.org", + "date": "2015-10-23T00:19:31.000Z", + "fileChanged": "10", + "insertions": "1142", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Martii ", + "authorEmail": "thalamew@q.com", + "date": "2015-10-08T03:14:16.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Michael Dawson ", + "authorEmail": "michael_dawson@ca.ibm.com", + "date": "2015-10-21T20:40:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rebecca Turner ", + "authorEmail": "me@re-becca.org", + "date": "2015-10-10T06:13:57.000Z", + "fileChanged": "2618", + "insertions": "139062", + "deletions": "137445", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-10-22T17:28:20.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rebecca Turner ", + "authorEmail": "me@re-becca.org", + "date": "2015-10-10T00:33:59.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-10-07T06:05:53.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rebecca Turner ", + "authorEmail": "me@re-becca.org", + "date": "2015-10-10T00:34:20.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-10-14T20:58:52.000Z", + "fileChanged": "4", + "insertions": "57", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-14T04:39:16.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-10-21T02:43:47.000Z", + "fileChanged": "1", + "insertions": "121", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michael Dawson ", + "authorEmail": "michael_dawson@ca.ibm.com", + "date": "2015-10-20T22:35:34.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Imran Iqbal ", + "authorEmail": "imrani@ca.ibm.com", + "date": "2015-10-20T20:58:16.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Kyle Smith ", + "authorEmail": "kyle.r.smiff@gmail.com", + "date": "2015-10-07T23:03:21.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Domenic Denicola ", + "authorEmail": "d@domenic.me", + "date": "2015-02-26T23:17:15.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Michael Dawson ", + "authorEmail": "michael_dawson@ca.ibm.com", + "date": "2015-10-20T15:39:29.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-10-16T12:10:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-10-07T11:18:56.000Z", + "fileChanged": "1", + "insertions": "161", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-18T21:42:44.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ido Ben-Yair ", + "authorEmail": "idoby@wix.com", + "date": "2015-10-07T15:59:15.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Glen Keane ", + "authorEmail": "glenkeane.94@gmail.com", + "date": "2015-10-15T20:37:17.000Z", + "fileChanged": "1", + "insertions": "31", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Yuval Brik ", + "authorEmail": "yuval@brik.org.il", + "date": "2015-08-29T21:27:14.000Z", + "fileChanged": "3", + "insertions": "65", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-10-14T11:51:47.000Z", + "fileChanged": "1", + "insertions": "102", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-18T01:52:15.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "fansworld-claudio ", + "authorEmail": "cr@fansworld.tv", + "date": "2015-10-19T19:10:18.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Junliang Yan ", + "authorEmail": "jyan@ca.ibm.ca", + "date": "2015-10-19T19:30:11.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-10-16T19:34:15.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-10-19T20:06:51.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-17T04:07:21.000Z", + "fileChanged": "2", + "insertions": "55", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "P.S.V.R ", + "authorEmail": "pmq2001@gmail.com", + "date": "2015-10-15T08:38:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-10-19T15:57:55.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Yuval Brik ", + "authorEmail": "yuval@brik.org.il", + "date": "2015-08-28T14:14:27.000Z", + "fileChanged": "3", + "insertions": "102", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Wyatt Preul ", + "authorEmail": "wpreul@gmail.com", + "date": "2015-08-24T21:40:38.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-12T20:58:00.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "calebboyd ", + "authorEmail": "caleb.boyd@gmail.com", + "date": "2015-10-19T17:38:55.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-10-07T06:01:28.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-10-07T06:00:31.000Z", + "fileChanged": "1", + "insertions": "68", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Коренберг Марк ", + "authorEmail": "mark@ideco.ru", + "date": "2015-05-05T07:41:16.000Z", + "fileChanged": "4", + "insertions": "34", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Johannes Wüller ", + "authorEmail": "johanneswueller@gmail.com", + "date": "2015-10-03T00:06:42.000Z", + "fileChanged": "7", + "insertions": "230", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-12T16:50:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-10-08T19:19:34.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-10-07T18:01:36.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-10-07T17:58:39.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Jonas Dohse ", + "authorEmail": "jonas@dohse.ch", + "date": "2015-10-14T01:38:45.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-10-16T10:24:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-15T04:22:55.000Z", + "fileChanged": "13", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-05-22T09:23:57.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-05-22T09:21:54.000Z", + "fileChanged": "3", + "insertions": "104", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-05-22T09:20:26.000Z", + "fileChanged": "5", + "insertions": "166", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-10-14T19:45:12.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Phillip Johnsen ", + "authorEmail": "johphi@gmail.com", + "date": "2015-10-14T09:17:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Calvin Metcalf ", + "authorEmail": "cmetcalf@appgeo.com", + "date": "2015-10-09T18:50:11.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-10-12T23:16:21.000Z", + "fileChanged": "6", + "insertions": "289", + "deletions": "103", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-09-16T17:57:30.000Z", + "fileChanged": "7", + "insertions": "109", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-09-08T00:40:43.000Z", + "fileChanged": "3", + "insertions": "57", + "deletions": "96", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-09-25T17:58:49.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-09-04T09:44:17.000Z", + "fileChanged": "4", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-09-25T19:36:48.000Z", + "fileChanged": "1", + "insertions": "101", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-09-25T19:22:32.000Z", + "fileChanged": "9", + "insertions": "155", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-10-06T06:42:38.000Z", + "fileChanged": "1114", + "insertions": "127167", + "deletions": "113376", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-10-05T14:40:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2015-10-07T23:12:12.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Myles Borins ", + "authorEmail": "mborins@us.ibm.com", + "date": "2015-10-13T04:26:50.000Z", + "fileChanged": "4", + "insertions": "16", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-10-13T06:16:39.000Z", + "fileChanged": "5", + "insertions": "120", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-10-14T00:07:35.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Fábio Santos ", + "authorEmail": "fabiosantosart@gmail.com", + "date": "2015-10-07T22:27:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy Gu ", + "authorEmail": "timothygu99@gmail.com", + "date": "2015-10-13T23:20:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-13T03:48:41.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-10-13T21:18:15.000Z", + "fileChanged": "1", + "insertions": "45", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-10-13T04:21:54.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-10-13T06:55:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Liang-Chi Hsieh ", + "authorEmail": "viirya@appier.com", + "date": "2015-09-09T16:41:15.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-12T05:14:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-10-12T20:08:13.000Z", + "fileChanged": "3", + "insertions": "26", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-12T03:53:31.000Z", + "fileChanged": "6", + "insertions": "127", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2015-10-12T23:03:59.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-10-08T05:15:51.000Z", + "fileChanged": "1", + "insertions": "85", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-09-21T23:22:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-10-09T22:51:42.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-09T22:26:55.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-10-11T18:06:17.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "David Boivin ", + "authorEmail": "dave.a.boivin@gmail.com", + "date": "2015-09-10T15:14:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "reggi ", + "authorEmail": "thomas@reggi.com", + "date": "2015-10-09T13:15:38.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Roman Klauke ", + "authorEmail": "romankl@users.noreply.github.com", + "date": "2015-10-11T12:53:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-08T20:56:34.000Z", + "fileChanged": "5", + "insertions": "119", + "deletions": "69", + "type": "Commit" + }, + { + "authorName": "Balázs Galambosi ", + "authorEmail": "galambalazs@yahoo.co.uk", + "date": "2015-10-10T18:23:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-10-09T16:09:52.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Kat Marchán ", + "authorEmail": "kzm@sykosomatic.org", + "date": "2015-10-09T18:36:19.000Z", + "fileChanged": "486", + "insertions": "9346", + "deletions": "3164", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-08T03:26:27.000Z", + "fileChanged": "2", + "insertions": "109", + "deletions": "106", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-10-09T20:18:54.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jason Karns ", + "authorEmail": "jason.karns@gmail.com", + "date": "2015-05-08T18:41:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dave Hodder ", + "authorEmail": "dmh@dmh.org.uk", + "date": "2015-10-08T20:17:23.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Alejandro Oviedo ", + "authorEmail": "alejandro.oviedo.g@gmail.com", + "date": "2015-10-05T18:58:41.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Alejandro Oviedo ", + "authorEmail": "alejandro.oviedo.g@gmail.com", + "date": "2015-10-06T13:21:22.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-08T03:53:38.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-07T04:12:45.000Z", + "fileChanged": "12", + "insertions": "19", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-26T21:27:36.000Z", + "fileChanged": "5", + "insertions": "72", + "deletions": "60", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2015-10-07T22:40:26.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Junliang Yan ", + "authorEmail": "jyan@ca.ibm.com", + "date": "2015-10-06T18:21:13.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-10-08T16:57:12.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-10-08T10:25:03.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-09-24T08:53:42.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Junliang Yan ", + "authorEmail": "jyan@ca.ibm.ca", + "date": "2015-10-06T23:45:54.000Z", + "fileChanged": "5", + "insertions": "10", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-10-06T06:09:06.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Doug Shamoo ", + "authorEmail": "doug.shamoo@gmail.com", + "date": "2015-10-07T05:47:49.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-09-03T08:10:30.000Z", + "fileChanged": "8", + "insertions": "4935", + "deletions": "60", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-10-02T00:57:36.000Z", + "fileChanged": "8", + "insertions": "131", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-10-06T18:50:45.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2015-09-18T09:28:19.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-26T22:00:51.000Z", + "fileChanged": "19", + "insertions": "2", + "deletions": "135", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-10-07T13:31:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-09-02T08:13:01.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-10-06T12:18:34.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-07T03:54:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Martial ", + "authorEmail": "martial.jefferson@gmail.com", + "date": "2015-10-05T21:31:53.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2015-10-06T20:24:51.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Machen ", + "authorEmail": "mail@rodmachen.com", + "date": "2015-10-06T22:27:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-10-04T04:01:06.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-10-06T03:26:13.000Z", + "fileChanged": "4", + "insertions": "54", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-02T04:38:16.000Z", + "fileChanged": "6", + "insertions": "110", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-02T04:37:12.000Z", + "fileChanged": "10", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-05T21:59:36.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-09-27T18:55:47.000Z", + "fileChanged": "2", + "insertions": "60", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-09-27T18:54:57.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-09-26T21:26:52.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-09-26T22:18:08.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-10-06T01:44:09.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-10-06T20:17:40.000Z", + "fileChanged": "21", + "deletions": "4154", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2015-09-25T18:33:25.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2015-10-06T18:18:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-09-22T14:54:57.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-09-22T16:31:01.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-10-01T05:18:36.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-09-16T23:13:39.000Z", + "fileChanged": "2", + "deletions": "14", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-09-29T19:30:22.000Z", + "fileChanged": "4", + "insertions": "89", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-10-05T21:29:27.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeremy Whitlock ", + "authorEmail": "jwhitlock@apache.org", + "date": "2015-10-05T20:08:53.000Z", + "fileChanged": "8", + "insertions": "363", + "deletions": "78", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-10-05T20:13:18.000Z", + "fileChanged": "5", + "insertions": "79", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Justin Chase ", + "authorEmail": "justin@evolvelabs.com", + "date": "2015-09-19T22:03:32.000Z", + "fileChanged": "4", + "insertions": "53", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-10-05T17:30:30.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-30T08:42:34.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-10-03T20:15:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-10-03T19:27:19.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-09-26T03:36:06.000Z", + "fileChanged": "3", + "insertions": "39", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-10-03T11:44:58.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-10-03T06:21:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dave Eddy ", + "authorEmail": "dave@daveeddy.com", + "date": "2015-08-17T21:33:13.000Z", + "fileChanged": "11", + "insertions": "136", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-26T23:29:41.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "charlierudolph ", + "authorEmail": "charles.rudolph@originate.com", + "date": "2015-09-30T05:03:27.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-27T22:31:36.000Z", + "fileChanged": "48", + "insertions": "48", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-10-01T21:28:49.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-10-01T19:15:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-09-30T21:55:06.000Z", + "fileChanged": "6", + "insertions": "43", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-09-29T21:20:41.000Z", + "fileChanged": "5", + "insertions": "106", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Oguz Bastemur ", + "authorEmail": "obastemur@gmail.com", + "date": "2015-09-30T05:02:12.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2015-09-22T20:00:38.000Z", + "fileChanged": "15", + "insertions": "209", + "deletions": "291", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-09-23T12:33:09.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Minwoo Jung ", + "authorEmail": "jmwsoft@gmail.com", + "date": "2015-09-27T08:20:27.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-09-29T15:51:07.000Z", + "fileChanged": "8", + "insertions": "87", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-09-30T00:13:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-09-30T00:07:56.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Michael Dawson ", + "authorEmail": "michael_dawson@ca.ibm.com", + "date": "2015-09-29T14:55:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-23T12:33:18.000Z", + "fileChanged": "1", + "insertions": "116", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-28T03:08:43.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Minwoo Jung ", + "authorEmail": "jmwsoft@gmail.com", + "date": "2014-10-05T12:24:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-09-27T15:59:02.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-09-28T05:38:11.000Z", + "fileChanged": "1", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-26T23:16:35.000Z", + "fileChanged": "4", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-26T22:49:04.000Z", + "fileChanged": "24", + "insertions": "61", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-09-27T11:59:53.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-09-26T13:14:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-09-25T10:19:53.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-09-25T09:54:21.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-24T18:58:48.000Z", + "fileChanged": "5", + "insertions": "85", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-09-23T21:29:01.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Cheng Zhao ", + "authorEmail": "zcbenz@gmail.com", + "date": "2015-09-25T05:06:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-09-24T03:01:13.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Johann ", + "authorEmail": "git@johann-hofmann.com", + "date": "2015-09-23T16:42:20.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-09-24T05:30:25.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-09-22T14:24:16.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-09-23T18:08:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michał Gołębiowski ", + "authorEmail": "m.goleb@gmail.com", + "date": "2015-09-15T18:46:27.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fabio Oliveira ", + "authorEmail": "fabio.an.oliveira@gmail.com", + "date": "2015-09-11T03:54:59.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "P.S.V.R ", + "authorEmail": "pmq2001@gmail.com", + "date": "2015-09-23T04:44:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Laurent Fortin ", + "authorEmail": "laurent.fortin@gmail.com", + "date": "2015-09-22T19:01:23.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Laurent Fortin ", + "authorEmail": "laurent.fortin@gmail.com", + "date": "2015-09-18T00:29:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "P.S.V.R ", + "authorEmail": "pmq2001@gmail.com", + "date": "2015-09-23T04:48:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "reggi ", + "authorEmail": "thomas@reggi.com", + "date": "2015-09-22T20:48:53.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "P.S.V.R ", + "authorEmail": "pmq2001@gmail.com", + "date": "2015-09-23T06:49:38.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-22T06:51:58.000Z", + "fileChanged": "1", + "insertions": "52", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-09-16T22:45:29.000Z", + "fileChanged": "15", + "insertions": "23", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-09-16T22:42:27.000Z", + "fileChanged": "4", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Salman Aljammaz ", + "authorEmail": "s@0x65.net", + "date": "2015-09-05T15:03:46.000Z", + "fileChanged": "2", + "insertions": "59", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Malcolm Ahoy ", + "authorEmail": "malcolmahoy@gmail.com", + "date": "2015-09-09T13:11:19.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-09-20T10:37:21.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-09-21T04:39:37.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Christopher J. Brody ", + "authorEmail": "brodybits@litehelpers.net", + "date": "2015-09-21T15:20:39.000Z", + "fileChanged": "1", + "deletions": "10", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2015-09-20T21:04:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-08-28T01:31:11.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-09-20T22:42:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Kat Marchán ", + "authorEmail": "kzm@sykosomatic.org", + "date": "2015-09-19T01:09:51.000Z", + "fileChanged": "14", + "insertions": "68", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Kat Marchán ", + "authorEmail": "kzm@sykosomatic.org", + "date": "2015-09-18T21:41:44.000Z", + "fileChanged": "229", + "insertions": "849", + "deletions": "4945", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-08-28T01:17:10.000Z", + "fileChanged": "10", + "insertions": "36", + "deletions": "71", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-09-18T19:15:39.000Z", + "fileChanged": "2", + "insertions": "75", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-18T06:17:15.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-09-18T03:06:35.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-09-18T02:25:28.000Z", + "fileChanged": "1", + "insertions": "52", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2015-09-09T13:19:24.000Z", + "fileChanged": "1", + "insertions": "58", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Matt Harrison ", + "authorEmail": "hi@matt-harrison.com", + "date": "2015-09-11T14:47:41.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-09-17T16:48:16.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Matt Loring ", + "authorEmail": "mattloring@google.com", + "date": "2015-09-14T22:28:27.000Z", + "fileChanged": "5", + "insertions": "54", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-16T21:31:42.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-09-16T17:44:28.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-09-16T15:12:41.000Z", + "fileChanged": "11", + "insertions": "28", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Stewart Addison ", + "authorEmail": "sxa@uk.ibm.com", + "date": "2015-08-28T17:05:57.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Michael Dawson ", + "authorEmail": "michael_dawson@ca.ibm.com", + "date": "2015-09-15T21:54:20.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Imran Iqbal ", + "authorEmail": "imrani@ca.ibm.com", + "date": "2015-09-16T15:36:55.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-09-15T20:47:47.000Z", + "fileChanged": "1", + "insertions": "85", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-09-16T19:00:32.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-09-16T17:57:30.000Z", + "fileChanged": "7", + "insertions": "109", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-09-14T16:56:35.000Z", + "fileChanged": "4", + "insertions": "3", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-08-28T01:50:39.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-14T17:28:02.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-09-16T19:03:33.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-09-16T18:00:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "vieuxtech@gmail.com", + "date": "2015-09-13T16:03:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "vieuxtech@gmail.com", + "date": "2015-09-13T13:02:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "vieuxtech@gmail.com", + "date": "2015-09-13T12:37:14.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "vieuxtech@gmail.com", + "date": "2015-09-13T15:21:51.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-09-16T04:14:18.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-09-14T22:31:10.000Z", + "fileChanged": "6", + "insertions": "107", + "deletions": "61", + "type": "Commit" + }, + { + "authorName": "Malcolm Ahoy ", + "authorEmail": "malcolmahoy@gmail.com", + "date": "2015-09-11T21:18:01.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-09-09T16:35:04.000Z", + "fileChanged": "3", + "insertions": "37", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-09-14T16:01:50.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Dmitry Vasilyev ", + "authorEmail": "vaseker@gmail.com", + "date": "2015-09-15T17:36:49.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Sven Slootweg ", + "authorEmail": "jamsoftgamedev@gmail.com", + "date": "2015-09-15T17:16:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Michael Dawson ", + "authorEmail": "michael_dawson@ca.ibm.com", + "date": "2015-08-12T15:53:33.000Z", + "fileChanged": "18", + "insertions": "1113", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-09-15T00:16:54.000Z", + "fileChanged": "5", + "insertions": "61", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-08-26T09:52:43.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-05T02:05:26.000Z", + "fileChanged": "1", + "insertions": "87", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-09-12T20:42:39.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-09-12T19:56:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-09-12T19:54:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-08-26T21:41:28.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-09-11T21:04:26.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Kat Marchán ", + "authorEmail": "kzm@sykosomatic.org", + "date": "2015-09-11T19:01:42.000Z", + "fileChanged": "56", + "insertions": "1050", + "deletions": "5060", + "type": "Commit" + }, + { + "authorName": "Kat Marchán ", + "authorEmail": "kzm@sykosomatic.org", + "date": "2015-09-11T18:39:03.000Z", + "fileChanged": "169", + "insertions": "5244", + "deletions": "1122", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2015-08-15T16:30:31.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ron Korving ", + "authorEmail": "rkorving@wizcorp.jp", + "date": "2015-07-28T05:59:35.000Z", + "fileChanged": "2", + "insertions": "99", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Matt Loring ", + "authorEmail": "mattloring@google.com", + "date": "2015-09-04T19:01:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Matt Loring ", + "authorEmail": "mattloring@google.com", + "date": "2015-09-04T18:49:36.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Danny Nemer ", + "authorEmail": "DannyNemer@users.noreply.github.com", + "date": "2015-09-12T00:23:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ionică Bizău ", + "authorEmail": "bizauionica@gmail.com", + "date": "2015-09-14T06:50:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Mike Tunnicliffe ", + "authorEmail": "mike.tunnicliffe@uk.ibm.com", + "date": "2015-09-11T22:03:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Roman Klauke ", + "authorEmail": "romankl@users.noreply.github.com", + "date": "2015-08-25T19:17:36.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-12T21:10:41.000Z", + "fileChanged": "1", + "deletions": "39", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-08-25T21:19:18.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Tristian Flanagan ", + "authorEmail": "tflanagan@datacollaborative.com", + "date": "2015-09-13T15:09:32.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-09T22:06:31.000Z", + "fileChanged": "3", + "insertions": "422", + "deletions": "347", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-11T04:04:08.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-09-07T06:24:12.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Oleksandr Chekhovskyi ", + "authorEmail": "oleksandr.chekhovskyi@hansoft.com", + "date": "2015-08-07T13:03:04.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2015-09-11T15:55:29.000Z", + "fileChanged": "19", + "insertions": "207", + "deletions": "121", + "type": "Commit" + }, + { + "authorName": "Minwoo Jung ", + "authorEmail": "jmwsoft@gmail.com", + "date": "2015-09-10T15:20:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-09T21:50:19.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Anne-Gaelle Colom ", + "authorEmail": "coloma@wmin.ac.uk", + "date": "2015-09-09T21:21:11.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-09-10T19:26:50.000Z", + "fileChanged": "2", + "insertions": "65", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-09-10T11:01:20.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Anne-Gaelle Colom ", + "authorEmail": "coloma@wmin.ac.uk", + "date": "2015-09-09T10:40:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-09-10T03:45:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2015-06-15T02:06:22.000Z", + "fileChanged": "3", + "insertions": "54", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-07T03:47:41.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-07T03:54:43.000Z", + "fileChanged": "2", + "insertions": "93", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-09-07T18:13:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-09-07T21:57:18.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-08T09:51:35.000Z", + "fileChanged": "5", + "insertions": "77", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-09-08T00:40:43.000Z", + "fileChanged": "3", + "insertions": "62", + "deletions": "101", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-08-25T19:24:41.000Z", + "fileChanged": "4", + "insertions": "87", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-07T05:00:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-05T05:37:48.000Z", + "fileChanged": "61", + "insertions": "945", + "deletions": "5085", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-05T04:41:34.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-09-07T17:25:25.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-09-07T12:32:00.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-31T11:07:52.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-05T06:18:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-09-05T13:44:21.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Kat Marchán ", + "authorEmail": "kzm@sykosomatic.org", + "date": "2015-09-04T21:48:13.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Kat Marchán ", + "authorEmail": "kzm@sykosomatic.org", + "date": "2015-09-04T21:47:14.000Z", + "fileChanged": "500", + "insertions": "7365", + "deletions": "12214", + "type": "Commit" + }, + { + "authorName": "saper ", + "authorEmail": "saper@marcincieslak.com", + "date": "2015-08-11T07:48:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-04T05:41:21.000Z", + "fileChanged": "4", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-03T06:22:57.000Z", + "fileChanged": "1", + "insertions": "418", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-09-04T10:48:20.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "mail@skomski.com", + "date": "2015-09-03T08:10:30.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-09-03T08:10:29.000Z", + "fileChanged": "3", + "insertions": "19", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-09-02T09:24:24.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-09-01T08:51:17.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-04T02:25:31.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-09-01T00:10:53.000Z", + "fileChanged": "25", + "insertions": "210", + "deletions": "147", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-08-28T07:02:32.000Z", + "fileChanged": "1", + "deletions": "14", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-08-23T19:53:05.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-07-18T09:34:16.000Z", + "fileChanged": "72", + "insertions": "347", + "deletions": "383", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-07-01T21:47:37.000Z", + "fileChanged": "4", + "insertions": "24", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-08-23T14:24:54.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-07-07T22:27:14.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-08-23T13:28:57.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-08-23T13:09:40.000Z", + "fileChanged": "1309", + "insertions": "98776", + "deletions": "56851", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-09-02T16:23:49.000Z", + "fileChanged": "5", + "insertions": "31", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-08-14T08:07:18.000Z", + "fileChanged": "5", + "insertions": "46", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-09-02T21:16:24.000Z", + "fileChanged": "2", + "insertions": "114", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-08-29T02:56:22.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-08-28T20:58:18.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-07-25T06:09:59.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2015-09-02T09:30:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-30T22:49:34.000Z", + "fileChanged": "5", + "insertions": "111", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-08-16T14:09:02.000Z", + "fileChanged": "4", + "insertions": "107", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-09-02T16:36:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-09-02T16:03:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "saper ", + "authorEmail": "saper@marcincieslak.com", + "date": "2015-08-11T07:48:49.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-02T05:39:16.000Z", + "fileChanged": "1", + "insertions": "88", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-08-27T19:56:46.000Z", + "fileChanged": "2", + "insertions": "68", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-12-18T23:36:21.000Z", + "fileChanged": "4", + "insertions": "169", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-08-20T07:08:32.000Z", + "fileChanged": "2", + "insertions": "123", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-09-02T07:59:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-09-02T07:31:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2015-08-05T19:17:46.000Z", + "fileChanged": "78", + "insertions": "2772", + "deletions": "651", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-08-21T11:31:24.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-08-17T20:32:51.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-31T07:33:22.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-31T07:03:26.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-31T06:05:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-31T06:01:01.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-31T10:24:38.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-19T10:49:12.000Z", + "fileChanged": "1", + "insertions": "87", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-08-29T20:19:53.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-28T06:24:29.000Z", + "fileChanged": "1", + "insertions": "112", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-30T07:49:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "P.S.V.R ", + "authorEmail": "pmq2001@gmail.com", + "date": "2015-08-25T09:37:03.000Z", + "fileChanged": "1", + "insertions": "136", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-08-29T07:41:27.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-08-28T21:26:07.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bradley Meck ", + "authorEmail": "bradley.meck@gmail.com", + "date": "2015-08-22T18:36:03.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-08-26T19:11:27.000Z", + "fileChanged": "1", + "insertions": "31", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-08-26T19:07:33.000Z", + "fileChanged": "3", + "insertions": "90", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-08-27T07:10:22.000Z", + "fileChanged": "8", + "insertions": "88", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-08-27T20:08:10.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-27T20:47:15.000Z", + "fileChanged": "8", + "insertions": "15", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-27T15:57:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-05T13:24:53.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-25T16:19:11.000Z", + "fileChanged": "8", + "insertions": "56", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-25T15:40:40.000Z", + "fileChanged": "5", + "insertions": "31", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "Сковорода Никита Андреевич ", + "authorEmail": "chalkerx@gmail.com", + "date": "2015-08-27T08:52:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Сковорода Никита Андреевич ", + "authorEmail": "chalkerx@gmail.com", + "date": "2015-08-27T09:24:45.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-19T19:20:21.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2015-08-26T10:42:45.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2015-08-26T10:41:16.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2015-08-26T10:38:48.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2015-08-18T12:04:14.000Z", + "fileChanged": "3", + "insertions": "54", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2015-07-07T20:48:26.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-11-07T13:15:24.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Minwoo Jung ", + "authorEmail": "jmwsoft@gmail.com", + "date": "2015-08-26T12:17:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-08-12T03:02:22.000Z", + "fileChanged": "5", + "insertions": "266", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-08-26T11:37:50.000Z", + "fileChanged": "4", + "insertions": "40", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-08-25T16:18:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-08-25T22:48:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-20T04:52:33.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-20T04:51:00.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-26T01:58:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-22T02:21:06.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T23:23:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T23:08:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T22:54:28.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T22:27:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T22:23:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T22:12:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T22:05:24.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T19:56:26.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T18:43:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T18:36:39.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T18:07:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T17:59:07.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T17:46:43.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T17:39:20.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T17:25:10.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T17:09:30.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T17:00:54.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T16:48:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-14T16:46:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-08-25T16:45:42.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-08-25T00:13:22.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-08-24T14:29:40.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-08-25T04:25:48.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-08-18T18:50:10.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-20T14:57:03.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-18T19:29:59.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-23T12:08:06.000Z", + "fileChanged": "1", + "insertions": "69", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-08-19T06:15:25.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-08-23T03:40:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-20T20:33:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-20T20:29:57.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-20T20:19:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bradley Meck ", + "authorEmail": "bradley.meck@gmail.com", + "date": "2015-08-12T00:25:49.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-08-20T10:04:10.000Z", + "fileChanged": "1", + "deletions": "13", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-07-21T20:39:15.000Z", + "fileChanged": "3", + "insertions": "43", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-06-19T17:24:14.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-08-19T22:37:52.000Z", + "fileChanged": "8", + "insertions": "29", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-08-24T05:17:50.000Z", + "fileChanged": "1", + "insertions": "68", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-08-19T20:39:47.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-08-23T20:40:28.000Z", + "fileChanged": "9", + "insertions": "14", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-08-21T01:45:38.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Frederic Hemberger ", + "authorEmail": "mail@frederic-hemberger.de", + "date": "2015-08-20T14:53:38.000Z", + "fileChanged": "9", + "insertions": "5", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-08-13T16:14:34.000Z", + "fileChanged": "99", + "insertions": "3031", + "deletions": "3056", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-07-28T00:10:47.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Minwoo Jung ", + "authorEmail": "jmwsoft@gmail.com", + "date": "2015-08-22T06:07:09.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-15T16:40:32.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-17T22:51:51.000Z", + "fileChanged": "8", + "insertions": "144", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "hackerjs ", + "authorEmail": "4141095@qq.com", + "date": "2013-12-10T10:56:04.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-23T07:45:43.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-08-18T23:33:11.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-08-18T23:32:07.000Z", + "fileChanged": "6", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Roman Klauke ", + "authorEmail": "romankl@users.noreply.github.com", + "date": "2015-08-22T17:19:14.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-08-22T08:10:55.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-06T22:33:47.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-19T10:47:47.000Z", + "fileChanged": "1", + "insertions": "89", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-20T10:46:08.000Z", + "fileChanged": "1", + "insertions": "120", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-20T00:43:17.000Z", + "fileChanged": "1", + "insertions": "166", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-20T03:41:07.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-20T03:29:55.000Z", + "fileChanged": "6", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-20T01:00:16.000Z", + "fileChanged": "6", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-08-17T19:03:32.000Z", + "fileChanged": "2", + "insertions": "83", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-08-21T19:48:10.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-08-20T23:57:14.000Z", + "fileChanged": "2", + "insertions": "75", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-08-21T09:15:55.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-19T10:45:26.000Z", + "fileChanged": "1", + "insertions": "168", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-08-12T13:30:01.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Mike Atkins ", + "authorEmail": "mike.atkins@lanetix.com", + "date": "2015-08-10T15:55:37.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jacob Edelman ", + "authorEmail": "edelman.jd@gmail.com", + "date": "2015-08-15T17:56:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-08-02T10:09:38.000Z", + "fileChanged": "8", + "insertions": "3", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-08-20T09:37:02.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Todd Kennedy ", + "authorEmail": "todd@selfassembled.org", + "date": "2015-08-19T22:44:20.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-08-11T19:27:22.000Z", + "fileChanged": "8", + "insertions": "96", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-08-18T18:45:59.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-08-18T18:36:20.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-08-18T18:11:28.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-08-11T18:31:50.000Z", + "fileChanged": "14", + "insertions": "74", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Michael Dawson ", + "authorEmail": "michael_dawson@ca.ibm.com", + "date": "2015-07-30T22:12:36.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-18T19:02:52.000Z", + "fileChanged": "4", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-18T18:29:10.000Z", + "fileChanged": "5", + "insertions": "40", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-08-18T15:38:20.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-08-15T23:17:36.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-08-17T20:51:42.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "P.S.V.R ", + "authorEmail": "pmq2001@gmail.com", + "date": "2015-08-18T02:32:21.000Z", + "fileChanged": "3", + "insertions": "37", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-08-14T22:57:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Matt Loring ", + "authorEmail": "mattloring@google.com", + "date": "2015-07-01T00:24:21.000Z", + "fileChanged": "5", + "insertions": "186", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-08-14T12:35:41.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-08-14T12:30:52.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-08-14T12:28:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-08-14T12:26:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-08-14T12:23:00.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2015-08-14T08:12:16.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "muddletoes ", + "authorEmail": "muddletoes@hotmail.com", + "date": "2014-11-12T18:42:34.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Sam Stites ", + "authorEmail": "sam@stites.io", + "date": "2015-08-15T17:07:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-13T23:56:30.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srloomis@us.ibm.com", + "date": "2015-07-31T23:25:15.000Z", + "fileChanged": "3", + "insertions": "730", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-13T11:53:39.000Z", + "fileChanged": "6", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-13T11:47:18.000Z", + "fileChanged": "5", + "insertions": "24", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-13T11:29:28.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-07T21:03:00.000Z", + "fileChanged": "4", + "insertions": "10", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2015-08-13T15:30:01.000Z", + "fileChanged": "3", + "insertions": "407", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srloomis@us.ibm.com", + "date": "2015-08-03T19:44:06.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-07-27T16:39:04.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Chad Johnston ", + "authorEmail": "cjohnston@megatome.com", + "date": "2015-08-07T02:42:10.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Roman Klauke ", + "authorEmail": "romaaan.git@gmail.com", + "date": "2015-08-11T18:06:41.000Z", + "fileChanged": "4", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-08-05T12:44:21.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-26T01:54:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Nathan Woltman ", + "authorEmail": "nwoltman@outlook.com", + "date": "2015-07-31T21:47:49.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Lucien Greathouse ", + "authorEmail": "me@lpghatguy.com", + "date": "2015-08-09T05:56:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Christopher Monsanto ", + "authorEmail": "chris@monsan.to", + "date": "2015-06-10T08:25:04.000Z", + "fileChanged": "3", + "insertions": "71", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-08-08T01:14:54.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-08-08T01:12:44.000Z", + "fileChanged": "3", + "insertions": "121", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2015-06-10T15:41:03.000Z", + "fileChanged": "2", + "insertions": "88", + "deletions": "79", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2015-07-02T22:26:21.000Z", + "fileChanged": "2", + "insertions": "38", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Gireesh Punathil ", + "authorEmail": "gpunathi@in.ibm.com", + "date": "2015-03-18T08:12:16.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-06-24T03:42:49.000Z", + "fileChanged": "12", + "insertions": "98", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-05T07:36:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-04T21:23:27.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-01T02:10:43.000Z", + "fileChanged": "2", + "insertions": "112", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-08-04T20:59:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-08-03T20:10:19.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-08-04T06:24:03.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-08-02T05:38:28.000Z", + "fileChanged": "5", + "insertions": "207", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-08-04T06:33:48.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-07-30T10:05:20.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-07-27T06:43:54.000Z", + "fileChanged": "40", + "insertions": "1102", + "deletions": "238", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-05-05T02:24:59.000Z", + "fileChanged": "3", + "insertions": "33", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-05-21T04:17:10.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Frederic Hemberger ", + "authorEmail": "mail@frederic-hemberger.de", + "date": "2015-07-25T11:33:32.000Z", + "fileChanged": "5", + "insertions": "114", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-07-30T12:12:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-07-16T21:19:01.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-07-24T02:39:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Michael Dawson ", + "authorEmail": "michael_dawson@ca.ibm.com", + "date": "2015-07-07T18:15:03.000Z", + "fileChanged": "11", + "insertions": "561", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-07-22T19:06:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-07-13T03:35:02.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-18T06:41:37.000Z", + "fileChanged": "6", + "insertions": "102", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "jomo ", + "authorEmail": "github@jomo.tv", + "date": "2015-07-11T00:01:52.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-07-05T18:20:26.000Z", + "fileChanged": "4", + "insertions": "57", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-07-02T04:34:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-07-01T22:50:48.000Z", + "fileChanged": "10", + "insertions": "146", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-30T07:43:29.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-26T12:19:30.000Z", + "fileChanged": "3", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-26T12:17:02.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-06-19T19:00:19.000Z", + "fileChanged": "3", + "insertions": "1019", + "deletions": "1015", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-06-19T18:54:24.000Z", + "fileChanged": "2", + "deletions": "49", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-06-19T18:45:30.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-06-19T11:23:56.000Z", + "fileChanged": "988", + "insertions": "73791", + "deletions": "38607", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-06-17T16:43:13.000Z", + "fileChanged": "3", + "insertions": "65", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-06-17T17:42:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-06-17T17:34:12.000Z", + "fileChanged": "6", + "insertions": "21", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-06-11T15:47:52.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-06-10T17:06:15.000Z", + "fileChanged": "4", + "insertions": "7", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-04-13T14:31:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Matteo Collina ", + "authorEmail": "hello@matteocollina.com", + "date": "2015-05-26T07:17:00.000Z", + "fileChanged": "4", + "insertions": "41", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2014-06-05T19:42:41.000Z", + "fileChanged": "3", + "insertions": "66", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Domenic Denicola ", + "authorEmail": "d@domenic.me", + "date": "2015-06-01T16:22:19.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Domenic Denicola ", + "authorEmail": "d@domenic.me", + "date": "2015-05-23T00:02:20.000Z", + "fileChanged": "1", + "deletions": "18", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Domenic Denicola ", + "authorEmail": "d@domenic.me", + "date": "2015-05-22T23:41:28.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-06-02T19:10:47.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-06-02T18:53:30.000Z", + "fileChanged": "7", + "insertions": "22", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-06-02T17:09:03.000Z", + "fileChanged": "9", + "insertions": "164", + "deletions": "132", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-06-02T16:18:01.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-06-01T18:29:17.000Z", + "fileChanged": "2", + "insertions": "116", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-05-26T18:42:14.000Z", + "fileChanged": "13", + "insertions": "2521", + "deletions": "1252", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-05-26T20:34:12.000Z", + "fileChanged": "1", + "insertions": "77", + "deletions": "61", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-27T00:34:17.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-03-02T23:50:25.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-04-29T00:49:15.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-05-14T09:12:17.000Z", + "fileChanged": "1", + "insertions": "61", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-05-05T20:48:55.000Z", + "fileChanged": "869", + "insertions": "52207", + "deletions": "35907", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-05-05T01:16:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-12T16:58:50.000Z", + "fileChanged": "2", + "insertions": "61", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-08T21:53:48.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-08-02T11:54:40.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-08-02T14:06:43.000Z", + "fileChanged": "16", + "insertions": "32", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-04-15T20:58:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Kat Marchán ", + "authorEmail": "kzm@sykosomatic.org", + "date": "2015-08-01T00:08:03.000Z", + "fileChanged": "330", + "insertions": "11574", + "deletions": "15003", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-29T11:48:04.000Z", + "fileChanged": "66", + "insertions": "114", + "deletions": "132", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-07-29T23:05:11.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-07-08T00:37:43.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-07-25T00:59:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-07-29T00:30:28.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-12T16:10:57.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "vieuxtech@gmail.com", + "date": "2015-07-28T04:00:32.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "vieuxtech@gmail.com", + "date": "2015-03-02T20:22:43.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-07-28T15:22:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-07-28T14:59:14.000Z", + "fileChanged": "2", + "insertions": "65", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-07-25T13:01:24.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-25T06:33:11.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-07-27T21:29:03.000Z", + "fileChanged": "4", + "insertions": "17", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-07-27T21:12:42.000Z", + "fileChanged": "1", + "deletions": "10", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-07-27T21:12:00.000Z", + "fileChanged": "1", + "deletions": "13", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-07-27T21:11:19.000Z", + "fileChanged": "1", + "deletions": "11", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-07-27T00:24:28.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-07-23T04:18:38.000Z", + "fileChanged": "4", + "insertions": "193", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-22T19:58:30.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-07-10T19:55:14.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Woltman ", + "authorEmail": "nwoltman@outlook.com", + "date": "2015-07-04T19:50:07.000Z", + "fileChanged": "10", + "insertions": "147", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-07-16T09:17:22.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-07-15T20:09:52.000Z", + "fileChanged": "2", + "insertions": "83", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-04-15T20:58:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Kat Marchán ", + "authorEmail": "kzm@sykosomatic.org", + "date": "2015-07-24T22:09:52.000Z", + "fileChanged": "231", + "insertions": "2039", + "deletions": "1543", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-06-15T16:10:44.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-12T21:48:50.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-12T01:22:33.000Z", + "fileChanged": "2", + "insertions": "102", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-12T00:58:20.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-12T00:53:39.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-07-21T18:37:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-09T18:54:21.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-07-24T14:49:12.000Z", + "fileChanged": "15", + "insertions": "121", + "deletions": "198", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-07-23T16:15:19.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2015-02-15T02:50:56.000Z", + "fileChanged": "3", + "insertions": "24", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-07-22T20:52:23.000Z", + "fileChanged": "3", + "insertions": "57", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-07-21T17:30:20.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-05-17T13:10:24.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-13T19:38:25.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-07-18T02:59:55.000Z", + "fileChanged": "9", + "insertions": "55", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-04-15T20:58:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Kat Marchán ", + "authorEmail": "kzm@sykosomatic.org", + "date": "2015-07-21T03:07:07.000Z", + "fileChanged": "291", + "insertions": "2721", + "deletions": "12702", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-14T20:26:54.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-07-20T08:54:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-07T15:25:55.000Z", + "fileChanged": "151", + "insertions": "165", + "deletions": "165", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-06T03:24:12.000Z", + "fileChanged": "47", + "insertions": "62", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-07-16T11:09:35.000Z", + "fileChanged": "1", + "insertions": "93", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Phillip Johnsen ", + "authorEmail": "johphi@gmail.com", + "date": "2015-06-24T18:35:43.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-14T17:23:54.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-07-17T23:21:50.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-07-17T23:19:32.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-07-17T22:48:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-18T04:02:18.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-07-16T22:09:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-05-15T19:51:37.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-04-15T20:58:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-07-10T03:48:26.000Z", + "fileChanged": "369", + "insertions": "15329", + "deletions": "1212", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-07-15T12:48:24.000Z", + "fileChanged": "1", + "insertions": "130", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-07-15T12:19:56.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-30T06:57:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-07-08T11:39:23.000Z", + "fileChanged": "1", + "insertions": "87", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-05T15:08:16.000Z", + "fileChanged": "2", + "insertions": "55", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-07-10T23:57:51.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-07-11T22:20:48.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Phillip Johnsen ", + "authorEmail": "johphi@gmail.com", + "date": "2015-07-10T22:13:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2015-07-05T16:16:47.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bradley Meck ", + "authorEmail": "bradley.meck@gmail.com", + "date": "2015-07-09T16:15:26.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-07-01T15:13:54.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-07-01T15:14:52.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2015-07-08T14:11:24.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2015-07-08T10:31:30.000Z", + "fileChanged": "1", + "deletions": "12", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-07T17:01:21.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-07-07T22:06:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-07-07T12:44:57.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-07-09T16:46:24.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-07-09T16:46:02.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-07-09T13:00:23.000Z", + "fileChanged": "13", + "insertions": "26", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-07-09T12:57:23.000Z", + "fileChanged": "54", + "insertions": "965", + "deletions": "270", + "type": "Commit" + }, + { + "authorName": "Bradley Meck ", + "authorEmail": "bradley.meck@gmail.com", + "date": "2015-07-09T15:05:59.000Z", + "fileChanged": "1", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-07-08T00:00:33.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-07-06T16:41:04.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-07-07T13:31:17.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-07-03T10:28:46.000Z", + "fileChanged": "1", + "insertions": "58", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-04-15T20:58:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Kat Marchán ", + "authorEmail": "kzm@sykosomatic.org", + "date": "2015-07-06T07:00:48.000Z", + "fileChanged": "441", + "insertions": "23321", + "deletions": "3921", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-07-04T18:19:58.000Z", + "fileChanged": "1", + "deletions": "90", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Woltman ", + "authorEmail": "nwoltman@outlook.com", + "date": "2015-06-06T00:43:48.000Z", + "fileChanged": "6", + "insertions": "138", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Woltman ", + "authorEmail": "nwoltman@outlook.com", + "date": "2015-05-23T04:42:12.000Z", + "fileChanged": "2", + "insertions": "91", + "deletions": "74", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-07-03T10:32:53.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Mark Plomer ", + "authorEmail": "mark.plomer@boerse-go.de", + "date": "2015-04-13T14:28:47.000Z", + "fileChanged": "1", + "insertions": "90", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-07-03T22:47:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-07-03T22:46:16.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-07-03T21:12:08.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Benjamin Gruenbaum ", + "authorEmail": "inglor@gmail.com", + "date": "2015-06-25T06:17:21.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-06-13T16:44:39.000Z", + "fileChanged": "16", + "insertions": "116", + "deletions": "64", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-07-02T09:43:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-07-02T04:20:35.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-30T06:29:36.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-06-25T11:41:10.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-06-06T22:37:35.000Z", + "fileChanged": "7", + "insertions": "239", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-28T02:05:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-02-10T00:27:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-06-29T09:51:02.000Z", + "fileChanged": "16", + "insertions": "399", + "deletions": "1887", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-27T05:11:30.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-27T04:12:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-06-28T15:42:35.000Z", + "fileChanged": "11", + "insertions": "17", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-06-28T15:36:14.000Z", + "fileChanged": "1048", + "insertions": "101465", + "deletions": "4678", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-06-29T12:12:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-06-26T02:44:44.000Z", + "fileChanged": "2", + "insertions": "66", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-01-15T20:33:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-06-25T12:29:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-06-18T20:07:22.000Z", + "fileChanged": "3", + "insertions": "88", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-23T21:29:38.000Z", + "fileChanged": "25", + "deletions": "1431", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-23T18:26:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-06-21T20:32:22.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-06-24T20:11:43.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-12-15T20:21:54.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sangmin Yoon ", + "authorEmail": "sangmin.yoon@croquis.com", + "date": "2015-05-27T09:10:45.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ivan Yan ", + "authorEmail": "yan.2314@gmail.com", + "date": "2015-06-25T02:21:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-14T10:23:43.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-06-19T02:48:11.000Z", + "fileChanged": "76", + "insertions": "38359", + "deletions": "80", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-10T07:05:26.000Z", + "fileChanged": "12", + "insertions": "281", + "deletions": "89", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-23T05:17:52.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-23T12:13:00.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-16T12:49:49.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2015-04-23T14:26:59.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Jimmy Hsu ", + "authorEmail": "jimmyhsu@users.noreply.github.com", + "date": "2015-02-16T02:56:24.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-24T10:53:55.000Z", + "fileChanged": "1", + "insertions": "133", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-06-23T03:27:17.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-03T05:38:30.000Z", + "fileChanged": "1", + "insertions": "142", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-03T05:36:30.000Z", + "fileChanged": "40", + "insertions": "2298", + "deletions": "2298", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-03T05:36:05.000Z", + "fileChanged": "42", + "insertions": "2481", + "deletions": "2481", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-22T18:53:50.000Z", + "fileChanged": "3", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-22T20:58:29.000Z", + "fileChanged": "2", + "deletions": "8", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-06-19T15:31:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-14T06:42:09.000Z", + "fileChanged": "1", + "insertions": "137", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-18T05:38:09.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-23T05:33:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-19T10:42:59.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-19T05:06:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-06-18T20:18:46.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-19T02:39:42.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-18T05:14:22.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-11T10:37:37.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-04-15T20:58:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-06-19T10:24:06.000Z", + "fileChanged": "162", + "insertions": "962", + "deletions": "489", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-06-17T22:47:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Christian Tellnes ", + "authorEmail": "christian@tellnes.no", + "date": "2015-06-17T09:02:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-16T22:23:24.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Pierre Inglebert ", + "authorEmail": "pierre.inglebert@gmail.com", + "date": "2015-06-08T21:44:18.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James Hartig ", + "authorEmail": "fastest963@gmail.com", + "date": "2015-06-08T22:25:06.000Z", + "fileChanged": "3", + "insertions": "63", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-16T22:01:39.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-06-17T19:59:40.000Z", + "fileChanged": "1", + "insertions": "183", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-16T05:02:23.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-06-03T21:31:33.000Z", + "fileChanged": "25", + "insertions": "175", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-06-16T14:11:51.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-06-09T18:25:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-14T14:02:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-06-13T03:06:35.000Z", + "fileChanged": "1", + "insertions": "36", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-06-16T05:01:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-06-16T04:52:06.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-06-16T04:51:41.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-06-16T20:24:08.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-06-08T19:18:48.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-06-04T08:50:33.000Z", + "fileChanged": "14", + "insertions": "6092", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Сковорода Никита Андреевич ", + "authorEmail": "chalkerx@gmail.com", + "date": "2015-06-15T11:45:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-06-15T20:04:14.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-05-27T11:21:56.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-04-15T20:58:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Rebecca Turner ", + "authorEmail": "me@re-becca.org", + "date": "2015-06-12T08:04:17.000Z", + "fileChanged": "311", + "insertions": "5132", + "deletions": "13612", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-13T16:07:20.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-06-13T19:33:46.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-06-13T17:47:14.000Z", + "fileChanged": "40", + "insertions": "8", + "deletions": "79", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-06-13T02:25:35.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-06-12T05:12:20.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-04-14T07:54:30.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-13T01:59:40.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-13T00:26:04.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-09T18:40:55.000Z", + "fileChanged": "53", + "insertions": "92", + "deletions": "77", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-02T20:16:36.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Сковорода Никита Андреевич ", + "authorEmail": "chalkerx@gmail.com", + "date": "2015-06-09T20:50:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-13T05:41:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-13T04:14:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-13T04:09:33.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-12T05:01:26.000Z", + "fileChanged": "1", + "insertions": "93", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-05-28T02:20:28.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-12T22:49:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-06-12T21:21:50.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "67", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-06-11T20:08:17.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2015-06-11T21:43:09.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-06-11T16:04:52.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-06-12T16:12:57.000Z", + "fileChanged": "76", + "insertions": "76", + "deletions": "328", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-05-27T01:33:38.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-02-17T02:30:28.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-02-13T09:33:59.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-08T19:05:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-06-12T15:56:07.000Z", + "fileChanged": "90", + "insertions": "383", + "deletions": "143", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-06-11T15:09:20.000Z", + "fileChanged": "31", + "insertions": "7274", + "deletions": "2737", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-06-11T15:07:42.000Z", + "fileChanged": "76", + "insertions": "76", + "deletions": "328", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-05-27T01:33:38.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-02-17T02:30:28.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-02-13T09:33:59.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-08T19:05:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-06-11T15:00:05.000Z", + "fileChanged": "365", + "insertions": "4738", + "deletions": "1780", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-03T03:44:03.000Z", + "fileChanged": "5", + "insertions": "57", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-06-11T17:08:25.000Z", + "fileChanged": "7", + "insertions": "59", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-05-29T17:35:43.000Z", + "fileChanged": "21", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-05-29T17:28:01.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-06-11T16:45:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-06-01T21:49:43.000Z", + "fileChanged": "8", + "insertions": "112", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-06-03T14:57:44.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-06-02T22:11:04.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-06-02T17:02:15.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-06-02T15:15:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Sakthipriyan Vairamani ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-06-02T15:13:46.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Domenic Denicola ", + "authorEmail": "d@domenic.me", + "date": "2015-06-10T20:20:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Oleg Elifantiev ", + "authorEmail": "oleg@elifantiev.ru", + "date": "2015-06-09T21:21:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-04-15T20:58:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Kat Marchán ", + "authorEmail": "kzm@sykosomatic.org", + "date": "2015-06-05T02:04:48.000Z", + "fileChanged": "514", + "insertions": "21007", + "deletions": "7778", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-06-09T22:32:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Christopher Monsanto ", + "authorEmail": "chris@monsan.to", + "date": "2015-06-09T21:44:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2015-06-09T21:09:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-06-08T20:24:03.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Oleg Elifantiev ", + "authorEmail": "oleg@elifantiev.ru", + "date": "2015-06-02T20:23:31.000Z", + "fileChanged": "2", + "insertions": "58", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-02T05:34:20.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-06-08T16:26:16.000Z", + "fileChanged": "4", + "insertions": "51", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-04T20:26:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Petschek ", + "authorEmail": "petschekr@gmail.com", + "date": "2015-06-07T17:00:16.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-05-21T04:17:10.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-05-25T15:01:42.000Z", + "fileChanged": "6", + "insertions": "79", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Kat Marchán ", + "authorEmail": "kzm@sykosomatic.org", + "date": "2015-06-05T22:57:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2015-06-05T17:47:33.000Z", + "fileChanged": "4", + "insertions": "15", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-06-05T07:37:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2015-06-01T14:12:25.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-04-13T17:46:52.000Z", + "fileChanged": "5", + "insertions": "103", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-05-19T11:18:42.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-05-18T18:24:19.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-05-14T08:38:18.000Z", + "fileChanged": "2", + "insertions": "88", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-05-28T14:20:57.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-05-28T14:01:56.000Z", + "fileChanged": "5", + "insertions": "26", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-03T01:02:48.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2015-05-27T07:43:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2015-06-03T19:18:55.000Z", + "fileChanged": "53", + "insertions": "917", + "deletions": "364", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-06-03T07:13:56.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-05-29T20:08:16.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-05-27T01:41:43.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-05-27T01:33:38.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-05-27T01:16:51.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-05-22T13:43:16.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-05-22T13:28:11.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "João Reis ", + "authorEmail": "reis@janeasystems.com", + "date": "2015-05-22T13:16:07.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-03T11:37:25.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-05-30T14:49:56.000Z", + "fileChanged": "2", + "insertions": "85", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-27T19:25:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-05-30T17:12:07.000Z", + "fileChanged": "3", + "insertions": "37", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-28T12:11:20.000Z", + "fileChanged": "1", + "insertions": "302", + "deletions": "256", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-28T12:08:45.000Z", + "fileChanged": "1", + "insertions": "2447", + "deletions": "1008", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-25T12:57:22.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "193", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-25T12:31:13.000Z", + "fileChanged": "1", + "insertions": "351", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-06-02T08:39:55.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-06-01T04:19:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Сковорода Никита Андреевич ", + "authorEmail": "chalkerx@gmail.com", + "date": "2015-06-01T20:54:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-29T12:34:35.000Z", + "fileChanged": "3", + "deletions": "48", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-06-01T04:34:04.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Tyler Anton ", + "authorEmail": "mtyleranton@gmail.com", + "date": "2015-03-08T02:52:18.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Robert Kowalski ", + "authorEmail": "rok@kowalski.gd", + "date": "2015-01-07T21:51:15.000Z", + "fileChanged": "2", + "deletions": "57", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-06-01T14:15:10.000Z", + "fileChanged": "12", + "insertions": "275", + "deletions": "1227", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-05-19T18:12:26.000Z", + "fileChanged": "12", + "insertions": "1228", + "deletions": "276", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-01T05:47:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "thefourtheye ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-05-31T17:18:18.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-01T04:08:27.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-06-01T03:21:15.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-05-25T03:10:14.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-05-31T11:25:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-31T06:04:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-31T06:03:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-31T05:23:39.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-05-28T05:46:12.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-05-27T17:11:30.000Z", + "fileChanged": "3", + "insertions": "24", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-03-25T04:00:12.000Z", + "fileChanged": "2", + "insertions": "58", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-05-29T02:27:26.000Z", + "fileChanged": "282", + "insertions": "3011", + "deletions": "1839", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-05-28T03:42:33.000Z", + "fileChanged": "1", + "deletions": "19", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-05-30T03:46:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-05-13T15:52:49.000Z", + "fileChanged": "3", + "insertions": "31", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-28T19:46:54.000Z", + "fileChanged": "3", + "insertions": "47", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-28T19:11:12.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-05-22T14:52:05.000Z", + "fileChanged": "6", + "insertions": "934", + "deletions": "848", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-05-22T14:50:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-05-27T03:11:38.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-26T14:50:16.000Z", + "fileChanged": "2", + "insertions": "52", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-26T11:23:26.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Steve Sharp ", + "authorEmail": "stevenson.sharp@gmail.com", + "date": "2014-09-28T22:36:31.000Z", + "fileChanged": "1", + "insertions": "68", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-25T15:29:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-25T14:49:18.000Z", + "fileChanged": "4", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-25T14:45:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-25T14:37:49.000Z", + "fileChanged": "4", + "insertions": "41", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-05-23T00:01:10.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-05-04T18:40:25.000Z", + "fileChanged": "7", + "insertions": "42", + "deletions": "57", + "type": "Commit" + }, + { + "authorName": "Josh Gummersall ", + "authorEmail": "gumby@moz.com", + "date": "2015-05-19T04:35:48.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-05-02T01:37:05.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-24T06:31:11.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-24T03:56:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-24T02:10:22.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-23T22:43:41.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-03-25T04:00:12.000Z", + "fileChanged": "2", + "insertions": "58", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Rebecca Turner ", + "authorEmail": "me@re-becca.org", + "date": "2015-05-22T07:14:39.000Z", + "fileChanged": "309", + "insertions": "7249", + "deletions": "3428", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-23T00:31:57.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-05-23T05:48:13.000Z", + "fileChanged": "4", + "insertions": "14", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-05-22T16:35:57.000Z", + "fileChanged": "5", + "insertions": "38", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-05-16T02:24:34.000Z", + "fileChanged": "5", + "insertions": "155", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Malte-Thorben Bruns ", + "authorEmail": "skenqbx@gmail.com", + "date": "2015-05-22T19:12:59.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-05-21T05:46:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Maurice Butler ", + "authorEmail": "maurice.butler@gmail.com", + "date": "2015-05-21T04:00:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-05-15T19:21:06.000Z", + "fileChanged": "2", + "insertions": "64", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-05-04T03:57:17.000Z", + "fileChanged": "1", + "insertions": "56", + "deletions": "66", + "type": "Commit" + }, + { + "authorName": "Сковорода Никита Андреевич ", + "authorEmail": "chalkerx@gmail.com", + "date": "2015-05-20T19:26:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-05-20T05:20:26.000Z", + "fileChanged": "3", + "insertions": "16", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Felipe Batista ", + "authorEmail": "fsbatista1@gmail.com", + "date": "2015-05-17T21:20:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rich Trott ", + "authorEmail": "rtrott@gmail.com", + "date": "2015-05-17T02:33:13.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-05-20T09:29:08.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-05-19T08:22:37.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-05-19T11:00:06.000Z", + "fileChanged": "985", + "insertions": "2278", + "deletions": "1125", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-02-18T18:02:01.000Z", + "fileChanged": "4", + "insertions": "130", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-05-18T22:39:53.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Sharat M R ", + "authorEmail": "cosmosgenius@gmail.com", + "date": "2015-04-26T23:55:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-05-14T17:46:54.000Z", + "fileChanged": "10", + "insertions": "137", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Frederic Hemberger ", + "authorEmail": "mail@frederic-hemberger.de", + "date": "2015-05-16T06:04:36.000Z", + "fileChanged": "33", + "insertions": "1443", + "deletions": "1443", + "type": "Commit" + }, + { + "authorName": "smikes ", + "authorEmail": "smikes@cubane.com", + "date": "2015-05-14T23:43:35.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2015-05-17T17:25:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Josh Gummersall ", + "authorEmail": "gumby@moz.com", + "date": "2015-05-16T19:27:03.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2015-05-12T08:00:35.000Z", + "fileChanged": "3", + "insertions": "23", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-05-08T04:35:47.000Z", + "fileChanged": "2", + "insertions": "98", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-05-08T04:30:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-05-14T02:25:57.000Z", + "fileChanged": "16", + "insertions": "48", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-05-15T23:28:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-05-15T22:40:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-05-15T22:37:44.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-05-13T15:00:57.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-05-13T23:35:03.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "furukawa.yosuke@dena.jp", + "date": "2015-05-12T06:47:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-05-11T16:11:01.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "furukawa.yosuke@dena.jp", + "date": "2015-05-12T09:33:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-05-12T03:42:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-05-12T19:29:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-05-07T20:48:12.000Z", + "fileChanged": "2", + "insertions": "38", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-05-07T21:09:31.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Cheng Zhao ", + "authorEmail": "zcbenz@gmail.com", + "date": "2014-12-31T20:38:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-03-27T20:09:20.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-11T22:32:14.000Z", + "fileChanged": "22", + "insertions": "493", + "deletions": "496", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-05-08T18:56:13.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-05-11T12:24:38.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Mike MacCana ", + "authorEmail": "mike@certsimple.com", + "date": "2015-05-08T18:54:34.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-04-01T14:32:48.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2015-05-03T18:11:33.000Z", + "fileChanged": "4", + "insertions": "318", + "deletions": "119", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-04-15T20:58:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-04-28T17:46:14.000Z", + "fileChanged": "22", + "insertions": "45", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-04-28T17:03:05.000Z", + "fileChanged": "3018", + "insertions": "139139", + "deletions": "34510", + "type": "Commit" + }, + { + "authorName": "Oleg Elifantiev ", + "authorEmail": "oleg@elifantiev.ru", + "date": "2015-04-02T20:27:27.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Roman Klauke ", + "authorEmail": "romaaan.git@gmail.com", + "date": "2015-05-07T18:27:12.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-07T21:13:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-07T19:28:23.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-02T05:32:49.000Z", + "fileChanged": "1", + "insertions": "101", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "thefourtheye ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-05-05T17:23:56.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ivan Kozik ", + "authorEmail": "ivan@ludios.org", + "date": "2015-05-03T02:41:00.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "AQNOUCH Mohammed ", + "authorEmail": "aqnouch.mohammed@gmail.com", + "date": "2015-05-06T19:00:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2015-05-06T07:46:15.000Z", + "fileChanged": "75", + "insertions": "1761", + "deletions": "847", + "type": "Commit" + }, + { + "authorName": "thefourtheye ", + "authorEmail": "thechargingvolcano@gmail.com", + "date": "2015-05-06T14:36:30.000Z", + "fileChanged": "1", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-06T15:04:07.000Z", + "fileChanged": "15", + "insertions": "76", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-06T15:21:00.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-05-06T04:45:46.000Z", + "fileChanged": "2", + "insertions": "66", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-05T16:17:55.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-05-05T13:27:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-05-04T22:11:58.000Z", + "fileChanged": "1", + "deletions": "21", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-05-04T22:00:37.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-05-04T21:59:07.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-05-04T21:56:40.000Z", + "fileChanged": "3", + "insertions": "19", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-01T15:25:18.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-01T15:18:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-04T21:33:59.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-29T10:49:00.000Z", + "fileChanged": "2", + "insertions": "129", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-04T03:36:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-04T20:05:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-04T18:32:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-05-04T15:56:14.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-05-04T08:40:40.000Z", + "fileChanged": "3", + "insertions": "22", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-04T15:08:15.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-05-04T11:30:53.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Сковорода Никита Андреевич ", + "authorEmail": "chalkerx@gmail.com", + "date": "2015-05-01T21:59:05.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-02T05:37:17.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-03T22:05:44.000Z", + "fileChanged": "6", + "insertions": "529", + "deletions": "2786", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-03T22:05:43.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-05-03T22:05:36.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "61", + "type": "Commit" + }, + { + "authorName": "Petka Antonov ", + "authorEmail": "petka_antonov@hotmail.com", + "date": "2015-05-03T08:29:54.000Z", + "fileChanged": "2", + "insertions": "61", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Petka Antonov ", + "authorEmail": "petka_antonov@hotmail.com", + "date": "2015-05-02T13:51:22.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-05-02T15:32:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nick Raienko ", + "authorEmail": "enaqxx@gmail.com", + "date": "2015-04-22T11:58:04.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-05-02T21:47:17.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Alexander Gromnitsky ", + "authorEmail": "alexander.gromnitsky@gmail.com", + "date": "2015-05-02T03:58:40.000Z", + "fileChanged": "6", + "insertions": "14", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Petka Antonov ", + "authorEmail": "petka_antonov@hotmail.com", + "date": "2015-03-23T00:59:32.000Z", + "fileChanged": "6", + "insertions": "2786", + "deletions": "529", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-29T09:36:30.000Z", + "fileChanged": "1", + "insertions": "127", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-05-01T18:08:02.000Z", + "fileChanged": "5", + "insertions": "189", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-05-01T11:58:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-05-02T00:08:55.000Z" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-05-01T08:48:31.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-05-01T08:48:31.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-05-01T08:27:33.000Z", + "fileChanged": "346", + "insertions": "2201", + "deletions": "1216", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-04-28T16:30:58.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-04-18T08:19:23.000Z", + "fileChanged": "23", + "insertions": "438", + "deletions": "95", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-04-29T11:50:36.000Z", + "fileChanged": "4", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-04-30T17:53:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-04-23T07:35:53.000Z", + "fileChanged": "10", + "insertions": "394", + "deletions": "61", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-04-27T04:45:55.000Z", + "fileChanged": "1", + "insertions": "45", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Roman Klauke ", + "authorEmail": "romaaan.git@gmail.com", + "date": "2015-04-29T17:47:04.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-04-30T09:10:18.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-04-27T07:39:48.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-04-26T12:19:38.000Z", + "fileChanged": "4", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-04-26T12:27:46.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-04-26T12:26:57.000Z", + "fileChanged": "5", + "insertions": "58", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-04-29T18:04:59.000Z", + "fileChanged": "2", + "insertions": "81", + "deletions": "61", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-04-29T18:03:15.000Z", + "fileChanged": "5", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-04-29T17:57:41.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-04-29T17:08:19.000Z", + "fileChanged": "4", + "insertions": "111", + "deletions": "83", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-04-27T16:24:19.000Z", + "fileChanged": "2", + "insertions": "122", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-29T00:55:55.000Z", + "fileChanged": "4", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Julian Duque ", + "authorEmail": "julianduquej@gmail.com", + "date": "2015-04-28T20:15:41.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-27T11:05:40.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-04-25T00:19:24.000Z", + "fileChanged": "14", + "insertions": "185", + "deletions": "146", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-04-11T17:37:48.000Z", + "fileChanged": "8", + "insertions": "57", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-27T11:05:40.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-27T11:04:12.000Z", + "fileChanged": "990", + "insertions": "79055", + "deletions": "50555", + "type": "Commit" + }, + { + "authorName": "Christian Tellnes ", + "authorEmail": "christian@tellnes.no", + "date": "2015-02-06T22:27:22.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-22T05:02:37.000Z", + "fileChanged": "1", + "insertions": "87", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-04-20T06:04:55.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-04-28T14:53:06.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nick Raienko ", + "authorEmail": "enaqxx@gmail.com", + "date": "2015-04-27T15:04:11.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-28T05:01:20.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-04-26T13:52:10.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-26T10:59:45.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-04-15T20:58:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Christopher Monsanto ", + "authorEmail": "chris@monsan.to", + "date": "2015-04-20T00:29:59.000Z", + "fileChanged": "2", + "insertions": "172", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Julian Duque ", + "authorEmail": "julianduquej@gmail.com", + "date": "2015-04-25T13:38:55.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-22T04:52:43.000Z", + "fileChanged": "1", + "insertions": "184", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-04-24T13:47:40.000Z", + "fileChanged": "14", + "insertions": "914", + "deletions": "302", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-04-24T16:50:15.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-04-22T22:05:29.000Z", + "fileChanged": "3", + "insertions": "47", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-04-22T21:46:21.000Z", + "fileChanged": "3", + "insertions": "85", + "deletions": "54", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2015-04-16T03:29:02.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-04-23T15:22:38.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Chris Yip ", + "authorEmail": "i@chrisyip.im", + "date": "2015-04-21T07:13:27.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Guilherme Souza ", + "authorEmail": "sitegui@sitegui.com.br", + "date": "2015-04-21T21:24:13.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-04-23T00:46:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nick Raienko ", + "authorEmail": "enaqxx@gmail.com", + "date": "2015-04-22T11:27:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-20T08:55:04.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-04-21T03:25:08.000Z" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-04-20T23:02:06.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-04-18T04:33:30.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-04-18T04:27:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-20T08:48:51.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-04-18T20:26:15.000Z", + "fileChanged": "1", + "insertions": "45", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-04-18T20:22:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-04-18T18:11:52.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-04-17T21:53:22.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-04-17T21:52:50.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-04-17T21:31:49.000Z", + "fileChanged": "2", + "insertions": "87", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-04-17T19:04:46.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-03-25T04:00:12.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-04-17T08:12:21.000Z", + "fileChanged": "476", + "insertions": "12056", + "deletions": "9757", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-04-17T20:13:32.000Z", + "fileChanged": "1", + "deletions": "233", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-04-17T16:06:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "fengmk2 ", + "authorEmail": "fengmk2@gmail.com", + "date": "2015-03-23T11:33:13.000Z", + "fileChanged": "2", + "insertions": "54", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2015-04-16T17:14:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-10-16T04:40:52.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2014-10-02T16:00:40.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-04-07T14:30:28.000Z", + "fileChanged": "3", + "insertions": "36", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2015-04-16T15:31:34.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2015-04-16T05:44:17.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-04-14T06:37:20.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-03-05T21:07:27.000Z", + "fileChanged": "18", + "insertions": "202", + "deletions": "153", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-21T05:16:16.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-04-15T00:49:29.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-04-13T01:19:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-03-31T05:28:08.000Z", + "fileChanged": "2", + "insertions": "191", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-02-05T07:16:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-04-10T07:13:53.000Z", + "fileChanged": "1", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-04-10T04:58:31.000Z", + "fileChanged": "323", + "insertions": "450065", + "deletions": "47454", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-03-31T05:16:10.000Z", + "fileChanged": "5", + "insertions": "652", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-03-31T05:12:32.000Z", + "fileChanged": "1", + "insertions": "161", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-03-31T05:09:53.000Z", + "fileChanged": "2", + "insertions": "119", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-04-10T02:29:00.000Z", + "fileChanged": "13", + "insertions": "402", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-04-10T02:24:08.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-04-10T02:12:07.000Z", + "fileChanged": "76", + "insertions": "76", + "deletions": "328", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-02-17T02:30:28.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-01-27T10:03:29.000Z", + "fileChanged": "2", + "insertions": "113", + "deletions": "70", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-02-13T09:33:59.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-08T19:05:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-03-30T05:41:01.000Z", + "fileChanged": "678", + "insertions": "97139", + "deletions": "14133", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-14T13:26:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-14T12:57:23.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-14T12:22:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-14T12:12:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-14T12:07:18.000Z", + "fileChanged": "2", + "insertions": "55", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-04-03T04:33:34.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "49", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-04-13T12:27:19.000Z", + "fileChanged": "1", + "deletions": "18", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Dan Varga ", + "authorEmail": "dvarga@redhat.com", + "date": "2015-04-13T14:05:03.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-04-13T08:03:50.000Z", + "fileChanged": "4", + "deletions": "130", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-04-13T06:35:48.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-04-11T14:02:33.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-04-11T14:02:22.000Z", + "fileChanged": "5", + "insertions": "73", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-04-11T03:34:27.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-04-11T03:04:16.000Z", + "fileChanged": "2", + "insertions": "38", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Marat Abdullin ", + "authorEmail": "dakota@brokenpipe.ru", + "date": "2015-04-04T14:04:49.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-04-10T16:58:55.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Alex Yursha ", + "authorEmail": "alexyursha@gmail.com", + "date": "2015-04-10T07:58:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2015-04-10T09:30:32.000Z", + "fileChanged": "1", + "insertions": "54", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-03-25T04:00:12.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-04-10T12:56:01.000Z", + "fileChanged": "311", + "insertions": "9845", + "deletions": "11855", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2015-04-09T15:55:26.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-04-08T08:56:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-04-09T08:56:16.000Z", + "fileChanged": "12", + "insertions": "2976", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-04-09T08:49:27.000Z", + "fileChanged": "1", + "insertions": "86", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-04-09T08:46:08.000Z", + "fileChanged": "1", + "insertions": "115", + "deletions": "318", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-04-07T08:37:13.000Z", + "fileChanged": "8", + "insertions": "36", + "deletions": "102", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-04-09T14:56:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-04-07T18:41:07.000Z", + "fileChanged": "12", + "insertions": "34", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2015-04-08T08:14:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-04-09T09:39:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andrew Crites ", + "authorEmail": "acrites@mobiquityinc.com", + "date": "2015-04-09T06:49:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-08T11:28:22.000Z", + "fileChanged": "1", + "insertions": "92", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-08T11:30:45.000Z", + "fileChanged": "1", + "insertions": "107", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-04-08T11:35:06.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-04-08T09:10:12.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-04-07T12:22:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-04-06T20:52:39.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2015-04-07T05:48:52.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-04-02T23:13:43.000Z", + "fileChanged": "4", + "insertions": "16", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-04-06T14:17:44.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-04-06T14:09:03.000Z", + "fileChanged": "2", + "insertions": "78", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Oguz Bastemur ", + "authorEmail": "obastemur@gmail.com", + "date": "2015-04-06T07:14:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-04-06T01:26:58.000Z", + "fileChanged": "1432", + "deletions": "50955", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Giovanny Andres Gongora Granada ", + "authorEmail": "gioyik@gmail.com", + "date": "2015-04-05T16:49:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Peter Petrov ", + "authorEmail": "onestone@gmail.com", + "date": "2015-04-01T13:50:05.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Kelsey ", + "authorEmail": "ifoundthemeaningoflife@gmail.com", + "date": "2015-04-01T21:32:06.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Giovanny Andres Gongora Granada ", + "authorEmail": "gioyik@gmail.com", + "date": "2015-04-04T16:30:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeffrey Jagoda ", + "authorEmail": "jeffrey.jagoda@gmail.com", + "date": "2015-03-26T19:34:16.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-04-02T15:33:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-04-02T15:24:40.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-04-02T04:30:35.000Z", + "fileChanged": "10", + "insertions": "314", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-04-02T12:33:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-02-03T05:13:26.000Z", + "fileChanged": "4", + "insertions": "1160", + "deletions": "1093", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-02-10T00:27:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-13T16:51:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-03-30T05:33:17.000Z", + "fileChanged": "1472", + "insertions": "54753", + "deletions": "1426", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-03-25T04:00:12.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-04-03T08:52:11.000Z", + "fileChanged": "565", + "insertions": "32788", + "deletions": "1951", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-04-02T23:28:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-04-03T22:08:20.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-04-02T22:14:08.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-12-19T00:51:08.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-11-26T20:27:57.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-03-30T17:54:59.000Z", + "fileChanged": "4", + "insertions": "29", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Giovanny Andres Gongora Granada ", + "authorEmail": "gioyik@gmail.com", + "date": "2015-03-09T03:19:21.000Z", + "fileChanged": "4", + "insertions": "23", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Aria Stewart ", + "authorEmail": "aredridel@dinhe.net", + "date": "2015-04-02T21:17:55.000Z", + "fileChanged": "2", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-04-02T21:51:01.000Z", + "fileChanged": "5", + "insertions": "18", + "deletions": "257", + "type": "Commit" + }, + { + "authorName": "Kohei TAKATA ", + "authorEmail": "kt.koheitakata@gmail.com", + "date": "2015-04-03T11:18:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-04-03T03:04:14.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-03-25T06:26:21.000Z", + "fileChanged": "4", + "insertions": "156", + "deletions": "149", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-04-01T23:37:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-19T01:01:45.000Z", + "fileChanged": "35", + "insertions": "31194", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-04-01T20:26:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-11T07:45:20.000Z", + "fileChanged": "1", + "insertions": "164", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-03-31T00:17:25.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-03-28T03:04:49.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-03-30T18:34:24.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-31T11:45:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-31T11:36:59.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-03-25T04:00:12.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-03-27T10:56:05.000Z", + "fileChanged": "391", + "insertions": "19871", + "deletions": "4121", + "type": "Commit" + }, + { + "authorName": "Farrin Reid ", + "authorEmail": "blakmatrix@gmail.com", + "date": "2015-03-10T05:31:13.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "76", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-29T18:09:22.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-19T22:33:52.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-03-25T19:19:46.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-03-26T18:35:37.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-27T22:06:05.000Z", + "fileChanged": "6", + "insertions": "52", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-03-26T22:20:27.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Petka Antonov ", + "authorEmail": "petka_antonov@hotmail.com", + "date": "2015-03-27T18:43:25.000Z", + "fileChanged": "3", + "insertions": "17", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Phillip Lamplugh ", + "authorEmail": "phillip.lamplugh@gmail.com", + "date": "2015-03-27T17:16:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2015-03-27T02:28:24.000Z", + "fileChanged": "2", + "insertions": "73", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-03-26T19:01:17.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-27T00:07:07.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-26T22:56:26.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-03-26T19:03:11.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-03-26T03:53:35.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-03-26T15:52:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-03-21T16:39:35.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-25T03:21:32.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-24T03:07:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-02-14T19:53:34.000Z", + "fileChanged": "12", + "insertions": "91", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-03-25T05:44:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-03-19T21:31:34.000Z", + "fileChanged": "2", + "insertions": "128", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-03-25T04:00:12.000Z", + "fileChanged": "2", + "insertions": "44", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Olov Lassus ", + "authorEmail": "olov.lassus@gmail.com", + "date": "2015-03-05T00:03:34.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-03-24T21:53:31.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-03-24T21:06:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Mayhem ", + "authorEmail": "stepien.nicolas@gmail.com", + "date": "2015-03-24T14:15:57.000Z", + "fileChanged": "6", + "insertions": "11", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Alex Yursha ", + "authorEmail": "alexyursha@gmail.com", + "date": "2015-03-17T14:12:51.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-03-20T08:40:50.000Z", + "fileChanged": "163", + "insertions": "964", + "deletions": "1698", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-22T23:38:42.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-22T23:26:59.000Z", + "fileChanged": "8", + "insertions": "78", + "deletions": "60", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-23T05:28:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-23T05:26:28.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Connor Peet ", + "authorEmail": "connor@peet.io", + "date": "2015-03-23T00:45:16.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-03-21T01:31:48.000Z", + "fileChanged": "10", + "insertions": "126", + "deletions": "66", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-20T22:57:11.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-20T22:55:37.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-21T12:41:16.000Z", + "fileChanged": "4", + "insertions": "52", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-22T06:34:07.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Mathieu Darse ", + "authorEmail": "mattdarse@gmail.com", + "date": "2015-03-21T13:37:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-21T23:19:04.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-03-13T08:42:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-11T13:19:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-11T13:14:18.000Z", + "fileChanged": "1", + "insertions": "145", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-11T13:03:02.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-11T12:56:37.000Z", + "fileChanged": "1", + "deletions": "19", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-11T12:41:32.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-20T16:35:52.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-20T16:20:43.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-20T15:55:19.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-20T05:03:34.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-03-18T07:38:00.000Z", + "fileChanged": "5", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-20T02:24:09.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-20T02:19:18.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-03-20T01:33:04.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-03-19T22:51:55.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-03-20T00:55:31.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-03-19T22:15:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-19T21:57:11.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-19T12:35:47.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-03-19T18:28:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-03-19T18:12:05.000Z", + "fileChanged": "2", + "insertions": "89", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-03-19T14:04:41.000Z", + "fileChanged": "1143", + "insertions": "285018", + "deletions": "295831", + "type": "Commit" + }, + { + "authorName": "Aleksanteri Negru-Vode ", + "authorEmail": "aleksanteri.negru-vode@aalto.fi", + "date": "2015-03-19T13:21:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Thorsten Lorenz ", + "authorEmail": "thlorenz@gmx.de", + "date": "2015-03-13T19:24:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-02-17T22:37:37.000Z", + "fileChanged": "7", + "insertions": "194", + "deletions": "66", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-18T22:27:26.000Z", + "fileChanged": "6", + "insertions": "31", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-19T03:15:06.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-03-19T01:03:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-18T21:31:16.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-18T21:11:14.000Z", + "fileChanged": "3", + "insertions": "35", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-03-17T01:06:48.000Z", + "fileChanged": "7", + "insertions": "43", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-18T18:20:23.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-03-18T00:33:39.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-17T19:46:32.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Petka Antonov ", + "authorEmail": "petka_antonov@hotmail.com", + "date": "2015-03-17T19:53:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-03-17T18:24:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-03-17T17:52:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-17T15:36:36.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Alex Yursha ", + "authorEmail": "alexyursha@gmail.com", + "date": "2015-03-17T10:28:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-02-10T03:36:52.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-02-10T04:25:47.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-09T07:00:32.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-03-14T07:24:07.000Z", + "fileChanged": "3", + "insertions": "27", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-11-17T20:00:11.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "James Hartig ", + "authorEmail": "james.hartig@grooveshark.com", + "date": "2015-03-10T20:48:19.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Steven Vercruysse ", + "authorEmail": "stcruy@users.noreply.github.com", + "date": "2015-03-15T11:29:18.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-03-11T18:45:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-16T11:34:39.000Z", + "fileChanged": "4", + "insertions": "9", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-13T20:54:40.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-13T18:15:18.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-03-14T02:21:47.000Z", + "fileChanged": "3", + "insertions": "81", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Alex Yursha ", + "authorEmail": "alexyursha@gmail.com", + "date": "2015-02-26T21:47:35.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-02-19T14:53:04.000Z", + "fileChanged": "1", + "insertions": "90", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-03-13T09:07:27.000Z", + "fileChanged": "209", + "insertions": "6297", + "deletions": "681", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-14T05:41:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-14T04:40:48.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-03-13T21:57:11.000Z", + "fileChanged": "7", + "insertions": "65", + "deletions": "194", + "type": "Commit" + }, + { + "authorName": "FangDun Cai ", + "authorEmail": "cfddream@gmail.com", + "date": "2015-03-13T21:07:31.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ali Ijaz Sheikh ", + "authorEmail": "ofrobots@google.com", + "date": "2015-02-17T22:37:37.000Z", + "fileChanged": "7", + "insertions": "194", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-03-13T19:26:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-03-13T00:55:29.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-03-12T01:16:26.000Z", + "fileChanged": "10", + "insertions": "16", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-03-06T13:08:29.000Z", + "fileChanged": "2", + "insertions": "79", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-03-05T17:33:38.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Santiago Gimeno ", + "authorEmail": "santiago.gimeno@gmail.com", + "date": "2015-03-12T09:46:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-12T21:19:16.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-03-06T03:50:32.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-03-11T19:01:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-11T14:17:53.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-11T01:50:45.000Z", + "fileChanged": "3", + "insertions": "27", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "skenqbx ", + "authorEmail": "skenqbx@gmail.com", + "date": "2015-03-09T20:00:24.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-10T15:18:24.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-10T11:33:38.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "skenqbx ", + "authorEmail": "skenqbx@gmail.com", + "date": "2015-03-09T13:46:22.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryuichi Okumura ", + "authorEmail": "okuryu@okuryu.com", + "date": "2015-03-10T11:46:59.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-09T14:50:29.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-03-09T18:28:31.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-09T18:03:44.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-09T17:58:40.000Z", + "fileChanged": "3", + "insertions": "35", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rudi Cilibrasi ", + "authorEmail": "cilibrar@morefuntechnologies.com", + "date": "2014-12-30T06:40:08.000Z", + "fileChanged": "2", + "insertions": "149", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-09T00:30:01.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-06T19:58:24.000Z", + "fileChanged": "3", + "insertions": "27", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2015-03-08T06:26:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-03-08T20:19:56.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2015-03-08T01:11:37.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-07T21:42:02.000Z", + "fileChanged": "4", + "insertions": "72", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-07T16:41:22.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-03-07T22:41:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-07T18:08:41.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-07T17:24:27.000Z", + "fileChanged": "1", + "insertions": "61", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-03-07T18:37:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-07T03:51:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-06T05:25:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-06T22:04:22.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-06T21:59:02.000Z", + "fileChanged": "2", + "insertions": "106", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-03-06T08:57:32.000Z", + "fileChanged": "295", + "insertions": "2167", + "deletions": "971", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-06T01:27:58.000Z", + "fileChanged": "3", + "insertions": "7", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-06T01:26:12.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-05T23:26:01.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-03-05T22:12:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-03-02T03:29:31.000Z", + "fileChanged": "10", + "deletions": "5872", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Christian Tellnes ", + "authorEmail": "christian@tellnes.no", + "date": "2015-03-03T20:01:26.000Z", + "fileChanged": "6", + "insertions": "129", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-03T14:44:54.000Z", + "fileChanged": "3", + "insertions": "49", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-03T13:46:16.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-03T15:07:26.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-03T14:20:54.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-03T14:16:07.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-03T14:09:58.000Z", + "fileChanged": "4", + "insertions": "7", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-03T00:42:18.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-03T00:37:59.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Petka Antonov ", + "authorEmail": "petka_antonov@hotmail.com", + "date": "2015-03-03T20:25:47.000Z", + "fileChanged": "2", + "insertions": "159", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-26T20:54:09.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-26T20:34:03.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-03T20:55:59.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-04T00:09:33.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-03T23:50:30.000Z", + "fileChanged": "1", + "insertions": "140", + "deletions": "74", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-05T16:04:00.000Z", + "fileChanged": "4", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-23T16:23:53.000Z", + "fileChanged": "4", + "insertions": "97", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2014-11-14T00:55:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-03-05T02:11:06.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Jonathan Ong ", + "authorEmail": "jonathanrichardong@gmail.com", + "date": "2015-01-28T04:18:08.000Z", + "fileChanged": "2", + "insertions": "195", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ken Perkins ", + "authorEmail": "ken.perkins@rackspace.com", + "date": "2015-02-26T18:36:40.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-02-27T02:37:46.000Z", + "fileChanged": "3", + "insertions": "24", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-02-26T23:00:07.000Z", + "fileChanged": "236", + "insertions": "10", + "deletions": "120516", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-03-05T03:21:47.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-03-04T22:36:47.000Z", + "fileChanged": "2", + "insertions": "110", + "deletions": "90", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-03-04T01:11:21.000Z", + "fileChanged": "128", + "insertions": "751", + "deletions": "445", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-03-04T01:09:07.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-03-04T00:40:20.000Z", + "fileChanged": "2", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-03-04T00:36:07.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-03-04T00:35:56.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-01-22T23:44:13.000Z", + "fileChanged": "4", + "insertions": "222", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Christian Tellnes ", + "authorEmail": "christian@tellnes.no", + "date": "2015-03-03T03:41:07.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-04T06:29:53.000Z", + "fileChanged": "1", + "insertions": "129", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ruben Verborgh ", + "authorEmail": "ruben@verborgh.org", + "date": "2015-01-10T15:49:21.000Z", + "fileChanged": "1", + "insertions": "97", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-03-04T14:13:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-04T11:07:36.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-02-22T20:01:08.000Z", + "fileChanged": "3", + "insertions": "58", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-02-22T18:07:57.000Z", + "fileChanged": "2", + "insertions": "45", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-01-25T23:26:40.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-03T20:17:43.000Z", + "fileChanged": "2", + "insertions": "60", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-03-03T09:10:28.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-02-27T05:41:54.000Z", + "fileChanged": "2", + "insertions": "45", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2015-03-03T05:10:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-03-03T05:29:03.000Z", + "fileChanged": "1", + "insertions": "46", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Michael Dawson ", + "authorEmail": "michael_dawson@ca.ibm.com", + "date": "2015-02-23T19:13:20.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Robert Kowalski ", + "authorEmail": "rok@kowalski.gd", + "date": "2015-02-21T00:03:14.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "h7lin ", + "authorEmail": "i@h7lin.com", + "date": "2015-02-13T03:59:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-02-27T23:48:34.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-03T01:49:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-03T00:48:12.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-03T00:45:43.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-02T20:35:29.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-03-02T22:18:44.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-03-01T19:37:55.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Julian Duque ", + "authorEmail": "julianduquej@gmail.com", + "date": "2015-03-01T22:57:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "&! (bitandbang) ", + "authorEmail": "tieliaco@gmail.com", + "date": "2015-03-02T00:31:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Scheel ", + "authorEmail": "Ryan.havvy@gmail.com", + "date": "2015-02-25T11:24:45.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Benjamin Gruenbaum ", + "authorEmail": "inglor@gmail.com", + "date": "2015-02-28T20:30:03.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-02-28T21:46:43.000Z", + "fileChanged": "6", + "insertions": "19", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-28T21:16:32.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-28T21:12:58.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-02-28T18:14:07.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Russell Dempsey ", + "authorEmail": "sgtpooki@gmail.com", + "date": "2015-02-28T14:54:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-02-27T23:07:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Christian Tellnes ", + "authorEmail": "christian@tellnes.no", + "date": "2015-02-13T02:20:06.000Z", + "fileChanged": "3", + "insertions": "37", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-02-28T01:42:49.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-02-26T00:08:16.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Tim Oxley ", + "authorEmail": "secoif@gmail.com", + "date": "2015-02-28T00:00:13.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-02-25T00:15:26.000Z", + "fileChanged": "35", + "insertions": "42", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Robert Kowalski ", + "authorEmail": "rok@kowalski.gd", + "date": "2015-02-26T22:43:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-27T18:40:58.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-02-27T13:39:59.000Z", + "fileChanged": "136", + "insertions": "416", + "deletions": "190", + "type": "Commit" + }, + { + "authorName": "Benjamin Gruenbaum ", + "authorEmail": "inglor@gmail.com", + "date": "2015-02-26T21:57:45.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Pavel Medvedev ", + "authorEmail": "pmedvedev@gmail.com", + "date": "2015-02-27T07:00:43.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2015-02-21T00:07:35.000Z", + "fileChanged": "1", + "insertions": "101", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2015-02-26T22:48:07.000Z", + "fileChanged": "1", + "insertions": "92", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Christian Tellnes ", + "authorEmail": "christian@tellnes.no", + "date": "2015-02-26T20:04:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-02-26T20:04:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-26T19:40:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-25T19:18:53.000Z", + "fileChanged": "2", + "insertions": "68", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-02-26T05:31:42.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Tim Oxley ", + "authorEmail": "secoif@gmail.com", + "date": "2015-02-26T12:15:40.000Z", + "fileChanged": "1", + "insertions": "209", + "deletions": "204", + "type": "Commit" + }, + { + "authorName": "silverwind ", + "authorEmail": "me@silverwind.io", + "date": "2015-02-26T14:36:41.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-26T10:27:18.000Z", + "fileChanged": "4", + "insertions": "12", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-02-25T22:59:29.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-02-22T22:54:25.000Z", + "fileChanged": "6", + "insertions": "154", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-02-25T00:11:11.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-02-25T17:43:14.000Z", + "fileChanged": "7", + "insertions": "100", + "deletions": "70", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-25T11:18:50.000Z", + "fileChanged": "7", + "insertions": "46", + "deletions": "148", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-02-03T13:59:19.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-25T10:41:56.000Z", + "fileChanged": "22", + "insertions": "368", + "deletions": "87", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-24T20:03:00.000Z", + "fileChanged": "22", + "insertions": "313", + "deletions": "140", + "type": "Commit" + }, + { + "authorName": "Benjamin Gruenbaum ", + "authorEmail": "inglor@gmail.com", + "date": "2015-02-25T00:44:10.000Z", + "fileChanged": "1", + "insertions": "62", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Scheel ", + "authorEmail": "Ryan.havvy@gmail.com", + "date": "2015-02-25T11:00:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-25T09:40:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2015-02-13T21:41:00.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Petka Antonov ", + "authorEmail": "petka_antonov@hotmail.com", + "date": "2015-02-22T12:44:12.000Z", + "fileChanged": "4", + "insertions": "720", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Petka Antonov ", + "authorEmail": "petka_antonov@hotmail.com", + "date": "2015-02-23T20:22:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-02-23T00:30:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-02-23T20:09:44.000Z", + "fileChanged": "15", + "insertions": "498", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-24T18:17:53.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-02-24T06:20:44.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-23T22:32:18.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-22T06:50:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-02-12T20:09:34.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-02-16T20:05:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-02-22T02:47:04.000Z", + "fileChanged": "50", + "insertions": "50", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-02-22T18:59:07.000Z", + "fileChanged": "21", + "insertions": "1406", + "deletions": "1060", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-15T00:39:30.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-13T22:22:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-02-20T17:03:34.000Z", + "fileChanged": "236", + "insertions": "1525", + "deletions": "440", + "type": "Commit" + }, + { + "authorName": "René Kooi ", + "authorEmail": "rene@kooi.me", + "date": "2015-02-21T19:10:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-18T17:55:13.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bruno Jouhier ", + "authorEmail": "bjouhier@gmail.com", + "date": "2015-02-07T18:27:20.000Z", + "fileChanged": "3", + "insertions": "28", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Shinnosuke Watanabe ", + "authorEmail": "snnskwtnb@gmail.com", + "date": "2015-02-21T06:51:38.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-01-03T04:14:25.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-02-20T17:32:29.000Z", + "fileChanged": "5", + "insertions": "137", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-02-20T13:23:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-20T09:31:58.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-20T09:29:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-20T09:25:12.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-20T01:37:11.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-18T13:20:20.000Z", + "fileChanged": "1", + "insertions": "107", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Emily Rose ", + "authorEmail": "nexxy@symphonysubconscious.com", + "date": "2015-02-19T22:27:53.000Z", + "fileChanged": "1", + "deletions": "11", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-02-19T13:14:36.000Z", + "fileChanged": "3", + "insertions": "52", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-19T04:10:15.000Z", + "fileChanged": "3", + "insertions": "10", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-02-18T16:55:11.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-18T02:43:29.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-17T21:53:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-17T18:35:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "jigsaw ", + "authorEmail": "jigsaw@live.jp", + "date": "2015-02-17T15:10:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-02-16T21:09:50.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-02-15T17:43:36.000Z", + "fileChanged": "4", + "insertions": "40", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-12T01:39:40.000Z", + "fileChanged": "4", + "insertions": "13", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Jimmy Hsu ", + "authorEmail": "jimmyhsu@users.noreply.github.com", + "date": "2015-02-15T00:52:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-02-15T17:35:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-02-15T04:26:50.000Z", + "fileChanged": "2", + "insertions": "78", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-02-13T21:39:24.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Charmander ", + "authorEmail": "~@charmander.me", + "date": "2015-02-13T21:25:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Wyatt Preul ", + "authorEmail": "wpreul@gmail.com", + "date": "2015-02-13T18:49:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Amir Saboury ", + "authorEmail": "amir.s@acm.org", + "date": "2015-01-10T03:01:32.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-09-24T03:08:35.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Debjeet Biswas ", + "authorEmail": "debjeet@leftshift.io", + "date": "2015-02-08T22:45:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jan Schär ", + "authorEmail": "jscissr@gmail.com", + "date": "2015-02-09T15:51:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dan Dascalescu ", + "authorEmail": "ddascalescu+github@gmail.com", + "date": "2015-02-12T07:25:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2015-02-12T13:50:47.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Andrei Sedoi ", + "authorEmail": "bsnote@gmail.com", + "date": "2015-01-09T17:55:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-12-16T22:17:28.000Z", + "fileChanged": "4", + "insertions": "44", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Omer Wazir ", + "authorEmail": "omer.wazir@gmail.com", + "date": "2015-02-12T06:13:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-02-12T08:19:25.000Z", + "fileChanged": "8", + "insertions": "1180", + "deletions": "1107", + "type": "Commit" + }, + { + "authorName": "Omer Wazir ", + "authorEmail": "omer.wazir@gmail.com", + "date": "2015-02-12T17:30:18.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremiah Senkpiel ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-02-12T15:55:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-02-12T09:48:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Omer Wazir ", + "authorEmail": "omer.wazir@gmail.com", + "date": "2015-02-12T05:51:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-30T14:15:56.000Z", + "fileChanged": "3", + "insertions": "16", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-30T11:55:25.000Z", + "fileChanged": "2", + "deletions": "93", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-30T11:54:53.000Z", + "fileChanged": "25", + "insertions": "171", + "deletions": "181", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-30T11:54:28.000Z", + "fileChanged": "2", + "insertions": "165", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-02-11T22:00:12.000Z", + "fileChanged": "1", + "insertions": "69", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-02-10T18:12:09.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-02-09T14:19:56.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-02-06T17:48:14.000Z", + "fileChanged": "4", + "insertions": "11", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Seys ", + "authorEmail": "ryan@ryanseys.com", + "date": "2015-02-11T13:56:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2015-02-11T01:14:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-02-11T15:57:31.000Z", + "fileChanged": "1", + "deletions": "52", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-02-11T15:56:18.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-02-11T14:35:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Rudolf Meijering ", + "authorEmail": "skaapgif@gmail.com", + "date": "2015-02-11T15:37:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-02-11T13:17:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-02-11T03:33:58.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-11T02:50:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-11T01:41:07.000Z", + "fileChanged": "2", + "insertions": "88", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-02-10T20:48:55.000Z", + "fileChanged": "3", + "insertions": "472", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-04T07:42:42.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-02-10T15:27:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-02-03T19:07:02.000Z", + "fileChanged": "1", + "insertions": "137", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2015-02-09T20:16:26.000Z", + "fileChanged": "11", + "insertions": "128", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Glen Keane ", + "authorEmail": "glenkeane.94@gmail.com", + "date": "2015-01-22T12:35:16.000Z", + "fileChanged": "14", + "insertions": "602", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-02-05T20:35:33.000Z", + "fileChanged": "2", + "insertions": "192", + "deletions": "98", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-02-09T04:56:38.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Haoliang Gao ", + "authorEmail": "sakura9515@gmail.com", + "date": "2015-02-09T08:21:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Haoliang Gao ", + "authorEmail": "sakura9515@gmail.com", + "date": "2015-02-09T09:13:28.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-01-28T16:48:56.000Z", + "fileChanged": "3", + "insertions": "155", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-02-08T10:17:32.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-07T11:08:39.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-07T10:25:13.000Z", + "fileChanged": "30", + "insertions": "208", + "deletions": "207", + "type": "Commit" + }, + { + "authorName": "Michaël Zasso ", + "authorEmail": "mic.besace@gmail.com", + "date": "2015-02-07T11:40:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-02-06T13:06:07.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-06T20:40:53.000Z", + "fileChanged": "5", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-02-06T20:43:50.000Z", + "fileChanged": "3", + "insertions": "148", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-02-06T15:54:29.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-02-05T20:26:28.000Z", + "fileChanged": "5", + "insertions": "98", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Aleksey Smolenchuk ", + "authorEmail": "aleksey@uber.com", + "date": "2015-02-06T18:13:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-15T00:39:30.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-13T22:22:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-02-06T09:14:25.000Z", + "fileChanged": "463", + "insertions": "17649", + "deletions": "18944", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-06T15:32:35.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-01-28T15:27:20.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-02-05T23:52:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-02-05T22:52:33.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-02-05T22:54:12.000Z", + "fileChanged": "4", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Calvin Metcalf ", + "authorEmail": "calvin.metcalf@gmail.com", + "date": "2015-02-05T12:52:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Zach Bruggeman ", + "authorEmail": "mail@bruggie.com", + "date": "2015-02-05T03:03:18.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-02-04T21:01:11.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Newman ", + "authorEmail": "newmansam@outlook.com", + "date": "2015-02-03T01:12:41.000Z", + "fileChanged": "7", + "insertions": "175", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-02-04T16:11:48.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-29T17:48:30.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-02-04T08:24:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2015-01-31T00:04:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-01-30T21:47:27.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2015-01-30T18:58:44.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2015-01-24T22:11:06.000Z", + "fileChanged": "1", + "insertions": "296", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-02-03T23:16:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-02-03T04:28:49.000Z", + "fileChanged": "1", + "insertions": "179", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-02-03T22:19:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-02-03T22:13:21.000Z", + "fileChanged": "2", + "insertions": "101", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-31T10:55:37.000Z", + "fileChanged": "10", + "insertions": "456", + "deletions": "151", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-02-03T13:59:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-02-03T13:59:35.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-02-03T13:59:19.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Glen Keane ", + "authorEmail": "glenkeane.94@gmail.com", + "date": "2015-02-03T09:46:34.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Jonathan Ong ", + "authorEmail": "jonathanrichardong@gmail.com", + "date": "2015-01-28T04:08:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-01-30T02:15:57.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Calvin Metcalf ", + "authorEmail": "cmetcalf@appgeo.com", + "date": "2015-01-27T19:58:22.000Z", + "fileChanged": "3", + "insertions": "46", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-12-30T02:00:02.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2015-02-02T03:57:31.000Z", + "fileChanged": "4", + "insertions": "68", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Glen Keane ", + "authorEmail": "glenkeane.94@gmail.com", + "date": "2015-02-02T18:57:17.000Z", + "fileChanged": "6", + "deletions": "82", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-01-26T17:55:19.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-01-26T17:28:18.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-01-29T01:05:53.000Z", + "fileChanged": "37", + "insertions": "451", + "deletions": "445", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-15T00:39:30.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-13T22:22:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-01-30T11:12:07.000Z", + "fileChanged": "202", + "insertions": "4155", + "deletions": "215", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-01-30T15:25:32.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-31T10:48:34.000Z", + "fileChanged": "8", + "insertions": "92", + "deletions": "79", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-29T19:57:54.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2015-01-10T03:25:07.000Z", + "fileChanged": "3", + "insertions": "106", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-01-29T06:14:57.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-30T18:43:31.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-30T12:12:48.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-30T12:35:11.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-30T12:05:28.000Z", + "fileChanged": "2", + "insertions": "66", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Calvin Metcalf ", + "authorEmail": "cmetcalf@appgeo.com", + "date": "2015-01-29T21:05:41.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Qasim Zaidi ", + "authorEmail": "qasim@zaidi.me", + "date": "2015-01-17T09:03:36.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-29T02:30:09.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Micleusanu Nicu ", + "authorEmail": "micnic90@gmail.com", + "date": "2015-01-29T06:15:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fishrock123 ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-01-27T23:28:41.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2015-01-28T21:14:19.000Z", + "fileChanged": "46", + "insertions": "589", + "deletions": "322", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-01-28T16:46:19.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-26T23:07:34.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-26T22:26:33.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-26T22:15:20.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-27T22:02:40.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-27T21:54:05.000Z", + "fileChanged": "12", + "insertions": "265", + "deletions": "656", + "type": "Commit" + }, + { + "authorName": "Calvin Metcalf ", + "authorEmail": "cmetcalf@appgeo.com", + "date": "2015-01-26T20:39:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2014-12-23T18:03:54.000Z", + "fileChanged": "4", + "insertions": "230", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-01-23T01:16:36.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-27T19:58:14.000Z", + "fileChanged": "5", + "insertions": "51", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2015-01-27T12:40:40.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-01-23T23:56:04.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2014-12-23T23:54:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Mathias Küsel ", + "authorEmail": "mathiask@hotmail.de", + "date": "2015-01-27T15:01:23.000Z", + "fileChanged": "7", + "insertions": "258", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-01-13T03:24:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-12-04T05:37:36.000Z", + "fileChanged": "1", + "insertions": "66", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2014-08-14T20:29:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Michael Hart ", + "authorEmail": "michael.hart.au@gmail.com", + "date": "2015-01-16T19:04:55.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Aleksey Smolenchuk ", + "authorEmail": "aleksey@uber.com", + "date": "2015-01-26T21:13:28.000Z", + "fileChanged": "1", + "deletions": "21", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Andres Suarez ", + "authorEmail": "zertosh@gmail.com", + "date": "2015-01-19T02:24:11.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Johnny Ray Austin ", + "authorEmail": "johnny@johnnyray.me", + "date": "2015-01-19T01:48:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "ttrfwork ", + "authorEmail": "anton.kazmerchuk@gmail.com", + "date": "2015-01-26T07:32:11.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-24T00:06:07.000Z", + "fileChanged": "5", + "insertions": "28", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-01-26T23:08:44.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-01-23T22:18:55.000Z", + "fileChanged": "3", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-25T18:23:45.000Z", + "fileChanged": "4", + "insertions": "53", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nikolai Vavilov ", + "authorEmail": "vvnicholas@gmail.com", + "date": "2015-01-24T21:38:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-01-19T15:48:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jonathan Ong ", + "authorEmail": "jonathanong@users.noreply.github.com", + "date": "2015-01-24T18:41:24.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-01-24T18:29:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-24T11:40:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-24T11:33:10.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andres Suarez ", + "authorEmail": "zertosh@gmail.com", + "date": "2015-01-23T04:56:16.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-23T23:00:56.000Z", + "fileChanged": "1", + "deletions": "13", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-23T23:00:12.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "brendan.ashworth@me.com", + "date": "2015-01-24T02:25:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-01-23T23:01:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "squirrelslikeacorns@gmail.com", + "date": "2015-01-23T03:30:05.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Fishrock123 ", + "authorEmail": "fishrock123@rocketmail.com", + "date": "2015-01-23T22:40:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Stephen Belanger ", + "authorEmail": "admin@stephenbelanger.com", + "date": "2015-01-23T22:12:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-15T00:39:30.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-13T22:22:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-01-23T14:56:30.000Z", + "fileChanged": "163", + "insertions": "1197", + "deletions": "483", + "type": "Commit" + }, + { + "authorName": "Thorsten Lorenz ", + "authorEmail": "thlorenz@gmx.de", + "date": "2015-01-23T21:47:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-01-21T12:38:44.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-23T16:31:48.000Z", + "fileChanged": "1", + "deletions": "55", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-23T16:14:36.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-23T16:11:14.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-01-23T14:09:42.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-01-23T01:46:43.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Icer Liang ", + "authorEmail": "wizicer@users.noreply.github.com", + "date": "2015-01-22T07:10:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Todd Kennedy ", + "authorEmail": "toddself@users.noreply.github.com", + "date": "2015-01-21T19:32:37.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-16T18:36:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-22T04:45:13.000Z", + "fileChanged": "1", + "insertions": "166", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Calvin Metcalf ", + "authorEmail": "cmetcalf@appgeo.com", + "date": "2015-01-22T02:30:27.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-22T20:52:33.000Z", + "fileChanged": "1", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-22T20:51:38.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-22T20:50:35.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Calvin Metcalf ", + "authorEmail": "cmetcalf@appgeo.com", + "date": "2015-01-21T21:34:38.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-21T12:10:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-22T11:50:38.000Z", + "fileChanged": "7", + "insertions": "12", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-19T10:31:54.000Z", + "fileChanged": "1", + "insertions": "101", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-22T01:16:38.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2015-01-19T10:12:16.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-01-21T16:36:59.000Z", + "fileChanged": "48", + "insertions": "403", + "deletions": "416", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-21T00:55:19.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-01-16T16:15:17.000Z", + "fileChanged": "4", + "insertions": "73", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-01-19T19:12:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-01-20T23:23:37.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Cheng Zhao ", + "authorEmail": "zcbenz@gmail.com", + "date": "2015-01-12T21:31:25.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-20T22:57:09.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-20T22:55:35.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-20T22:54:03.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-20T18:30:50.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-20T18:24:36.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-20T18:19:24.000Z", + "fileChanged": "7", + "deletions": "125", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-01-20T04:01:42.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-20T01:36:53.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-20T01:35:12.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "toastynerd ", + "authorEmail": "tylermorgan86@gmail.com", + "date": "2015-01-19T18:17:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-01-19T21:50:43.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-01-19T18:02:18.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-19T16:25:23.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-19T15:53:56.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2015-01-15T23:14:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-19T00:14:02.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2015-01-15T23:19:32.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-18T23:57:39.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-18T23:51:27.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-01-16T22:29:01.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Xiaowei Li ", + "authorEmail": "446240525@qq.com", + "date": "2015-01-19T05:42:05.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-01-19T04:48:43.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Glen Keane ", + "authorEmail": "glenkeane.94@gmail.com", + "date": "2015-01-15T14:42:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Roman Reiss ", + "authorEmail": "me@silverwind.io", + "date": "2015-01-18T17:48:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jay Jaeho Lee ", + "authorEmail": "sairion@gmail.com", + "date": "2015-01-18T18:08:47.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Thomas Jensen ", + "authorEmail": "thomas@src.agency", + "date": "2015-01-18T18:24:26.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-01-18T16:16:05.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-17T19:12:29.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-15T00:39:30.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-13T22:22:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-01-17T08:50:09.000Z", + "fileChanged": "194", + "insertions": "1106", + "deletions": "1184", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-17T22:52:52.000Z", + "fileChanged": "1", + "deletions": "8", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-13T15:54:17.000Z", + "fileChanged": "5", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-17T22:02:56.000Z", + "fileChanged": "57", + "insertions": "962", + "deletions": "386", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-01-17T15:33:07.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brenard Cubacub ", + "authorEmail": "bcbcb@users.noreply.github.com", + "date": "2015-01-17T06:07:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-16T11:56:30.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-15T21:36:38.000Z", + "fileChanged": "1", + "insertions": "50", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jongyeol Choi ", + "authorEmail": "jongyeol.choi@gmail.com", + "date": "2015-01-16T14:45:37.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-01-16T05:41:28.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-01-16T05:40:30.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-01-16T05:37:52.000Z", + "fileChanged": "20", + "insertions": "4122", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-16T04:03:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-16T04:00:22.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-13T23:53:26.000Z", + "fileChanged": "10", + "insertions": "31", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-16T02:00:30.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2015-01-16T00:37:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tomtheengineer@gmail.com", + "date": "2015-01-13T04:31:44.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-01-15T17:55:29.000Z", + "fileChanged": "7", + "insertions": "91", + "deletions": "91", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-01-15T17:53:46.000Z", + "fileChanged": "166", + "insertions": "29049", + "deletions": "3968", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-01-09T11:51:39.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-15T18:49:13.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Phil Hughes ", + "authorEmail": "me@iamphill.com", + "date": "2015-01-14T16:29:52.000Z", + "fileChanged": "6", + "insertions": "557", + "deletions": "561", + "type": "Commit" + }, + { + "authorName": "Aaron Bieber ", + "authorEmail": "deftly@gmail.com", + "date": "2015-01-14T21:40:53.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michal Tehnik ", + "authorEmail": "michal.tehnik@mictech.cz", + "date": "2015-01-15T12:58:31.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-01-14T07:39:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-14T23:42:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-14T23:41:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-15T00:39:30.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2015-01-14T19:26:02.000Z", + "fileChanged": "23", + "insertions": "163", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2015-01-14T10:18:37.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-14T13:00:26.000Z", + "fileChanged": "12", + "insertions": "605", + "deletions": "265", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-14T20:23:13.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Mathias Buus ", + "authorEmail": "mathiasbuus@gmail.com", + "date": "2015-01-14T17:42:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-14T01:58:44.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-01-14T16:46:28.000Z", + "fileChanged": "6", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Chris Alley ", + "authorEmail": "chris@chrisalley.info", + "date": "2015-01-14T08:40:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2015-01-14T08:00:59.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-14T05:15:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jesse cogollo ", + "authorEmail": "cogollo87@gmail.com", + "date": "2015-01-14T04:44:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-14T04:31:29.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-14T04:20:52.000Z" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-14T04:15:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rui Marinho ", + "authorEmail": "rpm@seegno.com", + "date": "2015-01-14T03:07:11.000Z", + "fileChanged": "1", + "insertions": "273", + "deletions": "273", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-14T03:43:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-14T03:07:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2015-01-14T02:36:13.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rui Marinho ", + "authorEmail": "rpm@seegno.com", + "date": "2015-01-14T02:26:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-14T02:16:16.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-14T02:21:20.000Z", + "fileChanged": "3", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Domenic Denicola ", + "authorEmail": "d@domenic.me", + "date": "2015-01-14T02:12:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-14T02:00:34.000Z", + "fileChanged": "1", + "insertions": "0", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-14T01:56:51.000Z", + "fileChanged": "3", + "insertions": "0", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Tiago Ribeiro ", + "authorEmail": "tiago.ribeiro@gmail.com", + "date": "2015-01-14T01:48:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-01-14T01:30:20.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-14T01:22:04.000Z", + "fileChanged": "2", + "insertions": "4237", + "deletions": "3947", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-14T01:21:05.000Z", + "fileChanged": "2", + "insertions": "3947", + "deletions": "5675", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-14T01:34:19.000Z", + "fileChanged": "12", + "insertions": "264", + "deletions": "601", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2015-01-14T01:19:26.000Z", + "fileChanged": "1", + "insertions": "174", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2014-10-01T20:40:32.000Z", + "fileChanged": "1", + "insertions": "55", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-14T00:11:51.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-01-14T00:12:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-13T23:57:45.000Z", + "fileChanged": "12", + "insertions": "601", + "deletions": "264", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-13T22:22:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-13T21:39:45.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-11T23:59:30.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-13T13:35:08.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-13T13:28:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-13T13:23:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-13T13:16:15.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-13T15:54:17.000Z", + "fileChanged": "5", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Yosuke Furukawa ", + "authorEmail": "yosuke.furukawa@gmail.com", + "date": "2015-01-13T15:10:44.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-13T11:31:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-01-13T02:52:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2015-01-13T01:51:34.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-12T22:40:51.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2015-01-13T02:21:29.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2015-01-10T20:36:16.000Z", + "fileChanged": "3", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Wyatt Preul ", + "authorEmail": "wpreul@gmail.com", + "date": "2015-01-13T00:41:07.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-13T01:32:09.000Z", + "fileChanged": "4", + "insertions": "220", + "deletions": "189", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2015-01-13T01:21:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-12T23:45:31.000Z", + "fileChanged": "5", + "insertions": "99", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-13T00:04:59.000Z", + "fileChanged": "5", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2015-01-12T19:59:19.000Z", + "fileChanged": "1105", + "deletions": "23547", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Vladimir Guguiev ", + "authorEmail": "wizardzloy@gmail.com", + "date": "2014-12-10T23:06:01.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-11T05:49:45.000Z", + "fileChanged": "6", + "insertions": "43", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-12T22:10:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Steven Rockarts ", + "authorEmail": "srockarts@invidi.com", + "date": "2015-01-12T22:06:06.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-12T21:01:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-01-12T05:40:45.000Z", + "fileChanged": "7", + "insertions": "325", + "deletions": "386", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-01-12T14:24:30.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-01-12T16:13:18.000Z", + "fileChanged": "2", + "insertions": "39", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-11T15:33:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-11T13:08:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-08T19:05:43.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-11T17:19:04.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-11T13:08:14.000Z", + "fileChanged": "116", + "insertions": "1987", + "deletions": "5373", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-12T13:14:23.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "69", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-12T13:12:50.000Z", + "fileChanged": "2", + "insertions": "104", + "deletions": "104", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-12T13:07:55.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-12T10:58:17.000Z", + "fileChanged": "1", + "deletions": "63", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-07T23:06:31.000Z", + "fileChanged": "1", + "insertions": "154", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-02T11:52:50.000Z", + "fileChanged": "4", + "insertions": "523", + "deletions": "426", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-12T10:13:49.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "100", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-01-12T06:13:17.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-12T04:49:55.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Cydox ", + "authorEmail": "farr.janhendrik@aol.de", + "date": "2015-01-10T22:32:40.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evanlucas@me.com", + "date": "2015-01-11T20:33:08.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-11T00:53:20.000Z", + "fileChanged": "6", + "insertions": "17", + "deletions": "90", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-11T06:29:36.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-11T02:15:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-10T17:06:34.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-11T00:49:33.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-01-10T20:12:37.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-11-06T19:03:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-12-15T23:36:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2015-01-10T20:35:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-11-18T20:56:28.000Z", + "fileChanged": "1", + "insertions": "79", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-11-14T18:58:54.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2015-01-10T20:41:12.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2015-01-10T20:20:13.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "James M Snell ", + "authorEmail": "jasnell@gmail.com", + "date": "2014-12-19T17:53:20.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "pkcs ", + "authorEmail": "pkcs@gmx.com", + "date": "2014-11-23T23:54:21.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2015-01-10T20:40:02.000Z", + "fileChanged": "1", + "insertions": "66", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-10-27T18:03:13.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Eric Mill ", + "authorEmail": "eric@konklone.com", + "date": "2014-11-07T15:05:00.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Calvin Metcalf ", + "authorEmail": "calvin.metcalf@state.ma.us", + "date": "2014-10-19T14:31:22.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Calvin Metcalf ", + "authorEmail": "cmetcalf@appgeo.com", + "date": "2014-09-03T13:01:15.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-10T20:37:51.000Z", + "fileChanged": "1", + "insertions": "54", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-10T03:10:03.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "101", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2015-01-10T03:25:07.000Z", + "fileChanged": "2", + "insertions": "101", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2015-01-10T02:23:06.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2015-01-10T03:40:40.000Z", + "fileChanged": "3", + "insertions": "92", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-10T01:37:22.000Z", + "fileChanged": "1", + "deletions": "21", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-10T01:36:17.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-09T16:14:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-01-09T22:15:29.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-09T16:03:21.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-09T01:39:46.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2015-01-06T21:15:09.000Z", + "fileChanged": "5", + "insertions": "8", + "deletions": "282", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-01-09T12:38:09.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Caitlin Potter ", + "authorEmail": "caitpotter88@gmail.com", + "date": "2015-01-09T16:38:28.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2014-12-03T05:07:14.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2014-12-01T05:18:53.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2014-12-02T23:28:24.000Z", + "fileChanged": "210", + "insertions": "46457", + "deletions": "3791", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "ogd@aoaioxxysz.net", + "date": "2015-01-08T22:37:26.000Z", + "fileChanged": "711", + "insertions": "31529", + "deletions": "9865", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-08T15:18:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-08T15:17:52.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-08T15:10:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-08T15:06:11.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-08T15:20:50.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-08T15:19:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-08T15:22:37.000Z", + "fileChanged": "1", + "deletions": "14", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-08T13:21:26.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-08T13:00:43.000Z", + "fileChanged": "6", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-08T12:37:32.000Z", + "fileChanged": "2", + "deletions": "13", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-08T12:54:45.000Z", + "fileChanged": "1", + "insertions": "367", + "deletions": "81", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-02T16:09:45.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-02T16:07:43.000Z", + "fileChanged": "4", + "insertions": "451", + "deletions": "451", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-02T16:03:03.000Z", + "fileChanged": "1", + "deletions": "15", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-02T16:00:27.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Colin Ihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-01-08T19:42:41.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evan@btc.com", + "date": "2015-01-08T19:14:44.000Z", + "fileChanged": "3", + "insertions": "71", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evan@btc.com", + "date": "2015-01-08T19:13:56.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evan@btc.com", + "date": "2015-01-08T00:03:24.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-08T04:22:09.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-08T12:05:51.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-08T11:58:42.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-08T11:47:00.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-08T11:43:51.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-08T12:43:22.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-08T10:46:21.000Z", + "fileChanged": "2", + "insertions": "246", + "deletions": "246", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-08T10:42:34.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-08T10:23:59.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2015-01-08T10:19:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2015-01-07T21:54:25.000Z", + "fileChanged": "4", + "insertions": "26", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Cheng Zhao ", + "authorEmail": "zcbenz@gmail.com", + "date": "2014-12-31T20:38:08.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-01-07T22:13:35.000Z", + "fileChanged": "15", + "insertions": "94", + "deletions": "90", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-01-07T21:29:58.000Z", + "fileChanged": "14", + "insertions": "57", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-07T18:16:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-07T18:07:18.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-07T18:05:33.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-07T17:38:38.000Z", + "fileChanged": "831", + "insertions": "104394", + "deletions": "21427", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-02T05:16:21.000Z", + "fileChanged": "3", + "insertions": "170", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-29T16:35:51.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-05T19:44:25.000Z", + "fileChanged": "64", + "insertions": "1313", + "deletions": "716", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2015-01-05T15:43:58.000Z" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2015-01-05T10:20:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2015-01-03T23:26:26.000Z", + "fileChanged": "3", + "insertions": "65", + "deletions": "81", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2015-01-03T01:16:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2015-01-02T03:14:51.000Z", + "fileChanged": "1", + "insertions": "95", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2014-11-13T01:13:14.000Z", + "fileChanged": "10", + "insertions": "616", + "deletions": "59", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-12-17T20:48:49.000Z", + "fileChanged": "1", + "insertions": "91", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-21T01:06:19.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Aleksey Smolenchuk ", + "authorEmail": "aleksey@uber.com", + "date": "2014-12-30T22:25:52.000Z", + "fileChanged": "3", + "insertions": "52", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "CGavrila ", + "authorEmail": "cristi_gavrila1@yahoo.com", + "date": "2014-10-28T12:08:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-12-30T06:10:36.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-12-30T05:30:03.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-12-30T05:20:54.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tim Ruffles ", + "authorEmail": "oi@truffles.me.uk", + "date": "2014-12-26T10:41:30.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "squirrelslikeacorns@gmail.com", + "date": "2014-12-29T20:12:30.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "squirrelslikeacorns@gmail.com", + "date": "2014-12-29T20:03:24.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nikolai Vavilov ", + "authorEmail": "vvnicholas@gmail.com", + "date": "2014-12-23T19:15:46.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Rudi Cilibrasi ", + "authorEmail": "cilibrar@morefuntechnologies.com", + "date": "2014-12-23T16:08:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Mark Stosberg ", + "authorEmail": "mark@rideamigos.com", + "date": "2014-12-22T20:40:27.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Mark Stosberg ", + "authorEmail": "mark@rideamigos.com", + "date": "2014-12-23T16:07:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "teppeis ", + "authorEmail": "teppeis@gmail.com", + "date": "2014-12-21T15:56:33.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Nikolai Vavilov ", + "authorEmail": "vvnicholas@gmail.com", + "date": "2014-12-20T14:39:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-19T22:46:37.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-19T22:44:19.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-19T23:04:35.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-19T23:03:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-09T22:26:24.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2014-12-10T03:20:11.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Julian Duque ", + "authorEmail": "julianduquej@gmail.com", + "date": "2014-12-16T16:27:31.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-12-15T18:58:37.000Z", + "fileChanged": "9", + "insertions": "37", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2014-12-18T07:52:42.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-16T12:21:41.000Z", + "fileChanged": "5", + "insertions": "3", + "deletions": "303", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2014-12-04T20:00:23.000Z", + "fileChanged": "3", + "insertions": "50", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-15T16:25:31.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-11-11T11:06:55.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Miroslav Bajtoš ", + "authorEmail": "miro.bajtos@gmail.com", + "date": "2013-11-04T14:59:25.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-12-17T13:34:21.000Z", + "fileChanged": "6", + "insertions": "73", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-12-17T13:30:04.000Z", + "fileChanged": "1545", + "insertions": "63378", + "deletions": "63415", + "type": "Commit" + }, + { + "authorName": "Luis Reis ", + "authorEmail": "luis.m.reis@gmail.com", + "date": "2014-09-09T16:30:15.000Z", + "fileChanged": "5", + "insertions": "282", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Burns ", + "authorEmail": "benjamin.c.burns@gmail.com", + "date": "2014-07-26T14:04:46.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-12-15T15:44:46.000Z", + "fileChanged": "5", + "insertions": "209", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alejandro Oviedo ", + "authorEmail": "alejandro.oviedo.g@gmail.com", + "date": "2014-12-12T16:03:13.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-09T21:57:48.000Z", + "fileChanged": "9", + "insertions": "190", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-10T16:45:50.000Z", + "fileChanged": "4", + "insertions": "7", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-10T16:33:56.000Z", + "fileChanged": "6", + "insertions": "100", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-11T14:29:52.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Nikolai Vavilov ", + "authorEmail": "vvnicholas@gmail.com", + "date": "2014-12-12T17:28:20.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2014-12-10T22:03:27.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-12-09T18:47:49.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Juanjo ", + "authorEmail": "juanjo@bitrock.com", + "date": "2014-10-14T10:07:19.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2014-12-11T20:50:35.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-12-11T09:54:42.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "micnic ", + "authorEmail": "micnic90@gmail.com", + "date": "2014-11-29T12:50:29.000Z", + "fileChanged": "4", + "insertions": "68", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-12-11T07:07:40.000Z", + "fileChanged": "1", + "insertions": "139", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evan@btc.com", + "date": "2014-12-11T07:37:03.000Z", + "fileChanged": "5", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-11T17:04:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2014-10-29T22:17:56.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2014-10-09T23:16:49.000Z", + "fileChanged": "1", + "insertions": "61", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Kevin O'Hara ", + "authorEmail": "kevinohara80@gmail.com", + "date": "2014-12-03T03:17:17.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2014-12-10T17:04:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-12-08T13:45:12.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-12-10T11:58:32.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "brian m. carlson ", + "authorEmail": "sandals@crustytoothpaste.net", + "date": "2014-12-06T18:52:25.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-12-09T20:01:35.000Z", + "fileChanged": "52", + "insertions": "356", + "deletions": "121", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-06T19:38:58.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-09T17:57:43.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-12-03T06:55:53.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-09T14:41:35.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2014-12-09T20:15:32.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-12-09T18:47:49.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Juanjo ", + "authorEmail": "juanjo@bitrock.com", + "date": "2014-10-14T10:07:19.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Evan Torrie ", + "authorEmail": "evan.torrie@yahoo.com", + "date": "2014-12-09T19:02:39.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2014-12-09T17:06:35.000Z" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2014-12-09T15:03:24.000Z", + "fileChanged": "9", + "insertions": "1", + "deletions": "253", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2014-12-02T03:14:57.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-12-09T04:10:44.000Z", + "fileChanged": "6", + "insertions": "167", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-12-09T04:02:09.000Z", + "fileChanged": "12", + "insertions": "89", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-11-15T00:15:06.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-11-14T23:47:34.000Z", + "fileChanged": "10", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-12-09T04:29:47.000Z", + "fileChanged": "17", + "insertions": "407", + "deletions": "168", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-11-13T00:35:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-12-09T04:24:59.000Z", + "fileChanged": "4", + "insertions": "53", + "deletions": "183", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-12-09T03:55:48.000Z", + "fileChanged": "4", + "insertions": "169", + "deletions": "132", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-12-09T15:01:05.000Z", + "fileChanged": "28", + "insertions": "8", + "deletions": "2371", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2014-12-09T15:08:48.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-11-07T13:15:24.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Carlos Campderrós ", + "authorEmail": "carlos.campderros@eyeos.com", + "date": "2014-07-31T08:34:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jonathan Johnson ", + "authorEmail": "me@jondavidjohn.com", + "date": "2014-11-27T02:02:25.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2014-11-18T09:30:27.000Z", + "fileChanged": "3", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Woltman ", + "authorEmail": "nwoltman@outlook.com", + "date": "2014-11-21T08:22:07.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2014-12-09T04:57:17.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-12-09T04:22:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-12-05T13:34:03.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2014-12-09T16:44:37.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-11-21T14:43:12.000Z", + "fileChanged": "30", + "insertions": "312", + "deletions": "243", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2014-12-09T16:49:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tyler Kellen ", + "authorEmail": "tyler@sleekcode.net", + "date": "2014-12-03T16:45:44.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-09T14:16:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2014-12-09T14:46:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2014-12-08T16:49:24.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2014-12-09T07:08:51.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Vincent Weevers ", + "authorEmail": "mail@vincentweevers.nl", + "date": "2014-12-03T14:38:53.000Z", + "fileChanged": "2", + "insertions": "75", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2014-12-08T20:12:12.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Nikolai Vavilov ", + "authorEmail": "vvnicholas@gmail.com", + "date": "2014-12-06T14:42:24.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-12-08T15:02:30.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-12-08T02:36:03.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "squirrelslikeacorns@gmail.com", + "date": "2014-12-05T07:01:55.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Robert Kowalski ", + "authorEmail": "rok@kowalski.gd", + "date": "2014-02-10T20:14:53.000Z", + "fileChanged": "8", + "insertions": "138", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Evan Lucas ", + "authorEmail": "evan@btc.com", + "date": "2014-12-03T03:16:32.000Z", + "fileChanged": "6", + "insertions": "120", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-11-26T15:46:59.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jose Luis Rivas ", + "authorEmail": "me@ghostbar.co", + "date": "2014-12-06T17:46:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-05T22:55:17.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Christian Tellnes ", + "authorEmail": "christian@tellnes.no", + "date": "2014-12-05T13:50:05.000Z", + "fileChanged": "3", + "insertions": "56", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-04T21:02:51.000Z", + "fileChanged": "3", + "insertions": "111", + "deletions": "111", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-12-04T21:00:55.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Brendan Ashworth ", + "authorEmail": "squirrelslikeacorns@gmail.com", + "date": "2014-10-19T18:54:48.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2014-12-02T03:14:57.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-12-05T13:34:03.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-11-20T19:27:06.000Z", + "fileChanged": "6", + "insertions": "167", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-11-17T20:54:03.000Z", + "fileChanged": "12", + "insertions": "89", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-11-15T00:15:06.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-11-14T23:47:34.000Z", + "fileChanged": "10", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-08-26T19:21:39.000Z", + "fileChanged": "17", + "insertions": "404", + "deletions": "159", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-11-13T00:35:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-11-13T00:08:12.000Z", + "fileChanged": "4", + "insertions": "55", + "deletions": "187", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-11-12T23:58:23.000Z", + "fileChanged": "4", + "insertions": "169", + "deletions": "132", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-11-12T00:48:34.000Z", + "fileChanged": "33", + "insertions": "8", + "deletions": "2580", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-11-07T13:31:39.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-11-07T13:15:24.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-12-04T14:08:19.000Z", + "fileChanged": "1", + "insertions": "107", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2014-12-03T07:28:40.000Z" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-12-04T09:48:43.000Z", + "fileChanged": "1", + "insertions": "160", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Thorsten Lorenz ", + "authorEmail": "thlorenz@gmx.de", + "date": "2014-09-15T17:00:22.000Z", + "fileChanged": "2", + "insertions": "66", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Bergström ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2014-12-03T07:28:40.000Z", + "fileChanged": "3", + "insertions": "2", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "The Gitter Badger ", + "authorEmail": "badger@gitter.im", + "date": "2014-12-03T14:55:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bryce Kahle ", + "authorEmail": "bkahle@gmail.com", + "date": "2014-12-03T17:11:18.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Leonardo Balter ", + "authorEmail": "leonardo.balter@gmail.com", + "date": "2014-12-03T20:07:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-12-04T01:16:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Carlos Campderrós ", + "authorEmail": "carlos.campderros@eyeos.com", + "date": "2014-07-31T08:34:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Martin Cozzi ", + "authorEmail": "martin@cotap.com", + "date": "2014-12-03T01:10:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jonathan Johnson ", + "authorEmail": "me@jondavidjohn.com", + "date": "2014-11-27T02:02:25.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-12-03T01:10:40.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jamund Ferguson ", + "authorEmail": "jamund@gmail.com", + "date": "2014-12-02T23:08:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2014-11-20T15:46:38.000Z", + "fileChanged": "3", + "insertions": "104", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2014-11-20T15:46:38.000Z", + "fileChanged": "3", + "insertions": "104", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Tom Gallacher ", + "authorEmail": "tomgallacher23@gmail.com", + "date": "2014-12-02T17:39:39.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2014-12-02T02:06:21.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Max Ogden ", + "authorEmail": "max@maxogden.com", + "date": "2014-12-02T01:31:19.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Thorsten Lorenz ", + "authorEmail": "thlorenz@gmx.de", + "date": "2014-09-15T17:00:22.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-11-29T02:36:14.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-11-29T10:52:51.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-14T20:52:16.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-11T17:19:04.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-11-27T22:43:15.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-11-28T14:13:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-11-17T15:44:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-11-28T12:11:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-15T16:50:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2014-11-28T09:50:12.000Z", + "fileChanged": "1", + "insertions": "57", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-11-27T15:37:49.000Z", + "fileChanged": "99", + "insertions": "2532", + "deletions": "819", + "type": "Commit" + }, + { + "authorName": "James Cowgill ", + "authorEmail": "james410@cowgill.org.uk", + "date": "2014-11-26T17:06:19.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-11-26T21:50:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-11-26T21:37:41.000Z", + "fileChanged": "12", + "insertions": "45", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2014-11-18T09:30:27.000Z", + "fileChanged": "3", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Woltman ", + "authorEmail": "nwoltman@outlook.com", + "date": "2014-11-21T08:22:07.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-11-21T14:43:12.000Z", + "fileChanged": "26", + "insertions": "269", + "deletions": "222", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-11-26T11:37:14.000Z", + "fileChanged": "3", + "deletions": "129", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Calvin Metcalf ", + "authorEmail": "cmetcalf@appgeo.com", + "date": "2014-11-11T18:38:02.000Z", + "fileChanged": "2", + "insertions": "76", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-11-24T13:17:13.000Z", + "fileChanged": "3", + "insertions": "73", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-11-19T01:31:46.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-11-22T16:34:31.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-11-22T15:59:48.000Z", + "fileChanged": "52", + "insertions": "110", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Rory Bradford ", + "authorEmail": "roryrjb@gmail.com", + "date": "2014-04-08T21:48:24.000Z", + "fileChanged": "3", + "insertions": "247", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-06-11T00:09:54.000Z", + "fileChanged": "3", + "insertions": "517", + "deletions": "484", + "type": "Commit" + }, + { + "authorName": "Steve Sharp ", + "authorEmail": "stevenson.sharp@gmail.com", + "date": "2014-11-20T18:35:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-11-04T16:14:55.000Z", + "fileChanged": "3", + "insertions": "31", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-11-14T22:20:07.000Z", + "fileChanged": "4", + "insertions": "51", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "MK Safi ", + "authorEmail": "msafi@msafi.com", + "date": "2013-08-14T23:15:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-11-12T15:25:07.000Z", + "fileChanged": "4", + "insertions": "42", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-11-12T14:29:34.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-11-13T05:35:20.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-11-06T04:30:10.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Artur Cistov ", + "authorEmail": "artchistov@gmail.com", + "date": "2013-02-15T22:21:48.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2014-11-16T02:33:20.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-10-08T21:36:21.000Z", + "fileChanged": "2", + "insertions": "39", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2014-11-01T10:07:03.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-11-14T00:26:22.000Z", + "fileChanged": "3", + "insertions": "16", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Refael Ackermann ", + "authorEmail": "refack@gmail.com", + "date": "2014-09-29T09:20:50.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-11-13T23:52:27.000Z", + "fileChanged": "936", + "insertions": "203388", + "deletions": "42521", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-11-11T05:08:09.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "haoxin ", + "authorEmail": "coderhaoxin@outlook.com", + "date": "2014-09-09T02:22:37.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Steven Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2014-08-05T01:00:55.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2014-11-06T03:09:43.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2014-10-04T06:10:29.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-11-11T11:06:55.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-11-10T23:40:58.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "sudodoki ", + "authorEmail": "smd.deluzion@gmail.com", + "date": "2014-06-16T22:05:58.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "puling.tyq@alibaba-inc.com", + "date": "2014-11-10T05:09:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-11-08T09:03:20.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Luis Reis ", + "authorEmail": "luis.m.reis@gmail.com", + "date": "2014-09-09T16:30:15.000Z", + "fileChanged": "5", + "insertions": "282", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-11-05T03:24:19.000Z", + "fileChanged": "4", + "insertions": "148", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2014-11-07T22:24:12.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-11-07T21:44:09.000Z", + "fileChanged": "9", + "insertions": "4", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-10-17T07:31:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-10-17T07:31:23.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-10-20T22:45:30.000Z", + "fileChanged": "32", + "insertions": "921", + "deletions": "150", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-11-05T23:03:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-29T16:21:12.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-05T18:10:25.000Z", + "fileChanged": "2", + "insertions": "148", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-11-03T15:42:07.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-11-04T23:08:12.000Z", + "fileChanged": "779", + "insertions": "23878", + "deletions": "11960", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2014-09-24T01:59:35.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-10-09T20:01:27.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2014-10-31T22:15:12.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-11-04T07:57:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-11-04T05:08:41.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-11-03T12:19:17.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-11-03T11:15:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-11-03T11:03:34.000Z", + "fileChanged": "12", + "insertions": "679", + "deletions": "740", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-16T21:14:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2014-10-28T12:32:07.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-29T15:15:15.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-29T14:43:09.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-29T01:12:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-24T15:46:25.000Z", + "fileChanged": "3", + "insertions": "23", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Nikolai Vavilov ", + "authorEmail": "vvnicholas@gmail.com", + "date": "2014-10-28T17:21:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-25T06:45:55.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-25T05:27:21.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-10-18T01:45:40.000Z", + "fileChanged": "3", + "insertions": "80", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2014-10-21T09:00:37.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-27T11:39:19.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-10-25T21:27:23.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Nikolai Vavilov ", + "authorEmail": "vvnicholas@gmail.com", + "date": "2014-10-24T22:36:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-24T12:52:29.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-23T20:45:58.000Z", + "fileChanged": "9", + "insertions": "17", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-23T20:32:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-23T20:22:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-23T20:04:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-22T02:53:26.000Z", + "fileChanged": "11", + "insertions": "4", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-22T02:33:01.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-22T02:26:25.000Z", + "fileChanged": "9", + "insertions": "43", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-22T01:53:57.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-22T01:29:32.000Z", + "fileChanged": "48", + "insertions": "655", + "deletions": "647", + "type": "Commit" + }, + { + "authorName": "dead-horse ", + "authorEmail": "dead_horse@qq.com", + "date": "2014-09-17T10:59:59.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-10-18T12:25:10.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-10-18T04:06:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-16T17:35:16.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-16T17:22:34.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-16T16:43:13.000Z", + "fileChanged": "5", + "insertions": "56", + "deletions": "134", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-16T15:10:33.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-16T14:41:24.000Z", + "fileChanged": "1", + "insertions": "493", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-14T20:52:16.000Z", + "fileChanged": "4", + "insertions": "15", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-14T20:50:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-16T01:45:53.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-13T13:19:55.000Z", + "fileChanged": "29", + "insertions": "655", + "deletions": "617", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-12T15:48:05.000Z", + "fileChanged": "3", + "deletions": "14", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-11T19:54:59.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-11T19:48:25.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-11T14:52:07.000Z", + "fileChanged": "36", + "insertions": "348", + "deletions": "359", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-11T14:48:49.000Z", + "fileChanged": "3", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-11T14:24:12.000Z", + "fileChanged": "26", + "deletions": "386", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Refael Ackermann ", + "authorEmail": "refack@gmail.com", + "date": "2014-09-29T09:20:50.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-10T22:18:34.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-10T22:17:49.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-10T22:17:03.000Z", + "fileChanged": "4", + "insertions": "248", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-10-10T13:14:47.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-10T10:49:02.000Z", + "fileChanged": "1335", + "insertions": "108993", + "deletions": "91170", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2014-10-09T20:07:50.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-03T01:55:35.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-09T21:10:55.000Z", + "fileChanged": "1", + "insertions": "712", + "deletions": "373", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-10-09T21:08:51.000Z", + "fileChanged": "1", + "insertions": "6814", + "deletions": "1446", + "type": "Commit" + }, + { + "authorName": "Ray Donnelly ", + "authorEmail": "mingw.android@gmail.com", + "date": "2014-08-30T22:59:05.000Z", + "fileChanged": "3", + "insertions": "39", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Ray Donnelly ", + "authorEmail": "mingw.android@gmail.com", + "date": "2014-08-30T22:51:20.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-10-09T20:01:27.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Wang Xinyong ", + "authorEmail": "wang.xy.chn@gmail.com", + "date": "2014-10-09T17:15:05.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-10-08T18:30:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Stiliyan Lazarov ", + "authorEmail": "stiliyanlazarov@gmail.com", + "date": "2014-10-04T14:50:50.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-10-08T22:38:46.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-08T10:35:07.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-08T10:34:51.000Z", + "fileChanged": "9", + "insertions": "44", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-04T14:44:46.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-04T14:44:39.000Z", + "fileChanged": "18", + "insertions": "1044", + "deletions": "128", + "type": "Commit" + }, + { + "authorName": "Refael Ackermann ", + "authorEmail": "refack@gmail.com", + "date": "2014-09-29T09:20:50.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-02T04:16:24.000Z", + "fileChanged": "5", + "insertions": "34", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Refael Ackermann ", + "authorEmail": "refack@gmail.com", + "date": "2014-09-29T09:20:04.000Z", + "fileChanged": "1746", + "insertions": "278555", + "deletions": "108095", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-08T10:35:07.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-08T10:34:51.000Z", + "fileChanged": "9", + "insertions": "44", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-04T14:44:46.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-04T14:44:39.000Z", + "fileChanged": "18", + "insertions": "1044", + "deletions": "128", + "type": "Commit" + }, + { + "authorName": "Refael Ackermann ", + "authorEmail": "refack@gmail.com", + "date": "2014-09-29T09:20:50.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-02T04:16:24.000Z", + "fileChanged": "5", + "insertions": "34", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Refael Ackermann ", + "authorEmail": "refack@gmail.com", + "date": "2014-09-29T09:20:04.000Z", + "fileChanged": "1746", + "insertions": "278555", + "deletions": "108095", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-06T12:23:01.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-08T11:31:45.000Z" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-10-08T09:08:54.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-10-08T08:34:46.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Refael Ackermann ", + "authorEmail": "refack@gmail.com", + "date": "2014-10-02T08:20:51.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-10-08T08:13:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-10-08T08:06:06.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Steve Mao ", + "authorEmail": "maochenyan@msn.com", + "date": "2014-10-03T05:53:15.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Johnny Ray ", + "authorEmail": "http://johnnyray.me", + "date": "2014-10-07T23:32:05.000Z", + "fileChanged": "3", + "insertions": "95", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2014-10-04T05:41:05.000Z", + "fileChanged": "1", + "insertions": "73", + "deletions": "68", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2014-10-04T00:42:37.000Z", + "fileChanged": "3", + "insertions": "26", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Evan Rutledge Borden ", + "authorEmail": "evan.borden@skedge.me", + "date": "2014-09-26T15:59:39.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Victor Widell ", + "authorEmail": "victor@topmost.se", + "date": "2014-03-30T10:34:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Steve Sharp ", + "authorEmail": "stevenson.sharp@gmail.com", + "date": "2014-09-28T23:03:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-10-06T12:23:01.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "gyson ", + "authorEmail": "eilian.yunsong@gmail.com", + "date": "2014-10-01T02:44:39.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2014-10-02T23:24:58.000Z", + "fileChanged": "3", + "insertions": "278", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-10-01T22:42:02.000Z", + "fileChanged": "2", + "insertions": "99", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-09-22T20:21:11.000Z", + "fileChanged": "3", + "insertions": "81", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2014-09-22T16:19:50.000Z", + "fileChanged": "6", + "insertions": "252", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Gabriel Wicke ", + "authorEmail": "wicke@wikidev.net", + "date": "2014-09-25T16:59:18.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Steven R. Loomis ", + "authorEmail": "srl@icu-project.org", + "date": "2014-09-05T05:03:24.000Z", + "fileChanged": "16", + "insertions": "1605", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Julien Fontanet ", + "authorEmail": "julien.fontanet@isonoe.net", + "date": "2014-09-23T14:51:33.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2014-09-24T05:14:48.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-09-30T00:29:59.000Z", + "fileChanged": "4", + "insertions": "91", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-09-29T23:32:34.000Z", + "fileChanged": "20", + "insertions": "99", + "deletions": "82", + "type": "Commit" + }, + { + "authorName": "Rasmus Christian Pedersen ", + "authorEmail": "zerhacken@yahoo.com", + "date": "2014-09-18T12:10:53.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "James Ferguson ", + "authorEmail": "jamesanthonyferguson@gmail.com", + "date": "2014-09-25T03:19:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-09-29T19:32:42.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-09-29T17:13:35.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-09-24T09:42:33.000Z", + "fileChanged": "4", + "insertions": "87", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-09-20T04:07:33.000Z", + "fileChanged": "2", + "insertions": "61", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Jicheng Li ", + "authorEmail": "deemstone@gmail.com", + "date": "2014-09-14T15:40:49.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-09-24T22:41:31.000Z", + "fileChanged": "24", + "insertions": "183", + "deletions": "183", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-09-25T00:14:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-09-24T21:46:41.000Z", + "fileChanged": "2", + "insertions": "170", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-09-24T21:41:07.000Z", + "fileChanged": "591", + "insertions": "15757", + "deletions": "12514", + "type": "Commit" + }, + { + "authorName": "Patrick Mooney ", + "authorEmail": "patrick.f.mooney@gmail.com", + "date": "2014-09-17T18:54:24.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Robert Kowalski ", + "authorEmail": "rok@kowalski.gd", + "date": "2014-09-13T09:06:28.000Z", + "fileChanged": "1", + "insertions": "72", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-09-24T21:13:58.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-09-24T16:36:25.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-09-23T09:49:42.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-09-23T20:19:31.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-09-23T20:19:39.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-09-19T17:37:55.000Z", + "fileChanged": "110", + "insertions": "6370", + "deletions": "1680", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-09-12T12:27:22.000Z", + "fileChanged": "3", + "insertions": "51", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-09-23T00:21:40.000Z", + "fileChanged": "2", + "insertions": "61", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Kang-Hao Kenny ", + "authorEmail": "kanghao.lkh@alibaba-inc.com", + "date": "2014-09-19T15:14:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Andrew Teich ", + "authorEmail": "andrewteich@me.com", + "date": "2014-09-19T05:09:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2014-09-04T16:02:04.000Z", + "fileChanged": "4", + "insertions": "178", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-09-02T17:52:45.000Z", + "fileChanged": "1", + "insertions": "79", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-09-17T22:21:32.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Mickael van der Beek ", + "authorEmail": "mickael@sagacify.com", + "date": "2014-09-17T21:40:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-08-15T16:25:38.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Guilherme de Souza ", + "authorEmail": "gui_souza@me.com", + "date": "2014-09-12T10:07:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Guilherme de Souza ", + "authorEmail": "gui_souza@me.com", + "date": "2014-09-12T09:25:15.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-09-17T00:48:09.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-09-16T23:53:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-09-16T23:52:57.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-09-16T22:47:52.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-09-16T22:38:50.000Z", + "fileChanged": "511", + "insertions": "21087", + "deletions": "10062", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-09-13T12:08:25.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2014-09-16T17:14:24.000Z", + "fileChanged": "3", + "insertions": "61", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-08-22T13:09:24.000Z", + "fileChanged": "4", + "insertions": "82", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "me@mmalecki.com", + "date": "2014-08-06T14:53:59.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "me@mmalecki.com", + "date": "2013-11-11T19:51:34.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Adam Lippai ", + "authorEmail": "adam.lippai@tresorit.com", + "date": "2014-09-13T22:37:34.000Z", + "fileChanged": "8", + "insertions": "170", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Mathias Schreck ", + "authorEmail": "schreck.mathias@googlemail.com", + "date": "2014-09-03T11:45:36.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-24T09:31:45.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-21T18:12:11.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-23T14:01:17.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-14T09:25:57.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-12T03:38:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-09-09T21:03:08.000Z", + "fileChanged": "44", + "insertions": "430", + "deletions": "356", + "type": "Commit" + }, + { + "authorName": "Trevor Livingston ", + "authorEmail": "trlivingston@paypal.com", + "date": "2014-09-05T14:56:55.000Z", + "fileChanged": "3", + "insertions": "95", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-09-05T15:33:28.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-08-22T23:25:40.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-08-22T22:57:45.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-08-22T22:33:04.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-08-22T22:31:44.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-09-04T02:23:03.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-08-22T21:57:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Majid Arif Siddiqui ", + "authorEmail": "me@majidarif.com", + "date": "2014-08-14T03:15:24.000Z", + "fileChanged": "6", + "insertions": "52", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-09-04T15:10:44.000Z", + "fileChanged": "1", + "insertions": "56", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-08-22T20:51:53.000Z", + "fileChanged": "6", + "insertions": "232", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-09-03T21:24:50.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-09-01T14:44:57.000Z", + "fileChanged": "3", + "insertions": "100", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-09-01T14:44:07.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-09-01T12:07:45.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-09-02T11:53:36.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2014-09-01T14:44:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-09-03T10:36:17.000Z", + "fileChanged": "6", + "insertions": "18", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-09-02T18:30:45.000Z", + "fileChanged": "5", + "insertions": "139", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-08-26T18:45:12.000Z", + "fileChanged": "1", + "insertions": "50", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jesús Leganés Combarro \"piranna ", + "authorEmail": "piranna@gmail.com", + "date": "2014-08-23T21:01:06.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-08-16T00:20:32.000Z", + "fileChanged": "5", + "insertions": "134", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2014-09-02T13:27:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2014-09-02T13:26:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2014-08-23T14:48:13.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Isaac Burns ", + "authorEmail": "isaacburns@gmail.com", + "date": "2014-08-29T19:47:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2014-08-28T07:51:42.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2014-08-27T09:00:13.000Z", + "fileChanged": "11", + "insertions": "178", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-27T14:01:01.000Z", + "fileChanged": "6", + "insertions": "426", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2014-08-04T10:44:06.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2014-08-25T12:55:11.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Tristan Berger ", + "authorEmail": "tristan.berger@gmail.com", + "date": "2014-08-26T08:39:25.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-23T13:38:32.000Z", + "fileChanged": "6", + "insertions": "83", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-24T22:19:15.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-22T10:21:50.000Z", + "fileChanged": "9", + "insertions": "5659", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-23T19:22:23.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-21T23:59:35.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2014-08-21T16:05:42.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2014-08-19T21:38:55.000Z", + "fileChanged": "5", + "insertions": "102", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-08-15T14:40:09.000Z", + "fileChanged": "2", + "insertions": "44", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-08-19T22:12:30.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-08-19T22:12:21.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-08-19T17:28:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2014-08-13T18:02:37.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-08-19T15:19:52.000Z", + "fileChanged": "3", + "insertions": "23", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-08-19T15:17:36.000Z", + "fileChanged": "187", + "insertions": "1996", + "deletions": "660", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2014-08-14T14:54:44.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-18T13:58:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-18T13:57:26.000Z", + "fileChanged": "4", + "insertions": "5", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-17T10:19:14.000Z", + "fileChanged": "4", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-17T10:17:30.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-14T15:29:28.000Z", + "fileChanged": "1", + "insertions": "50", + "deletions": "56", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-08-12T14:48:02.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-08-11T20:29:00.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-02T08:42:42.000Z", + "fileChanged": "5", + "insertions": "29", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-08-06T21:32:46.000Z", + "fileChanged": "2", + "insertions": "89", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-08-11T22:15:21.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-11T17:19:04.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-07T09:36:56.000Z", + "fileChanged": "179", + "insertions": "3518", + "deletions": "6068", + "type": "Commit" + }, + { + "authorName": "Cheng Zhao ", + "authorEmail": "zcbenz@gmail.com", + "date": "2014-08-10T02:46:11.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-08-13T04:50:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2014-08-13T04:03:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2014-08-08T17:49:24.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ezequiel Rabinovich ", + "authorEmail": "erabinovich@gmail.com", + "date": "2014-08-13T02:32:22.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2014-08-11T08:41:18.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-08-12T00:10:43.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "seishun ", + "authorEmail": "vvnicholas@gmail.com", + "date": "2014-05-05T14:35:28.000Z", + "fileChanged": "5", + "insertions": "235", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-08-05T13:33:16.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-08-08T02:36:56.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-11T17:19:04.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Thorsten Lorenz ", + "authorEmail": "thlorenz@gmx.de", + "date": "2014-08-06T18:00:31.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-08-07T14:45:53.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2014-08-06T06:35:35.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-08-07T23:33:35.000Z" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-07-31T23:16:42.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "me@mmalecki.com", + "date": "2014-08-07T18:56:34.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2014-08-06T03:21:59.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-07-05T09:02:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-07-24T09:59:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-07T11:03:17.000Z", + "fileChanged": "61", + "insertions": "3498", + "deletions": "1183", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-07T09:36:56.000Z", + "fileChanged": "179", + "insertions": "3524", + "deletions": "6081", + "type": "Commit" + }, + { + "authorName": "Kevin Simper ", + "authorEmail": "kevin.simper@gmail.com", + "date": "2014-08-03T00:27:02.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2014-08-05T09:34:56.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-08-05T01:12:54.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-05-22T02:13:09.000Z", + "fileChanged": "6", + "insertions": "198", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-08-04T20:43:50.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-08-01T18:06:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Herman Lee ", + "authorEmail": "threeday0905@gmail.com", + "date": "2014-08-04T14:18:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-08-04T16:52:35.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2014-08-01T11:26:09.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-08-02T11:06:25.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-07-31T23:44:15.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Lucio M. Tato ", + "authorEmail": "luciotato@gmail.com", + "date": "2014-08-02T05:33:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-07-31T23:49:28.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "James Halliday ", + "authorEmail": "mail@substack.net", + "date": "2014-06-09T01:58:53.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2014-08-01T06:08:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-07-31T02:20:52.000Z", + "fileChanged": "2", + "insertions": "103", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Jakob Gillich ", + "authorEmail": "jakob@gillich.me", + "date": "2014-06-25T17:08:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Gabriel Wicke ", + "authorEmail": "wicke@wikidev.net", + "date": "2014-07-01T19:28:49.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-07-31T18:12:08.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-07-31T18:11:53.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-07-31T17:24:06.000Z", + "fileChanged": "3", + "insertions": "42", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-07-31T16:31:01.000Z", + "fileChanged": "10", + "insertions": "125", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-30T22:33:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-07-31T16:05:30.000Z", + "fileChanged": "425", + "insertions": "6800", + "deletions": "2589", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "me@mmalecki.com", + "date": "2014-03-25T21:47:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2014-03-30T08:51:01.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-07-23T01:03:10.000Z", + "fileChanged": "9", + "insertions": "228", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-31T08:38:46.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-07-24T09:59:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-31T08:30:46.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-31T08:12:18.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-07-28T23:53:10.000Z", + "fileChanged": "1", + "insertions": "77", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-30T10:54:36.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-07-30T01:06:47.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2014-07-09T10:01:05.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "9", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-29T08:50:49.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-29T08:34:49.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Julien Gilli ", + "authorEmail": "julien.gilli@joyent.com", + "date": "2014-07-29T00:19:03.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-07-25T17:11:10.000Z", + "fileChanged": "2", + "insertions": "55", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-07-23T21:22:22.000Z", + "fileChanged": "2", + "insertions": "68", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-24T09:31:45.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-07-19T05:27:34.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-23T19:55:24.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-23T19:51:14.000Z", + "fileChanged": "24", + "insertions": "369", + "deletions": "183", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2014-07-16T14:04:34.000Z", + "fileChanged": "6", + "insertions": "20", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2014-07-17T14:01:40.000Z", + "fileChanged": "2", + "insertions": "68", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "me@mmalecki.com", + "date": "2014-07-23T13:24:07.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-07-20T02:35:07.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-07-19T21:34:41.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-23T19:08:46.000Z", + "fileChanged": "6", + "insertions": "96", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Dean McNamee ", + "authorEmail": "dean@gmail.com", + "date": "2014-07-18T07:16:28.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-21T18:12:11.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-21T18:12:11.000Z", + "fileChanged": "3", + "insertions": "47", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2012-12-21T17:52:00.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-17T05:55:07.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2014-07-17T04:23:15.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-15T08:43:59.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2014-07-09T09:16:45.000Z", + "fileChanged": "2", + "insertions": "79", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2014-07-10T16:13:27.000Z", + "fileChanged": "3", + "insertions": "72", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2014-05-23T01:56:18.000Z", + "fileChanged": "4", + "insertions": "156", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-13T19:15:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dean McNamee ", + "authorEmail": "dean@gmail.com", + "date": "2014-07-09T11:36:50.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-06-25T03:18:00.000Z", + "fileChanged": "3", + "insertions": "33", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-12T09:35:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-07-09T01:06:05.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2014-07-07T23:38:05.000Z", + "fileChanged": "2", + "insertions": "79", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2014-07-08T19:14:58.000Z", + "fileChanged": "4", + "insertions": "31", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2014-07-08T18:33:50.000Z", + "fileChanged": "1", + "deletions": "9", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2014-07-08T00:04:42.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Andrew Oppenlander ", + "authorEmail": "andrew.oppenlander@zipscene.com", + "date": "2014-07-08T22:06:40.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-08T18:43:48.000Z", + "fileChanged": "2", + "deletions": "36", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "John Albietz ", + "authorEmail": "inthecloud247@gmail.com", + "date": "2014-07-03T23:15:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Robert Kowalski ", + "authorEmail": "rok@kowalski.gd", + "date": "2014-07-03T20:39:29.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Maurice Butler ", + "authorEmail": "maurice.butler@gmail.com", + "date": "2014-07-07T06:29:59.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-07-05T21:22:45.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ed Umansky ", + "authorEmail": "edumansky@gmail.com", + "date": "2014-07-03T00:59:28.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-07-03T04:02:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Andrius Bentkus ", + "authorEmail": "andrius.bentkus@gmail.com", + "date": "2014-07-02T13:24:17.000Z", + "fileChanged": "6", + "insertions": "159", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-02T17:35:50.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-02T17:35:50.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-14T16:08:38.000Z", + "fileChanged": "5", + "insertions": "88", + "deletions": "54", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-07-02T20:32:11.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2014-06-30T15:06:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-07-02T11:26:46.000Z", + "fileChanged": "4", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-30T08:43:47.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-30T08:43:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-30T08:43:28.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Eli Skeggs ", + "authorEmail": "skeggse@gmail.com", + "date": "2014-06-28T05:32:50.000Z", + "fileChanged": "2", + "insertions": "39", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2014-07-01T13:35:35.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ionică Bizău ", + "authorEmail": "bizauionica@yahoo.com", + "date": "2014-03-31T19:06:03.000Z", + "fileChanged": "2", + "insertions": "44", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Refael Ackermann ", + "authorEmail": "refael@empeeric.com", + "date": "2014-07-01T07:48:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Arnout Kazemier ", + "authorEmail": "3rd-Eden@users.noreply.github.com", + "date": "2014-07-01T06:44:09.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-30T09:06:35.000Z", + "fileChanged": "4", + "insertions": "4", + "deletions": "57", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-07T06:00:55.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Jonathan Reem ", + "authorEmail": "jonathan.reem@gmail.com", + "date": "2014-06-28T18:46:42.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-12T04:11:28.000Z", + "fileChanged": "2", + "insertions": "44", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-12T04:38:58.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2014-06-25T13:18:50.000Z", + "fileChanged": "3", + "insertions": "58", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Oguz Bastemur ", + "authorEmail": "obastemur@gmail.com", + "date": "2014-06-13T09:36:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-06-27T04:07:16.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-27T00:44:36.000Z", + "fileChanged": "62", + "insertions": "955", + "deletions": "194", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-06-20T22:43:00.000Z", + "fileChanged": "5", + "insertions": "149", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-05-17T08:42:50.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-25T10:47:59.000Z", + "fileChanged": "3", + "insertions": "16", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-25T10:11:09.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-25T07:16:08.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Chris Dickinson ", + "authorEmail": "christopher.s.dickinson@gmail.com", + "date": "2014-06-05T00:26:34.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fred K. Schott ", + "authorEmail": "fschott@box.com", + "date": "2014-06-12T18:12:54.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2014-06-15T16:04:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jan Krems ", + "authorEmail": "jan.krems@gmail.com", + "date": "2014-06-22T00:09:04.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2014-06-22T15:34:47.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Charles ", + "authorEmail": "cydjudge@users.noreply.github.com", + "date": "2014-06-17T22:44:11.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ed Morley ", + "authorEmail": "emorley@mozilla.com", + "date": "2014-05-13T12:20:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nick Apperson ", + "authorEmail": "apperson@gmail.com", + "date": "2014-03-25T14:51:13.000Z", + "fileChanged": "3", + "insertions": "71", + "deletions": "192", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-06-20T10:02:13.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-06-17T00:20:45.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-06-17T00:16:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-06-13T21:39:53.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-12T22:40:28.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-12T18:21:26.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-23T14:01:17.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-14T09:25:57.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-12T03:38:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-12T03:07:46.000Z", + "fileChanged": "836", + "insertions": "44983", + "deletions": "49541", + "type": "Commit" + }, + { + "authorName": "Euan ", + "authorEmail": "euank@euank.com", + "date": "2014-06-05T00:15:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Xavi Magrinyà ", + "authorEmail": "xavi.mb89@gmail.com", + "date": "2014-06-08T10:02:54.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Xavi Magrinyà ", + "authorEmail": "xavi.mb89@gmail.com", + "date": "2014-06-08T09:14:14.000Z", + "fileChanged": "3", + "insertions": "26", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2014-06-11T19:16:48.000Z", + "fileChanged": "11", + "insertions": "8", + "deletions": "55", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-08T18:58:07.000Z", + "fileChanged": "2", + "insertions": "70", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-08T02:25:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Roman Klauke ", + "authorEmail": "romankl@users.noreply.github.com", + "date": "2014-06-11T20:03:50.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2014-05-23T20:15:15.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2014-05-23T19:41:40.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-06-11T15:59:55.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-06-11T15:51:53.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-06-10T23:36:04.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-06-09T17:52:27.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-06-09T17:51:53.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-06-09T17:04:36.000Z", + "fileChanged": "3", + "insertions": "34", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2014-06-07T14:01:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2014-06-07T15:53:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-06-05T22:55:48.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-06-05T22:18:15.000Z", + "fileChanged": "360", + "insertions": "4166", + "deletions": "2459", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-04-10T00:33:33.000Z", + "fileChanged": "10", + "insertions": "158", + "deletions": "68", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2014-01-20T08:47:19.000Z", + "fileChanged": "4", + "insertions": "22", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2014-01-20T08:43:43.000Z", + "fileChanged": "4", + "insertions": "55", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2014-05-13T15:42:48.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2014-05-13T15:36:40.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2014-05-13T15:30:25.000Z", + "fileChanged": "1", + "insertions": "82", + "deletions": "123", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-05-16T09:10:34.000Z", + "fileChanged": "4", + "insertions": "57", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Nick Muerdter ", + "authorEmail": "stuff@nickm.org", + "date": "2014-06-04T03:49:38.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-05T14:46:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-05T14:28:39.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-06-05T14:09:35.000Z", + "fileChanged": "147", + "insertions": "1426", + "deletions": "14050", + "type": "Commit" + }, + { + "authorName": "Michael Kebe ", + "authorEmail": "michael.kebe@gmail.com", + "date": "2014-05-15T15:56:04.000Z", + "fileChanged": "1", + "deletions": "19", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-06-04T13:25:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Chris Barber ", + "authorEmail": "chris@cb1inc.com", + "date": "2014-05-30T21:25:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-27T21:31:31.000Z", + "fileChanged": "12", + "insertions": "61", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-05-28T22:34:04.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-05-28T22:34:04.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Raymond Feng ", + "authorEmail": "raymond@strongloop.com", + "date": "2014-05-27T22:26:13.000Z", + "fileChanged": "2", + "insertions": "65", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Raymond Feng ", + "authorEmail": "raymond@strongloop.com", + "date": "2014-05-23T03:57:31.000Z", + "fileChanged": "1", + "insertions": "115", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Raymond Feng ", + "authorEmail": "raymond@strongloop.com", + "date": "2014-05-23T03:37:47.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-23T13:27:51.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "100", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-05-23T18:55:34.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-22T23:08:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-05-23T10:42:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rohini Harendra ", + "authorEmail": "rohini.raghav@gmail.com", + "date": "2014-05-17T05:36:56.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-22T19:55:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-22T11:00:55.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-21T11:47:21.000Z", + "fileChanged": "2", + "insertions": "59", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Kevin Decker ", + "authorEmail": "kpdecker@gmail.com", + "date": "2014-04-30T13:20:25.000Z", + "fileChanged": "2", + "insertions": "118", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-18T12:58:43.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "l900422@vip.qq.com", + "date": "2014-05-07T10:59:23.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "fengmk2 ", + "authorEmail": "fengmk2@gmail.com", + "date": "2014-04-29T01:40:40.000Z", + "fileChanged": "3", + "insertions": "56", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Cole ", + "authorEmail": "ryan@rycole.com", + "date": "2014-04-28T01:25:02.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-05-16T11:32:43.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Calvin Metcalf ", + "authorEmail": "calvin.metcalf@gmail.com", + "date": "2014-05-13T15:52:38.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "jochen@chromium.org ", + "authorEmail": "jochen@chromium.org", + "date": "2014-05-19T15:27:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andrew Low ", + "authorEmail": "Andrew_Low@ca.ibm.com", + "date": "2014-04-08T14:39:33.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-05-20T09:26:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-13T21:49:59.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "cjihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-05-16T02:48:27.000Z", + "fileChanged": "3", + "insertions": "19", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Dan Kaplun ", + "authorEmail": "dan@beardtree.com", + "date": "2014-05-17T07:25:10.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Andrei Sedoi ", + "authorEmail": "bsnote@gmail.com", + "date": "2014-05-15T23:11:51.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-05-16T08:47:51.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "l900422@vip.qq.com", + "date": "2014-05-10T18:07:30.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Mark Stosberg ", + "authorEmail": "mark@rideamigos.com", + "date": "2014-05-13T02:30:58.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-05-14T17:07:29.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Greg Sabia Tucker ", + "authorEmail": "greg@narrowlabs.com", + "date": "2014-05-14T05:32:57.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-13T11:45:21.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Colin Ihrig ", + "authorEmail": "cjihrig@gmail.com", + "date": "2014-05-09T02:26:26.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Dan Kaplun ", + "authorEmail": "dan@beardtree.com", + "date": "2014-05-12T09:42:21.000Z", + "fileChanged": "2", + "insertions": "215", + "deletions": "181", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-05-13T09:13:23.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Dan Kaplun ", + "authorEmail": "dan@beardtree.com", + "date": "2014-05-12T03:23:21.000Z", + "fileChanged": "1", + "insertions": "54", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "Greg Sabia Tucker ", + "authorEmail": "greg@tucke.rs", + "date": "2014-04-30T01:24:44.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-05-12T23:45:44.000Z", + "fileChanged": "3", + "deletions": "38", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2014-05-07T16:05:39.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Taojie ", + "authorEmail": "taojie.hjp@taobao.com", + "date": "2014-05-06T12:05:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-05-12T20:52:33.000Z", + "fileChanged": "2", + "deletions": "9", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Refael Ackermann ", + "authorEmail": "refack@gmail.com", + "date": "2014-05-09T11:12:37.000Z", + "fileChanged": "3", + "insertions": "130", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nicholas Vavilov ", + "authorEmail": "vvnicholas@gmail.com", + "date": "2014-04-30T22:57:16.000Z", + "fileChanged": "2", + "insertions": "78", + "deletions": "78", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2014-05-07T09:48:55.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-05-07T21:47:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nikolai Vavilov ", + "authorEmail": "vvnicholas@gmail.com", + "date": "2014-04-30T19:14:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2014-03-25T21:16:55.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Feross Aboukhadijeh ", + "authorEmail": "feross@feross.org", + "date": "2014-05-03T05:48:34.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-05-05T14:48:51.000Z", + "fileChanged": "3", + "insertions": "45", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-06T17:45:20.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2014-05-06T10:19:54.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-20T16:40:07.000Z", + "fileChanged": "2", + "insertions": "100", + "deletions": "122", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2014-05-06T01:20:40.000Z", + "fileChanged": "115", + "insertions": "2925", + "deletions": "4080", + "type": "Commit" + }, + { + "authorName": "Adrian Lang ", + "authorEmail": "mail@adrianlang.de", + "date": "2013-08-14T19:31:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-19T13:29:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-06T16:29:21.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-05-02T18:44:45.000Z", + "fileChanged": "2", + "insertions": "76", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-27T08:42:43.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-02T15:50:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-05-02T15:22:19.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-02T14:53:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-02T14:53:32.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-02T14:46:15.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-02T14:46:05.000Z" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-02T00:49:51.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-02T00:47:47.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2014-05-01T23:30:33.000Z", + "fileChanged": "113", + "insertions": "171", + "deletions": "117", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-01T23:06:44.000Z", + "fileChanged": "3", + "insertions": "71", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-01T22:44:47.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-01T22:30:07.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-01T22:29:52.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-01T21:04:20.000Z", + "fileChanged": "3", + "insertions": "42", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-01T20:54:23.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2014-05-01T18:09:00.000Z", + "fileChanged": "257", + "insertions": "880", + "deletions": "487", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-04-29T21:46:58.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-05-01T16:27:39.000Z", + "fileChanged": "15", + "insertions": "237", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-05-01T16:26:26.000Z", + "fileChanged": "30", + "insertions": "294", + "deletions": "108", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2014-04-15T16:44:46.000Z", + "fileChanged": "5", + "insertions": "140", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-04-30T16:14:55.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2014-04-21T16:26:11.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ingmar Runge ", + "authorEmail": "ingmar@irsoft.de", + "date": "2014-04-22T20:03:53.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "forrest@npmjs.com", + "date": "2014-04-28T19:38:06.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rasmus Christian Pedersen ", + "authorEmail": "zerhacken@yahoo.com", + "date": "2014-04-28T12:45:20.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Sean McArthur ", + "authorEmail": "sean.monstar@gmail.com", + "date": "2014-03-06T18:21:04.000Z", + "fileChanged": "6", + "insertions": "164", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-04-28T11:05:00.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2013-10-15T01:26:18.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Denys Zariaiev ", + "authorEmail": "denys.zariaiev@gmail.com", + "date": "2014-04-25T12:06:06.000Z", + "fileChanged": "4", + "insertions": "40", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "ben@strongloop.com", + "date": "2014-04-24T02:27:40.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Julian Gruber ", + "authorEmail": "julian@juliangruber.com", + "date": "2014-04-24T11:19:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Julian Gruber ", + "authorEmail": "julian@juliangruber.com", + "date": "2014-04-24T11:18:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-04-09T13:02:03.000Z", + "fileChanged": "3", + "insertions": "58", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-03-27T20:09:20.000Z", + "fileChanged": "4", + "insertions": "22", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-24T06:19:30.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Farrin Reid ", + "authorEmail": "blakmatrix@gmail.com", + "date": "2012-12-15T01:00:13.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-22T15:53:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-17T23:53:15.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-17T22:24:48.000Z", + "fileChanged": "4", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-17T11:57:36.000Z", + "fileChanged": "7", + "insertions": "287", + "deletions": "151", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-14T17:15:57.000Z", + "fileChanged": "19", + "insertions": "622", + "deletions": "145", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-14T10:12:35.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2014-04-15T22:31:36.000Z", + "fileChanged": "247", + "insertions": "1136", + "deletions": "335", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2014-03-25T21:16:55.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2014-04-03T22:11:56.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-04-14T23:35:33.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-14T09:33:22.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "l900422@vip.qq.com", + "date": "2014-04-13T17:19:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-13T15:11:56.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Geir Hauge ", + "authorEmail": "geir.hauge@ntnu.no", + "date": "2014-03-31T07:52:03.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "goussardg ", + "authorEmail": "guillaume.goussard@mgo.com", + "date": "2014-04-09T23:39:31.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-27T17:45:15.000Z", + "fileChanged": "3", + "insertions": "49", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-10T20:53:47.000Z", + "fileChanged": "1", + "deletions": "30", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "William Bert ", + "authorEmail": "william@spanishdict.com", + "date": "2014-04-09T20:50:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-04-05T20:49:47.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-10T15:55:38.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-08T23:04:53.000Z", + "fileChanged": "4", + "insertions": "33", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-04-08T16:05:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-02-04T01:23:15.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-08T04:56:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-08T04:55:57.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-07T20:58:37.000Z", + "fileChanged": "256", + "insertions": "49230", + "deletions": "6208", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-24T12:25:11.000Z", + "fileChanged": "2", + "insertions": "97", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2014-04-07T02:08:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-03-12T23:22:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-03-12T23:08:29.000Z", + "fileChanged": "8", + "insertions": "18", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor@indutny.com", + "date": "2014-04-07T12:36:51.000Z", + "fileChanged": "82", + "insertions": "1807", + "deletions": "310", + "type": "Commit" + }, + { + "authorName": "Evan Carroll ", + "authorEmail": "me@evancarroll.com", + "date": "2014-04-02T00:04:15.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2013-12-24T12:33:03.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Dominic Tarr ", + "authorEmail": "dominic.tarr@gmail.com", + "date": "2014-03-30T22:25:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yuki KAN ", + "authorEmail": "re@pixely.jp", + "date": "2014-03-01T02:09:29.000Z", + "fileChanged": "5", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "C. Scott Ananian ", + "authorEmail": "cscott@cscott.net", + "date": "2014-03-06T20:44:18.000Z", + "fileChanged": "23", + "insertions": "211", + "deletions": "145", + "type": "Commit" + }, + { + "authorName": "Nick Apperson ", + "authorEmail": "apperson@gmail.com", + "date": "2014-03-25T14:51:13.000Z", + "fileChanged": "3", + "insertions": "80", + "deletions": "144", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-31T13:13:37.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-31T13:07:59.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-31T12:38:28.000Z", + "fileChanged": "717", + "insertions": "116919", + "deletions": "26993", + "type": "Commit" + }, + { + "authorName": "Andrew Low ", + "authorEmail": "Andrew_Low@ca.ibm.com", + "date": "2014-04-01T14:18:09.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-04-01T18:46:28.000Z", + "fileChanged": "36", + "insertions": "529", + "deletions": "152", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-31T12:22:49.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "James Pickard ", + "authorEmail": "james.pickard@gmail.com", + "date": "2014-02-27T20:45:18.000Z", + "fileChanged": "4", + "insertions": "100", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Goh Yisheng (Andrew) ", + "authorEmail": "mail.yisheng@gmail.com", + "date": "2014-03-29T00:20:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-06T23:27:01.000Z", + "fileChanged": "17", + "insertions": "222", + "deletions": "163", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-26T20:30:49.000Z", + "fileChanged": "4", + "insertions": "41", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2014-03-25T20:48:57.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "dcarney@chromium.org ", + "authorEmail": "dcarney@chromium.org", + "date": "2014-03-24T19:36:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-06T22:25:38.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-25T16:38:33.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Josh Dague ", + "authorEmail": "daguej@email.uc.edu", + "date": "2014-03-26T05:26:17.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-26T07:52:00.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-26T07:42:57.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-25T22:35:28.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-20T20:01:49.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2014-03-19T16:25:40.000Z", + "fileChanged": "319", + "insertions": "5594", + "deletions": "4070", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2014-03-25T20:02:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2014-03-24T22:59:31.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-06T04:11:07.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-18T10:03:22.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-03-17T21:39:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-17T20:46:40.000Z", + "fileChanged": "2", + "insertions": "77", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-17T20:33:01.000Z", + "fileChanged": "319", + "insertions": "6082", + "deletions": "79704", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-03-17T17:19:47.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-15T06:15:11.000Z", + "fileChanged": "5", + "insertions": "38", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-15T01:04:02.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-15T00:12:53.000Z", + "fileChanged": "1", + "insertions": "151", + "deletions": "82", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-15T00:25:53.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-15T00:23:47.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-14T22:22:27.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-14T20:59:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-14T20:58:14.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-13T17:53:48.000Z", + "fileChanged": "4", + "insertions": "30", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-13T17:13:59.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-13T16:47:02.000Z", + "fileChanged": "5", + "insertions": "113", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-13T16:46:23.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-13T16:38:14.000Z", + "fileChanged": "37", + "insertions": "438", + "deletions": "374", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-13T16:45:44.000Z", + "fileChanged": "1136", + "insertions": "136764", + "deletions": "54870", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2014-03-09T06:46:54.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-03-12T14:56:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-03-12T14:56:30.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-03-11T21:49:48.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-03-11T20:49:52.000Z", + "fileChanged": "3", + "insertions": "74", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bryan Cantrill ", + "authorEmail": "bryan@joyent.com", + "date": "2014-03-11T01:07:52.000Z", + "fileChanged": "4", + "insertions": "503", + "deletions": "118", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-03-11T00:51:47.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-03-02T22:18:26.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-03-11T00:01:21.000Z", + "fileChanged": "46", + "insertions": "943", + "deletions": "359", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-03-10T23:50:00.000Z" + }, + { + "authorName": "Shuhei Kagawa ", + "authorEmail": "shuhei.kagawa@gmail.com", + "date": "2014-03-09T11:16:39.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-10T10:59:18.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-03-10T21:01:24.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2014-03-08T14:52:51.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2014-03-09T20:46:54.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-06T21:59:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-26T10:37:13.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Benoit Vallée ", + "authorEmail": "github@benoitvallee.net", + "date": "2013-05-14T03:10:07.000Z", + "fileChanged": "1", + "insertions": "56", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-03-04T13:10:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2014-03-04T05:05:23.000Z", + "fileChanged": "5", + "insertions": "62", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2014-03-03T05:25:11.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Greg Brail ", + "authorEmail": "greg@apigee.com", + "date": "2014-01-29T01:36:22.000Z", + "fileChanged": "2", + "insertions": "82", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-03-04T00:27:58.000Z", + "fileChanged": "4", + "insertions": "38", + "deletions": "3", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-03-02T19:54:19.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-28T16:52:32.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-28T13:25:28.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-28T08:14:05.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2013-10-25T21:05:39.000Z", + "fileChanged": "3", + "insertions": "102", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-07T13:39:39.000Z", + "fileChanged": "3", + "insertions": "84", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-02-28T09:17:32.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Saúl Ibarra Corretgé ", + "authorEmail": "saghul@gmail.com", + "date": "2014-02-27T02:14:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-26T23:24:03.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-27T02:08:30.000Z", + "fileChanged": "69", + "insertions": "2267", + "deletions": "388", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2014-02-25T22:19:25.000Z", + "fileChanged": "1", + "deletions": "42", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2014-02-25T22:18:43.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2014-02-25T22:15:02.000Z", + "fileChanged": "3", + "insertions": "43", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2014-02-26T21:05:56.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2014-02-26T19:39:53.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2014-02-26T02:17:35.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-02-26T18:33:21.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-02-26T14:03:59.000Z", + "fileChanged": "6", + "insertions": "98", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-16T12:17:01.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "Maxwell Krohn ", + "authorEmail": "themax@gmail.com", + "date": "2014-02-25T20:48:31.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-02-25T17:57:43.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-02-24T17:28:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-25T21:24:16.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-25T19:32:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-25T19:05:54.000Z", + "fileChanged": "4", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-25T04:59:39.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-25T04:20:25.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-25T03:49:45.000Z", + "fileChanged": "219", + "insertions": "115294", + "deletions": "461", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-25T03:40:47.000Z", + "fileChanged": "2", + "insertions": "46", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Mike Pennisi ", + "authorEmail": "mike@mikepennisi.com", + "date": "2014-02-24T19:16:40.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-25T02:38:41.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-25T01:53:57.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-25T01:03:28.000Z", + "fileChanged": "2", + "insertions": "58", + "deletions": "58", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-25T00:55:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-25T00:54:04.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-25T00:34:01.000Z", + "fileChanged": "1", + "deletions": "48", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-02-24T18:55:27.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-24T18:20:30.000Z", + "fileChanged": "5", + "insertions": "129", + "deletions": "95", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2014-02-23T19:00:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nicolas Talle ", + "authorEmail": "dev@nicolab.net", + "date": "2014-02-22T15:02:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-21T23:35:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-21T13:02:42.000Z", + "fileChanged": "42", + "insertions": "1841", + "deletions": "1232", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2014-02-21T06:13:41.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-20T21:03:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-20T20:56:17.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-20T17:00:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-20T16:52:26.000Z", + "fileChanged": "3", + "insertions": "65", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "David Björklund ", + "authorEmail": "david.bjorklund@gmail.com", + "date": "2014-02-10T18:56:09.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "4", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-19T17:12:32.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-19T02:57:45.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-19T00:43:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-19T00:40:23.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-18T23:34:29.000Z", + "fileChanged": "3", + "insertions": "0", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-18T22:55:58.000Z", + "fileChanged": "3", + "insertions": "39", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Anton Khlynovskiy ", + "authorEmail": "subzey@gmail.com", + "date": "2013-07-08T17:09:44.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Pedro Ballesteros ", + "authorEmail": "nitroduna@gmail.com", + "date": "2014-02-17T15:22:05.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-18T21:09:41.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-18T21:04:29.000Z", + "fileChanged": "11", + "insertions": "143", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Raynos ", + "authorEmail": "raynos2@gmail.com", + "date": "2013-05-21T21:10:34.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Xidorn Quan ", + "authorEmail": "quanxunzhen@gmail.com", + "date": "2014-02-18T18:10:30.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-18T00:29:23.000Z", + "fileChanged": "4", + "insertions": "29", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-18T01:30:12.000Z", + "fileChanged": "4", + "insertions": "147", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2014-02-18T01:57:08.000Z", + "fileChanged": "8", + "insertions": "219", + "deletions": "55", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-18T04:57:53.000Z" + }, + { + "authorName": "Farid Neshat ", + "authorEmail": "FaridN_SOAD@yahoo.com", + "date": "2014-02-15T03:30:30.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-18T04:29:30.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2014-02-17T04:43:16.000Z", + "fileChanged": "175", + "insertions": "1556", + "deletions": "609", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-18T00:17:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "l900422@vip.qq.com", + "date": "2014-01-22T01:53:23.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "l900422@vip.qq.com", + "date": "2014-02-17T22:59:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "l900422@vip.qq.com", + "date": "2014-02-15T14:21:26.000Z", + "fileChanged": "5", + "insertions": "104", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-17T22:47:33.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-13T13:17:59.000Z", + "fileChanged": "2", + "insertions": "52", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-14T13:01:34.000Z", + "fileChanged": "9", + "insertions": "111", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-16T03:24:42.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-23T22:05:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-15T11:56:37.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-14T19:05:27.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-14T19:01:49.000Z", + "fileChanged": "1", + "insertions": "448", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-14T09:32:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-14T10:00:33.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-24T15:15:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-24T15:03:10.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-16T11:18:55.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "orangemocha@github.com ", + "authorEmail": "orangemocha@github.com", + "date": "2014-02-10T21:41:03.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-14T00:40:38.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2014-02-13T02:16:32.000Z", + "fileChanged": "176", + "insertions": "1261", + "deletions": "2139", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-13T23:52:01.000Z", + "fileChanged": "333", + "insertions": "4", + "deletions": "24345", + "type": "Commit" + }, + { + "authorName": "Christian ", + "authorEmail": "me@rndm.de", + "date": "2014-02-09T09:37:55.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-10T20:40:48.000Z", + "fileChanged": "6", + "insertions": "687", + "deletions": "80", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2014-02-10T20:22:06.000Z", + "fileChanged": "4", + "insertions": "1311", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-10T19:21:09.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-09T11:09:34.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-09T10:59:31.000Z", + "fileChanged": "3", + "insertions": "56", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-09T10:40:57.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Kenan Sulayman ", + "authorEmail": "kenan@sly.mn", + "date": "2014-02-07T17:50:29.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Kenan Sulayman ", + "authorEmail": "kenan@sly.mn", + "date": "2014-02-07T17:18:27.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-02-06T13:43:55.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-09T00:45:27.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-05T16:50:40.000Z", + "fileChanged": "5", + "insertions": "23", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2014-02-03T04:24:09.000Z", + "fileChanged": "213", + "insertions": "238", + "deletions": "250", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2014-02-08T18:19:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-07T22:15:33.000Z", + "fileChanged": "2", + "deletions": "32", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-07T22:15:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Kenan Sulayman ", + "authorEmail": "kenan@sly.mn", + "date": "2014-02-07T17:18:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Kenan Sulayman ", + "authorEmail": "kenan@sly.mn", + "date": "2014-02-07T17:50:29.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Austin Moran ", + "authorEmail": "moraustin@gmail.com", + "date": "2014-02-02T23:39:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-07T19:17:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-01-30T12:21:07.000Z", + "fileChanged": "4", + "insertions": "87", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-01-30T12:02:58.000Z", + "fileChanged": "2", + "insertions": "90", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2014-02-06T02:09:23.000Z", + "fileChanged": "2", + "insertions": "84", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-05T16:38:33.000Z", + "fileChanged": "11", + "insertions": "190", + "deletions": "89", + "type": "Commit" + }, + { + "authorName": "iamdoron ", + "authorEmail": "doronpagot@gmail.com", + "date": "2014-02-06T06:29:58.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-02-05T23:37:12.000Z", + "fileChanged": "24", + "insertions": "656", + "deletions": "616", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-21T19:32:55.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-20T21:33:16.000Z", + "fileChanged": "21", + "insertions": "109", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-21T20:36:28.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-02-02T21:59:11.000Z", + "fileChanged": "3", + "insertions": "63", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-15T21:19:31.000Z", + "fileChanged": "3", + "insertions": "63", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-28T13:57:47.000Z", + "fileChanged": "7", + "insertions": "403", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-16T19:05:42.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-01-27T02:58:16.000Z", + "fileChanged": "3", + "insertions": "77", + "deletions": "70", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-03T21:32:13.000Z", + "fileChanged": "5", + "insertions": "148", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-05T09:46:00.000Z", + "fileChanged": "2", + "insertions": "70", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-02-04T17:16:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Benjamin Waters ", + "authorEmail": "ben25890@gmail.com", + "date": "2014-02-04T01:56:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-02-04T01:23:15.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Yuriy Nemtsov ", + "authorEmail": "nemtsov@gmail.com", + "date": "2014-02-03T20:53:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-09T22:46:05.000Z", + "fileChanged": "2", + "insertions": "3565", + "deletions": "3587", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-02-03T07:55:47.000Z", + "fileChanged": "3", + "insertions": "52", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-31T12:49:24.000Z", + "fileChanged": "3", + "insertions": "77", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Oguz Bastemur ", + "authorEmail": "obastemur@gmail.com", + "date": "2014-02-03T12:47:29.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Maxime Quandalle ", + "authorEmail": "maxime.quandalle@gmail.com", + "date": "2014-02-01T15:10:25.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nikolai Vavilov ", + "authorEmail": "vvnicholas@gmail.com", + "date": "2014-01-28T17:35:51.000Z", + "fileChanged": "4", + "insertions": "152", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-31T20:12:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-30T11:25:20.000Z", + "fileChanged": "4", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-30T17:31:02.000Z", + "fileChanged": "1", + "deletions": "61", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-23T09:35:18.000Z", + "fileChanged": "4", + "insertions": "51", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-29T17:37:29.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-29T03:48:54.000Z", + "fileChanged": "1", + "insertions": "106", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-29T03:46:17.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-29T03:46:04.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-29T01:27:13.000Z", + "fileChanged": "3", + "insertions": "60", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-29T01:16:28.000Z", + "fileChanged": "5", + "insertions": "92", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Wyatt Preul ", + "authorEmail": "wpreul@gmail.com", + "date": "2013-06-12T04:02:51.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-23T09:35:18.000Z", + "fileChanged": "4", + "insertions": "51", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-28T23:23:52.000Z", + "fileChanged": "6", + "insertions": "23", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Thom Seddon ", + "authorEmail": "thom@nightworld.com", + "date": "2014-01-28T16:18:36.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Thom Seddon ", + "authorEmail": "thom@nightworld.com", + "date": "2014-01-28T15:33:48.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-28T22:11:32.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-28T22:48:10.000Z", + "fileChanged": "9", + "insertions": "148", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-23T11:21:03.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-28T02:27:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-28T02:05:39.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-28T01:39:45.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Keith M Wesolowski ", + "authorEmail": "wesolows@foobazco.org", + "date": "2013-12-17T00:00:44.000Z", + "fileChanged": "25", + "insertions": "159", + "deletions": "236", + "type": "Commit" + }, + { + "authorName": "Jacob Hoffman-Andrews ", + "authorEmail": "github@hoffman-andrews.com", + "date": "2014-01-24T01:28:08.000Z", + "fileChanged": "3", + "insertions": "50", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-10T13:27:48.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2013-12-28T08:12:40.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-27T19:02:59.000Z" + }, + { + "authorName": "Jun Ma ", + "authorEmail": "roammm@gmail.com", + "date": "2014-01-25T17:50:17.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-27T17:30:51.000Z", + "fileChanged": "46", + "insertions": "385", + "deletions": "94", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-26T16:09:14.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-23T12:03:32.000Z", + "fileChanged": "7", + "insertions": "119", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-22T21:15:04.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-23T10:27:36.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-23T11:35:50.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-24T12:25:11.000Z", + "fileChanged": "2", + "insertions": "81", + "deletions": "3", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-25T03:13:50.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-24T18:08:25.000Z", + "fileChanged": "8", + "insertions": "141", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-22T01:07:11.000Z", + "fileChanged": "4", + "insertions": "118", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Scott González ", + "authorEmail": "scott.gonzalez@gmail.com", + "date": "2014-01-23T14:59:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2014-01-23T21:04:49.000Z", + "fileChanged": "116", + "insertions": "111", + "deletions": "335", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-23T21:01:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-22T16:28:24.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-23T15:10:24.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-23T20:14:40.000Z", + "fileChanged": "43", + "insertions": "585", + "deletions": "147", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-23T19:44:32.000Z", + "fileChanged": "1", + "insertions": "72", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-23T19:44:32.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-23T19:44:14.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-23T12:55:28.000Z", + "fileChanged": "4", + "insertions": "114", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-23T05:05:51.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-23T05:03:08.000Z", + "fileChanged": "3", + "insertions": "27", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-23T04:47:12.000Z", + "fileChanged": "8", + "insertions": "148", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-22T21:33:16.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2013-12-25T15:59:25.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Yorkie ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2014-01-22T12:48:46.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-21T12:23:43.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-21T10:29:07.000Z", + "fileChanged": "4", + "insertions": "86", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-21T23:03:12.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-21T23:28:23.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jo Liss ", + "authorEmail": "joliss42@gmail.com", + "date": "2014-01-21T22:24:58.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-20T00:37:15.000Z", + "fileChanged": "2", + "insertions": "87", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-19T23:38:15.000Z", + "fileChanged": "2", + "insertions": "158", + "deletions": "121", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-18T22:49:33.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-18T22:49:18.000Z", + "fileChanged": "10", + "insertions": "277", + "deletions": "117", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-14T08:45:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-14T08:29:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-21T17:22:00.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-21T06:53:56.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-20T21:20:11.000Z", + "fileChanged": "12", + "insertions": "2", + "deletions": "485", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-17T23:08:47.000Z", + "fileChanged": "1", + "insertions": "116", + "deletions": "115", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-17T14:28:47.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-13T14:02:16.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2013-12-06T16:58:15.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-14T01:24:14.000Z", + "fileChanged": "21", + "insertions": "856", + "deletions": "840", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-14T01:09:12.000Z", + "fileChanged": "5", + "insertions": "152", + "deletions": "519", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-18T12:18:25.000Z", + "fileChanged": "12", + "insertions": "56", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-17T18:46:49.000Z", + "fileChanged": "5", + "insertions": "112", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-01-20T15:19:00.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-01-20T15:12:37.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-20T14:39:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2014-01-20T05:13:20.000Z", + "fileChanged": "183", + "insertions": "1190", + "deletions": "5712", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-01-15T11:50:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-01-16T17:06:56.000Z", + "fileChanged": "3", + "insertions": "35", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-01-17T17:15:36.000Z", + "fileChanged": "4", + "insertions": "72", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-16T22:43:29.000Z", + "fileChanged": "1", + "insertions": "52", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-16T16:39:12.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-01-15T22:40:58.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-01-16T01:16:22.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-01-16T01:13:32.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-01-16T01:12:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-15T21:49:55.000Z" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2014-01-09T05:19:31.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2014-01-15T17:03:45.000Z", + "fileChanged": "1", + "insertions": "54", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-13T16:51:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-13T16:50:37.000Z", + "fileChanged": "8", + "insertions": "113", + "deletions": "56", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-13T12:57:58.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-13T22:56:41.000Z" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-13T22:56:12.000Z" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2014-01-09T01:16:17.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2014-01-13T21:16:25.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2014-01-06T07:59:40.000Z", + "fileChanged": "2", + "insertions": "129", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-12T18:04:21.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "svenpanne@chromium.org ", + "authorEmail": "svenpanne@chromium.org", + "date": "2012-11-09T11:30:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Gallacher ", + "authorEmail": "tomgallacher23@gmail.com", + "date": "2014-01-10T19:53:47.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "gluxon ", + "authorEmail": "bcheng.gt@gmail.com", + "date": "2014-01-01T21:26:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2014-01-09T05:36:54.000Z", + "fileChanged": "2", + "insertions": "60", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-12-07T01:17:02.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Jeff Barczewski ", + "authorEmail": "jeff.barczewski@gmail.com", + "date": "2014-01-09T13:03:33.000Z", + "fileChanged": "1", + "insertions": "51", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-09T21:33:51.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-03T22:02:51.000Z", + "fileChanged": "6", + "insertions": "325", + "deletions": "161", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-09T19:11:40.000Z", + "fileChanged": "13", + "insertions": "468", + "deletions": "107", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-08T21:08:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-04T21:50:54.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-08T19:05:01.000Z", + "fileChanged": "15", + "insertions": "15", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Lorenz Leutgeb ", + "authorEmail": "lorenz.leutgeb@gmail.com", + "date": "2014-01-06T14:29:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2014-01-06T15:35:36.000Z", + "fileChanged": "135", + "insertions": "2024", + "deletions": "1543", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-07T22:05:24.000Z", + "fileChanged": "11", + "insertions": "115", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2014-01-07T16:51:41.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2014-01-07T01:02:07.000Z", + "fileChanged": "217", + "insertions": "665", + "deletions": "479", + "type": "Commit" + }, + { + "authorName": "ayanamist ", + "authorEmail": "contact@ayanamist.com", + "date": "2014-01-03T11:37:16.000Z", + "fileChanged": "2", + "insertions": "76", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Lorenz Leutgeb ", + "authorEmail": "lorenz.leutgeb@gmail.com", + "date": "2014-01-05T11:07:54.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-14T11:28:07.000Z", + "fileChanged": "6", + "insertions": "168", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-04T00:46:09.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2014-01-03T00:40:30.000Z", + "fileChanged": "22", + "insertions": "137", + "deletions": "142", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-01T00:28:49.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-01T00:24:58.000Z", + "fileChanged": "1", + "insertions": "106", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-01T00:21:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2014-01-01T00:20:58.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-31T23:37:12.000Z", + "fileChanged": "3", + "insertions": "62", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-31T23:02:38.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-31T22:57:46.000Z" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "me@mmalecki.com", + "date": "2013-11-12T10:28:44.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-31T22:48:20.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ron Korving ", + "authorEmail": "rkorving@wizcorp.jp", + "date": "2013-11-06T03:23:35.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Tuğrul Topuz ", + "authorEmail": "tugrultopuz@gmail.com", + "date": "2013-10-21T13:47:57.000Z", + "fileChanged": "4", + "insertions": "121", + "deletions": "4", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-31T21:56:15.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-31T19:57:13.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2013-12-31T05:36:49.000Z", + "fileChanged": "3", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2013-12-18T00:04:20.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2013-12-03T03:00:39.000Z", + "fileChanged": "4", + "insertions": "161", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2013-12-12T18:34:16.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2013-12-03T01:24:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-31T18:33:54.000Z", + "fileChanged": "24", + "insertions": "299", + "deletions": "58", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-27T17:20:52.000Z", + "fileChanged": "4", + "insertions": "83", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Benjamin Waters ", + "authorEmail": "benjamin.waters@outlook.com", + "date": "2013-12-31T00:51:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-30T23:55:47.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-18T14:58:47.000Z", + "fileChanged": "12", + "insertions": "559", + "deletions": "134", + "type": "Commit" + }, + { + "authorName": "pflannery ", + "authorEmail": "pflannery@users.noreply.github.com", + "date": "2013-12-10T05:01:25.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Dav Glass ", + "authorEmail": "davglass@gmail.com", + "date": "2013-07-24T18:17:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yorkie ", + "authorEmail": "l900422@vip.qq.com", + "date": "2013-12-28T12:59:57.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Lev Gimelfarb ", + "authorEmail": "lev.gimelfarb@gmail.com", + "date": "2013-12-27T19:39:55.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-18T14:58:47.000Z", + "fileChanged": "12", + "insertions": "559", + "deletions": "134", + "type": "Commit" + }, + { + "authorName": "Benjamin Waters ", + "authorEmail": "benjamin.waters@outlook.com", + "date": "2013-12-26T03:08:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-12-26T03:15:23.000Z", + "fileChanged": "124", + "insertions": "277", + "deletions": "168", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2013-12-23T06:18:08.000Z", + "fileChanged": "3", + "insertions": "31", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-19T06:02:19.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-12-20T21:44:56.000Z", + "fileChanged": "4", + "insertions": "5", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-19T09:04:34.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Paul Loyd ", + "authorEmail": "pavelko95@gmail.com", + "date": "2013-12-12T21:16:08.000Z", + "fileChanged": "1", + "deletions": "43", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-12-12T22:59:40.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "T.C. Hollingsworth ", + "authorEmail": "tchollingsworth@gmail.com", + "date": "2013-12-20T08:29:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2013-12-19T15:55:06.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2013-12-19T16:44:33.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Cam Swords ", + "authorEmail": "cam.swords@gmail.com", + "date": "2013-09-22T14:06:58.000Z", + "fileChanged": "7", + "insertions": "102", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-20T13:33:29.000Z", + "fileChanged": "13", + "insertions": "691", + "deletions": "140", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2013-12-19T22:57:30.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "4", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-19T17:33:46.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-19T17:05:14.000Z", + "fileChanged": "1", + "insertions": "68", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-19T17:05:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-19T17:03:45.000Z" + }, + { + "authorName": "Yorkie ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2013-12-19T11:11:19.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-19T08:51:34.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2013-12-18T18:08:33.000Z", + "fileChanged": "1", + "deletions": "9", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-18T23:49:45.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-18T23:42:46.000Z", + "fileChanged": "4", + "insertions": "15", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-12-17T22:35:18.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2013-12-17T15:43:38.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-10T21:42:41.000Z", + "fileChanged": "1", + "insertions": "36", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Yorkie ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2013-12-14T21:09:28.000Z", + "fileChanged": "4", + "insertions": "39", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-12-17T22:33:52.000Z", + "fileChanged": "111", + "insertions": "119", + "deletions": "115", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-12-17T17:04:19.000Z", + "fileChanged": "110", + "insertions": "118", + "deletions": "116", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-12-17T00:23:13.000Z", + "fileChanged": "172", + "insertions": "1235", + "deletions": "742", + "type": "Commit" + }, + { + "authorName": "Ahamed Nafeez ", + "authorEmail": "ahamed.nafeez@gmail.com", + "date": "2013-12-14T22:47:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-13T23:16:52.000Z", + "fileChanged": "17", + "insertions": "343", + "deletions": "141", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-13T23:03:50.000Z" + }, + { + "authorName": "jkummerow@chromium.org ", + "authorEmail": "jkummerow@chromium.org", + "date": "2013-12-13T21:21:10.000Z", + "fileChanged": "8", + "insertions": "140", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-13T18:35:09.000Z", + "fileChanged": "32", + "insertions": "824", + "deletions": "139", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-12T19:32:41.000Z" + }, + { + "authorName": "Wyatt Preul ", + "authorEmail": "wpreul@gmail.com", + "date": "2013-12-12T16:16:48.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Lalit Kapoor ", + "authorEmail": "lalitkapoor@gmail.com", + "date": "2013-12-11T03:10:10.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-12T06:11:19.000Z", + "fileChanged": "1", + "insertions": "86", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-12T06:11:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-12T06:11:06.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-12T05:20:06.000Z", + "fileChanged": "3", + "insertions": "44", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nicolas Kaiser ", + "authorEmail": "nikai@nikai.net", + "date": "2013-12-07T21:33:26.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2013-12-12T04:39:22.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Gabriel Farrell ", + "authorEmail": "g@grrawr.com", + "date": "2013-12-11T15:14:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-12T04:24:36.000Z", + "fileChanged": "16", + "insertions": "156", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-12T04:06:11.000Z", + "fileChanged": "16", + "insertions": "1785", + "deletions": "119", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-12-11T18:20:26.000Z", + "fileChanged": "420", + "insertions": "13620", + "deletions": "4172", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-11T17:20:17.000Z", + "fileChanged": "13", + "insertions": "182", + "deletions": "119", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-11T17:19:04.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2013-12-10T19:32:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2013-12-10T14:52:27.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "8", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-10T19:36:41.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-16T16:46:54.000Z", + "fileChanged": "2", + "insertions": "89", + "deletions": "18", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-10T19:06:56.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-09T15:47:55.000Z", + "fileChanged": "4", + "insertions": "67", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-10T18:28:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-10T18:10:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-21T17:06:29.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2013-12-06T11:56:37.000Z", + "fileChanged": "3", + "insertions": "39", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2013-12-10T13:25:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-12-10T01:11:38.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ingmar Runge ", + "authorEmail": "ingmar@irsoft.de", + "date": "2013-11-19T21:38:15.000Z", + "fileChanged": "5", + "insertions": "260", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-07T19:49:49.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-07T05:27:18.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-07T05:00:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-07T04:58:00.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Steven Kabbes ", + "authorEmail": "stevenkabbes@gmail.com", + "date": "2013-12-03T04:59:34.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Lalit Kapoor ", + "authorEmail": "lalitkapoor@gmail.com", + "date": "2013-11-22T02:44:08.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2013-11-22T02:49:41.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-27T20:11:17.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-27T22:49:30.000Z", + "fileChanged": "4", + "insertions": "43", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-06T10:30:13.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2013-12-06T18:28:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-06T15:36:43.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-27T22:14:00.000Z", + "fileChanged": "18", + "insertions": "18239", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-05T15:16:01.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-21T16:13:58.000Z", + "fileChanged": "3", + "insertions": "24", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2013-12-04T19:04:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Kai Groner ", + "authorEmail": "kai@gronr.com", + "date": "2013-04-18T23:01:14.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-12-04T09:00:07.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-29T16:09:59.000Z", + "fileChanged": "2", + "insertions": "76", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2013-12-02T05:31:06.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Gabriel Falkenberg ", + "authorEmail": "gabriel.falkenberg@gmail.com", + "date": "2013-12-02T10:18:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2013-10-11T05:28:01.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "4", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-12-02T11:04:47.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-22T14:33:50.000Z", + "fileChanged": "3", + "insertions": "31", + "deletions": "15", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-02T03:43:34.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-12-02T02:57:43.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yazhong Liu ", + "authorEmail": "yorkiefixer@gmail.com", + "date": "2013-11-29T16:44:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Michael Ridgway ", + "authorEmail": "mcridgway@gmail.com", + "date": "2013-11-26T20:49:28.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nikolai Vavilov ", + "authorEmail": "vvnicholas@gmail.com", + "date": "2013-11-28T20:25:30.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-27T10:54:58.000Z", + "fileChanged": "2", + "insertions": "65", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Alexis Campailla ", + "authorEmail": "alexis@janeasystems.com", + "date": "2013-11-22T23:18:06.000Z", + "fileChanged": "3", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-24T15:13:46.000Z", + "fileChanged": "8", + "insertions": "3585", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-27T02:48:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-26T16:41:09.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-11-26T15:27:59.000Z", + "fileChanged": "1", + "insertions": "82", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-25T14:09:57.000Z", + "fileChanged": "4", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "David Chan ", + "authorEmail": "david@sheetmusic.org.uk", + "date": "2013-11-20T18:10:41.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-23T22:05:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Vladimir Kurchatkin ", + "authorEmail": "vladimir.kurchatkin@gmail.com", + "date": "2013-11-21T10:04:39.000Z", + "fileChanged": "3", + "insertions": "91", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Linus Unnebäck ", + "authorEmail": "linus@folkdatorn.se", + "date": "2013-11-21T15:39:23.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jeremy Martin ", + "authorEmail": "jmar777@gmail.com", + "date": "2013-11-22T14:17:16.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-11-21T22:41:40.000Z", + "fileChanged": "2", + "insertions": "39", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-21T00:45:27.000Z", + "fileChanged": "1", + "insertions": "92", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-21T00:40:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-21T00:40:36.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-21T00:03:31.000Z", + "fileChanged": "3", + "insertions": "45", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-20T23:45:50.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-11-20T19:08:52.000Z", + "fileChanged": "192", + "insertions": "2606", + "deletions": "2561", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-20T16:49:40.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-20T16:25:24.000Z", + "fileChanged": "57", + "insertions": "3118", + "deletions": "446", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-11-20T00:03:11.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-14T00:48:19.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-13T23:58:18.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-10-19T10:38:58.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-19T06:58:23.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-19T07:02:26.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-19T07:38:48.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-18T23:01:38.000Z", + "fileChanged": "29", + "insertions": "522", + "deletions": "267", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-18T21:41:17.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-16T13:39:41.000Z", + "fileChanged": "2", + "insertions": "55", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-11-14T23:40:56.000Z", + "fileChanged": "1", + "insertions": "40", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-11-14T01:19:53.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-11-14T00:27:20.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-15T15:27:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-15T15:24:46.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-14T00:59:01.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-11-13T23:14:34.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-11-13T22:51:32.000Z", + "fileChanged": "5", + "insertions": "59", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-13T12:58:46.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Tim Wood ", + "authorEmail": "washwithcare@gmail.com", + "date": "2013-11-12T20:19:13.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-11-05T00:24:36.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-11-04T18:49:55.000Z", + "fileChanged": "14", + "insertions": "262", + "deletions": "234", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-11-01T21:45:46.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-11-05T19:56:13.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-11T10:31:36.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-11T09:53:00.000Z", + "fileChanged": "17", + "insertions": "31", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-11T09:34:16.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-11T20:03:08.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-12T20:53:45.000Z", + "fileChanged": "1", + "insertions": "74", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-12T20:53:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-12T20:53:28.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-12T20:22:12.000Z", + "fileChanged": "3", + "insertions": "26", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-12T19:23:19.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-12T18:57:57.000Z", + "fileChanged": "22", + "insertions": "627", + "deletions": "136", + "type": "Commit" + }, + { + "authorName": "yangguo@chromium.org ", + "authorEmail": "yangguo@chromium.org", + "date": "2012-10-23T13:04:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "me@mmalecki.com", + "date": "2013-11-11T23:03:29.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-11T21:02:03.000Z", + "fileChanged": "21", + "insertions": "76", + "deletions": "59", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-11-11T19:24:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-10T01:02:27.000Z", + "fileChanged": "485", + "insertions": "31557", + "deletions": "27448", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-11-10T23:15:34.000Z", + "fileChanged": "42", + "insertions": "2326", + "deletions": "2240", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-09T22:46:05.000Z", + "fileChanged": "2", + "insertions": "3564", + "deletions": "3587", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-09T22:32:12.000Z", + "fileChanged": "1", + "insertions": "24785", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-09T22:31:54.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "70", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-09T22:01:26.000Z", + "fileChanged": "1", + "insertions": "241", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-09T21:24:22.000Z", + "fileChanged": "1", + "deletions": "11", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-07T21:22:02.000Z", + "fileChanged": "2", + "insertions": "85", + "deletions": "4", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-11-08T21:41:44.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-11-08T21:41:21.000Z", + "fileChanged": "209", + "insertions": "235", + "deletions": "217", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-08T21:23:59.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-08T20:44:32.000Z", + "fileChanged": "9", + "insertions": "18", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-08T16:47:39.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-08-15T21:30:47.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-10-21T12:26:29.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-11-03T22:32:03.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-07T11:34:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "fengmk2 ", + "authorEmail": "fengmk2@gmail.com", + "date": "2013-11-06T11:58:03.000Z", + "fileChanged": "2", + "insertions": "160", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Jackson Tian ", + "authorEmail": "shyvo1987@gmail.com", + "date": "2013-09-01T17:41:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-11-05T14:14:28.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-05T07:23:58.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-04T21:42:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-11-04T17:39:29.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-03T20:00:37.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-10-31T20:35:54.000Z", + "fileChanged": "1", + "insertions": "50", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2013-10-30T23:19:17.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-30T16:09:04.000Z", + "fileChanged": "1", + "insertions": "96", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Erik Dubbelboer ", + "authorEmail": "erik@dubbelboer.com", + "date": "2013-10-14T14:53:59.000Z", + "fileChanged": "28", + "insertions": "363", + "deletions": "145", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-11-01T20:57:09.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-11-01T14:44:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-10-30T00:05:40.000Z", + "fileChanged": "2", + "insertions": "216", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jacob Groundwater ", + "authorEmail": "groundwater@gmail.com", + "date": "2013-10-15T20:50:00.000Z", + "fileChanged": "11", + "insertions": "667", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-10-29T23:35:32.000Z", + "fileChanged": "15", + "insertions": "261", + "deletions": "603", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-09-28T00:04:30.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-10-01T00:24:41.000Z", + "fileChanged": "1", + "insertions": "128", + "deletions": "66", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-09-29T06:33:29.000Z", + "fileChanged": "2", + "insertions": "75", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-10-07T19:39:52.000Z", + "fileChanged": "7", + "insertions": "387", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-09-27T17:30:02.000Z", + "fileChanged": "14", + "insertions": "102", + "deletions": "176", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-09-24T21:12:11.000Z", + "fileChanged": "26", + "insertions": "1594", + "deletions": "200", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-10-31T19:39:43.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-28T19:18:59.000Z", + "fileChanged": "5", + "insertions": "77", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-10-28T12:10:10.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-10-28T10:25:27.000Z", + "fileChanged": "3", + "insertions": "50", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nick Simmons ", + "authorEmail": "nick.simmons@jadedpixel.com", + "date": "2013-10-22T02:08:28.000Z", + "fileChanged": "4", + "insertions": "89", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-30T15:55:06.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-30T15:54:48.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-30T00:08:07.000Z", + "fileChanged": "3", + "insertions": "52", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-29T23:46:15.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-29T23:33:17.000Z", + "fileChanged": "78", + "insertions": "1389", + "deletions": "580", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-10-29T20:23:58.000Z", + "fileChanged": "20", + "insertions": "156", + "deletions": "156", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-10-29T20:09:52.000Z", + "fileChanged": "12", + "insertions": "17", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-10-29T19:49:53.000Z", + "fileChanged": "9", + "insertions": "68", + "deletions": "80", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-10-29T19:27:24.000Z", + "fileChanged": "17", + "insertions": "137", + "deletions": "202", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-27T18:30:06.000Z", + "fileChanged": "4", + "insertions": "34", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2013-10-29T19:49:41.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2013-10-29T18:43:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2013-10-24T20:10:43.000Z", + "fileChanged": "4", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Thom Seddon ", + "authorEmail": "thom@nightworld.com", + "date": "2013-10-04T11:59:38.000Z", + "fileChanged": "7", + "insertions": "201", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-29T09:31:14.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-10-28T21:58:37.000Z", + "fileChanged": "5", + "insertions": "23", + "deletions": "7", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-10-28T21:12:00.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-10-28T21:10:47.000Z", + "fileChanged": "158", + "insertions": "928", + "deletions": "210", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-10-26T01:56:25.000Z", + "fileChanged": "3", + "insertions": "167", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-28T12:44:41.000Z", + "fileChanged": "4", + "insertions": "16", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-28T12:35:33.000Z", + "fileChanged": "5", + "insertions": "47", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Phillip Alexander ", + "authorEmail": "git@phillipalexander.io", + "date": "2013-10-26T20:13:56.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2013-10-26T05:03:02.000Z", + "fileChanged": "2", + "insertions": "58", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "sam@strongloop.com", + "date": "2013-10-25T20:16:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-25T18:26:05.000Z" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-10-24T02:43:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Maxim Bogushevich ", + "authorEmail": "boga1@mail.ru", + "date": "2013-10-22T07:27:02.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-10-24T16:21:59.000Z", + "fileChanged": "291", + "insertions": "1712", + "deletions": "1186", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-23T11:42:53.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Zarko Stankovic ", + "authorEmail": "stankovic.zarko@gmail.com", + "date": "2013-09-12T18:13:32.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-10-23T20:08:06.000Z", + "fileChanged": "2", + "insertions": "80", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-23T11:45:57.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-23T11:42:53.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-22T22:17:45.000Z", + "fileChanged": "4", + "insertions": "15", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-22T22:14:25.000Z", + "fileChanged": "439", + "insertions": "27970", + "deletions": "25681", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-23T11:25:35.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-10-22T17:56:03.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-18T22:46:02.000Z", + "fileChanged": "1", + "insertions": "71", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-18T22:43:55.000Z", + "fileChanged": "1", + "insertions": "71", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-18T22:40:32.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-18T22:39:56.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-18T21:26:27.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-18T21:14:21.000Z", + "fileChanged": "2", + "insertions": "84", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-18T20:52:15.000Z", + "fileChanged": "9", + "insertions": "301", + "deletions": "540", + "type": "Commit" + }, + { + "authorName": "Patrik Stutz ", + "authorEmail": "patrik.stutz@gmail.com", + "date": "2013-10-17T00:11:19.000Z", + "fileChanged": "3", + "insertions": "72", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-10-16T19:57:46.000Z", + "fileChanged": "2", + "insertions": "151", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-14T18:57:45.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "vieuxtech@gmail.com", + "date": "2013-07-26T01:17:38.000Z", + "fileChanged": "1", + "insertions": "141", + "deletions": "85", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "vieuxtech@gmail.com", + "date": "2013-07-26T00:35:21.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-10-16T16:57:26.000Z", + "fileChanged": "22", + "insertions": "340", + "deletions": "168", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-10-16T16:34:39.000Z", + "fileChanged": "12", + "insertions": "86", + "deletions": "83", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-15T11:01:23.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-15T10:51:12.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-16T00:54:24.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-15T21:32:18.000Z", + "fileChanged": "6", + "insertions": "64", + "deletions": "109", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-10-10T22:00:05.000Z", + "fileChanged": "4", + "insertions": "148", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-13T00:47:35.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jason Gerfen ", + "authorEmail": "jason.gerfen@gmail.com", + "date": "2013-10-15T14:31:14.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jason Gerfen ", + "authorEmail": "jason.gerfen@gmail.com", + "date": "2013-10-10T20:24:53.000Z", + "fileChanged": "7", + "insertions": "291", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-16T10:32:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-16T10:20:25.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-10-15T22:59:05.000Z", + "fileChanged": "1", + "deletions": "20", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-10-15T22:58:58.000Z", + "fileChanged": "7", + "deletions": "287", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Jason Gerfen ", + "authorEmail": "jason.gerfen@gmail.com", + "date": "2013-10-15T14:31:14.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-15T08:01:50.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-14T11:15:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jason Gerfen ", + "authorEmail": "jason.gerfen@gmail.com", + "date": "2013-10-10T20:24:53.000Z", + "fileChanged": "7", + "insertions": "287", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2013-10-15T01:26:18.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-14T09:38:53.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-14T09:07:14.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-10-04T03:43:35.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-10-11T18:44:56.000Z", + "fileChanged": "3", + "insertions": "38", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-10-11T18:11:36.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Glen Mailer ", + "authorEmail": "glenjamin@gmail.com", + "date": "2013-09-11T16:18:25.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2013-10-10T16:41:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-10T12:34:15.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-10T12:09:38.000Z", + "fileChanged": "1", + "insertions": "71", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-09-09T11:31:05.000Z", + "fileChanged": "1", + "deletions": "189", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-09T15:46:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2013-10-04T22:02:42.000Z", + "fileChanged": "2", + "insertions": "125", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2013-10-07T21:20:00.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2013-10-07T20:17:49.000Z", + "fileChanged": "4", + "insertions": "288", + "deletions": "55", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-05T17:48:33.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-08T09:25:22.000Z", + "fileChanged": "2", + "insertions": "46", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-10-07T17:17:04.000Z", + "fileChanged": "3", + "insertions": "23", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2013-10-06T05:22:41.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-05T12:45:10.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-03T17:27:51.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-03T09:03:46.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-03T08:45:32.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-02T04:37:44.000Z", + "fileChanged": "3", + "insertions": "58", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-02T10:17:57.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-01T06:35:24.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-10-01T00:55:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2013-09-28T20:26:15.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2013-09-28T22:57:33.000Z", + "fileChanged": "3", + "insertions": "67", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-30T22:06:14.000Z", + "fileChanged": "1", + "insertions": "59", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-30T22:06:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-30T22:06:02.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-30T20:52:48.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-28T08:27:11.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-09-27T19:47:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeff Switzer ", + "authorEmail": "git@skratchdot.com", + "date": "2013-09-27T03:03:59.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-26T17:07:18.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-26T16:18:06.000Z", + "fileChanged": "20", + "insertions": "551", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-25T10:57:03.000Z", + "fileChanged": "12", + "insertions": "297", + "deletions": "155", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-24T23:49:01.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-24T22:16:44.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-24T22:10:22.000Z", + "fileChanged": "1", + "insertions": "50", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-24T22:10:22.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-24T22:10:10.000Z" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-09-24T21:35:30.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-24T21:10:33.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-24T20:45:57.000Z", + "fileChanged": "4", + "insertions": "32", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-24T14:13:05.000Z", + "fileChanged": "19", + "insertions": "52", + "deletions": "500", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-09-24T12:53:49.000Z", + "fileChanged": "4", + "insertions": "242", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "Eric Schrock ", + "authorEmail": "Eric.Schrock@delphix.com", + "date": "2013-05-20T18:44:26.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-09-23T16:25:11.000Z", + "fileChanged": "19", + "insertions": "500", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-23T12:27:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-20T20:01:49.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-19T04:38:37.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-19T03:59:54.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "me@mmalecki.com", + "date": "2013-09-04T22:57:43.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-19T10:27:06.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-09-18T16:33:28.000Z", + "fileChanged": "47", + "insertions": "775", + "deletions": "242", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-09-16T20:57:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-09-16T20:57:00.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-09-14T14:29:24.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-09-13T23:54:05.000Z", + "fileChanged": "2", + "insertions": "54", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-09-12T01:18:10.000Z", + "fileChanged": "2", + "insertions": "58", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-13T12:46:06.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-09-12T13:51:55.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-09-10T02:39:21.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-09-09T14:18:05.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-09T08:57:09.000Z", + "fileChanged": "14", + "insertions": "1151", + "deletions": "1151", + "type": "Commit" + }, + { + "authorName": "Andrei Sedoi ", + "authorEmail": "bsnote@gmail.com", + "date": "2013-06-19T11:48:36.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-09-07T19:31:27.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-09-07T19:31:04.000Z", + "fileChanged": "159", + "insertions": "2203", + "deletions": "1860", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-09-07T00:47:56.000Z", + "fileChanged": "4", + "insertions": "51", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-09-07T01:23:02.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-09-07T00:08:56.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-09-06T23:46:35.000Z", + "fileChanged": "4", + "insertions": "100", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-06T18:59:27.000Z", + "fileChanged": "5", + "insertions": "44", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-10T22:26:11.000Z", + "fileChanged": "45", + "insertions": "2520", + "deletions": "1704", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-06T00:44:16.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "27", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-09-06T00:16:17.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-09-06T00:13:50.000Z", + "fileChanged": "236", + "insertions": "454", + "deletions": "407", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-09-05T22:50:51.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-09-05T20:11:51.000Z", + "fileChanged": "2", + "insertions": "54", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-05T19:47:08.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-04T18:42:08.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "69", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-09-05T14:49:47.000Z", + "fileChanged": "5", + "insertions": "100", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-08-23T13:53:16.000Z", + "fileChanged": "5", + "insertions": "136", + "deletions": "21", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-04T22:34:32.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-04T22:27:06.000Z", + "fileChanged": "1", + "insertions": "92", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-04T22:18:20.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-04T22:18:09.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-04T21:01:26.000Z", + "fileChanged": "3", + "insertions": "42", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-04T18:25:19.000Z", + "fileChanged": "1", + "insertions": "62", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-04T18:25:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-04T18:25:04.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-18T01:50:59.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-28T01:59:58.000Z", + "fileChanged": "5", + "insertions": "21", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Julian Gruber ", + "authorEmail": "julian@juliangruber.com", + "date": "2013-08-19T17:14:42.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-29T21:48:24.000Z", + "fileChanged": "1", + "insertions": "53", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-08-27T15:57:16.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-28T01:53:39.000Z", + "fileChanged": "2", + "insertions": "44", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-09-04T17:51:53.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-04T12:46:35.000Z", + "fileChanged": "51", + "insertions": "346", + "deletions": "286", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2013-09-03T22:00:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-04T07:55:57.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-09-03T11:04:26.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-21T22:36:50.000Z", + "fileChanged": "3", + "insertions": "101", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-21T22:39:14.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-02T22:42:59.000Z", + "fileChanged": "78", + "insertions": "1407", + "deletions": "1198", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-02T14:42:01.000Z", + "fileChanged": "3", + "insertions": "138", + "deletions": "117", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-02T17:10:36.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-09-01T12:47:25.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-09-01T00:58:44.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-09-01T00:58:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-31T18:29:51.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-31T05:39:06.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-30T21:28:22.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-30T21:21:05.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "98", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-30T20:55:53.000Z", + "fileChanged": "6", + "insertions": "165", + "deletions": "165", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-29T09:39:37.000Z", + "fileChanged": "2", + "insertions": "98", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-08-29T13:04:27.000Z", + "fileChanged": "25", + "insertions": "543", + "deletions": "198", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-29T12:28:24.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-29T12:19:27.000Z", + "fileChanged": "4", + "insertions": "25", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-29T12:05:42.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-29T12:02:11.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-29T11:57:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Domenic Denicola ", + "authorEmail": "domenic@domenicdenicola.com", + "date": "2013-08-24T23:46:31.000Z", + "fileChanged": "1", + "insertions": "176", + "deletions": "146", + "type": "Commit" + }, + { + "authorName": "Domenic Denicola ", + "authorEmail": "domenic@domenicdenicola.com", + "date": "2013-08-24T22:53:24.000Z", + "fileChanged": "17", + "insertions": "331", + "deletions": "88", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-08-28T21:35:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-28T18:29:33.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-28T17:11:17.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-28T16:35:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-27T19:11:13.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Domenic Denicola ", + "authorEmail": "domenic@domenicdenicola.com", + "date": "2013-08-24T19:45:02.000Z", + "fileChanged": "4", + "insertions": "72", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Domenic Denicola ", + "authorEmail": "domenic@domenicdenicola.com", + "date": "2013-08-24T01:33:16.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Domenic Denicola ", + "authorEmail": "domenic@domenicdenicola.com", + "date": "2013-08-24T01:17:15.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-28T02:52:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-28T02:52:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-28T01:09:26.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Mathias Buus ", + "authorEmail": "mathiasbuus@gmail.com", + "date": "2013-08-22T17:58:27.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-28T00:28:27.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Seth Fitzsimmons ", + "authorEmail": "seth@mojodna.net", + "date": "2013-07-13T23:34:52.000Z", + "fileChanged": "2", + "insertions": "74", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-27T22:18:12.000Z", + "fileChanged": "133", + "insertions": "5514", + "deletions": "3486", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-27T21:53:06.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "ogd@aoaioxxysz.net", + "date": "2013-03-14T21:11:15.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "56", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-27T17:35:14.000Z", + "fileChanged": "2", + "insertions": "38", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Jay Beavers ", + "authorEmail": "jay@hikinghomeschoolers.org", + "date": "2013-04-08T22:33:49.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-27T02:14:42.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-27T14:14:45.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-27T12:47:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-27T12:09:36.000Z", + "fileChanged": "1", + "deletions": "19", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-27T11:20:39.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-26T22:13:50.000Z", + "fileChanged": "5", + "insertions": "3", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-26T10:26:31.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-26T10:20:23.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-26T13:13:35.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-08-25T16:44:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-08-24T17:47:45.000Z", + "fileChanged": "9", + "insertions": "385", + "deletions": "134", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-21T23:12:17.000Z", + "fileChanged": "2", + "insertions": "61", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-08-23T17:08:49.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-08-23T17:04:27.000Z", + "fileChanged": "12", + "insertions": "420", + "deletions": "193", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-08-23T17:02:14.000Z", + "fileChanged": "7", + "insertions": "544", + "deletions": "273", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-23T00:01:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-23T12:29:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-23T10:00:28.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-22T01:38:23.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-22T05:18:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-22T01:17:11.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-22T00:19:41.000Z", + "fileChanged": "4", + "insertions": "108", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-21T23:59:15.000Z", + "fileChanged": "2", + "insertions": "80", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-21T23:55:27.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-21T23:38:30.000Z", + "fileChanged": "1", + "insertions": "92", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-21T23:37:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-21T23:37:31.000Z" + }, + { + "authorName": "Domenic Denicola ", + "authorEmail": "domenic@domenicdenicola.com", + "date": "2013-07-27T04:34:12.000Z", + "fileChanged": "34", + "insertions": "1206", + "deletions": "995", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-21T22:00:56.000Z", + "fileChanged": "3", + "insertions": "22", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-21T21:44:20.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-21T21:26:32.000Z", + "fileChanged": "1", + "insertions": "110", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-21T21:16:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-21T21:16:29.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-21T20:20:50.000Z", + "fileChanged": "3", + "insertions": "68", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-21T18:15:21.000Z", + "fileChanged": "28", + "insertions": "513", + "deletions": "268", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-21T18:11:02.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-21T17:51:42.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-21T16:40:10.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-08-21T08:33:09.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-21T01:33:20.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-08-21T11:58:33.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-20T17:55:42.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-20T17:30:40.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-20T17:12:29.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-20T18:05:36.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Vsevolod Strukchinsky ", + "authorEmail": "floatdrop@yandex-team.ru", + "date": "2013-08-20T12:31:40.000Z", + "fileChanged": "3", + "insertions": "67", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Gil Pedersen ", + "authorEmail": "git@gpost.dk", + "date": "2013-08-20T13:53:54.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-20T00:55:58.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-20T00:43:38.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Raynos ", + "authorEmail": "raynos2@gmail.com", + "date": "2013-05-13T19:04:06.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Matthew Aynalem ", + "authorEmail": "maynalem@gmail.com", + "date": "2013-08-12T22:01:05.000Z", + "fileChanged": "24", + "insertions": "27", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Duan Yao ", + "authorEmail": "duanyao@ustc.edu", + "date": "2012-12-04T10:12:10.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "ChrisWren ", + "authorEmail": "cthewren@gmail.com", + "date": "2013-08-11T19:30:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James Halliday ", + "authorEmail": "mail@substack.net", + "date": "2012-09-10T02:04:37.000Z", + "fileChanged": "2", + "insertions": "86", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Edward Hutchins ", + "authorEmail": "eahutchins@gmail.com", + "date": "2013-05-23T01:04:36.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Eivind Uggedal ", + "authorEmail": "eivind@uggedal.com", + "date": "2013-07-04T16:52:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-19T21:15:03.000Z" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-19T18:15:16.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-08-19T16:41:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-08-19T16:34:34.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-19T14:59:39.000Z", + "fileChanged": "2", + "insertions": "85", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-08-15T15:28:26.000Z", + "fileChanged": "5", + "insertions": "1095", + "deletions": "1668", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-19T14:39:04.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-17T20:57:41.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-09T00:33:40.000Z", + "fileChanged": "3", + "insertions": "57", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Daniel Chatfield ", + "authorEmail": "chatfielddaniel@gmail.com", + "date": "2013-07-30T13:43:31.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Daniel Chatfield ", + "authorEmail": "chatfielddaniel@gmail.com", + "date": "2013-07-30T13:43:31.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-16T19:47:54.000Z", + "fileChanged": "1", + "insertions": "74", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-16T19:47:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-16T19:46:56.000Z" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-16T18:32:56.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-16T15:31:10.000Z", + "fileChanged": "3", + "insertions": "24", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-16T15:19:31.000Z", + "fileChanged": "365", + "insertions": "5267", + "deletions": "10077", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-16T14:49:00.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-16T14:42:50.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-16T14:36:21.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-16T00:39:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-08-15T21:56:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-08-15T21:55:35.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-08-15T21:55:05.000Z", + "fileChanged": "19", + "insertions": "5", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-15T21:55:43.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-15T18:15:10.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-15T18:08:19.000Z", + "fileChanged": "4", + "insertions": "101", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-15T15:54:49.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-15T15:51:37.000Z", + "fileChanged": "3", + "insertions": "142", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-15T05:14:49.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-15T22:01:28.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-15T21:12:12.000Z", + "fileChanged": "1", + "insertions": "54", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-06T01:41:17.000Z", + "fileChanged": "3", + "insertions": "157", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-05T04:30:23.000Z", + "fileChanged": "2", + "insertions": "97", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-05T03:54:52.000Z", + "fileChanged": "2", + "insertions": "117", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-15T20:20:04.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-15T19:31:38.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-15T17:23:36.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-15T17:22:44.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-15T14:41:19.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-15T12:17:41.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-14T21:49:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-08-07T12:50:36.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-13T21:47:17.000Z", + "fileChanged": "4", + "insertions": "67", + "deletions": "54", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-14T15:45:40.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-13T10:07:49.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-13T09:56:44.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Matthias Bartelmeß ", + "authorEmail": "mba@fourplusone.de", + "date": "2013-08-12T22:21:54.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-12T21:47:04.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-12T21:39:13.000Z", + "fileChanged": "2", + "insertions": "174", + "deletions": "171", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-12T20:41:51.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-12T20:38:39.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-12T19:54:49.000Z", + "fileChanged": "13", + "insertions": "78", + "deletions": "78", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-12T18:34:18.000Z", + "fileChanged": "4", + "insertions": "38", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-06T00:58:29.000Z", + "fileChanged": "14", + "insertions": "201", + "deletions": "135", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-12T18:04:38.000Z", + "fileChanged": "2", + "deletions": "257", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-12T15:54:11.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-12T15:28:38.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-10T21:25:38.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-05T00:50:45.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-10T14:27:43.000Z", + "fileChanged": "220", + "insertions": "8371", + "deletions": "6745", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-10T13:40:26.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-02T09:50:45.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-10T11:34:57.000Z", + "fileChanged": "1", + "insertions": "235", + "deletions": "234", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-10T11:17:26.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-10T11:00:51.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-07T00:01:44.000Z", + "fileChanged": "4", + "insertions": "61", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-06T21:22:13.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-09T20:35:54.000Z", + "fileChanged": "4", + "insertions": "9", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-09T05:33:18.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-09T15:43:10.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-09T02:48:10.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-09T00:33:40.000Z", + "fileChanged": "3", + "insertions": "57", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-07T19:50:41.000Z", + "fileChanged": "29", + "insertions": "749", + "deletions": "514", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-27T00:05:36.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-26T02:33:15.000Z", + "fileChanged": "6", + "insertions": "48", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-19T23:15:25.000Z", + "fileChanged": "5", + "insertions": "300", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-02T17:11:35.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-07T19:30:46.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-07T17:23:45.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-07T16:03:13.000Z", + "fileChanged": "9", + "deletions": "20", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-07T15:21:25.000Z", + "fileChanged": "3", + "insertions": "19", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-07T15:14:16.000Z", + "fileChanged": "3", + "insertions": "84", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-07T12:53:49.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-07T12:45:37.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-07T00:14:53.000Z", + "fileChanged": "1", + "insertions": "88", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-07T00:13:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-07T00:13:17.000Z" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-06T22:42:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-06T21:41:21.000Z", + "fileChanged": "3", + "insertions": "45", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-06T21:35:33.000Z", + "fileChanged": "12", + "insertions": "113", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-08-06T16:30:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "9", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-06T18:54:28.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-06T15:42:28.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Eran Hammer ", + "authorEmail": "eran@hueniverse.com", + "date": "2013-08-05T09:56:40.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-06T13:47:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-06T13:36:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-08-03T17:29:54.000Z", + "fileChanged": "8", + "insertions": "162", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-08-02T12:16:13.000Z", + "fileChanged": "8", + "insertions": "536", + "deletions": "414", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-05T21:09:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Evan Solomon ", + "authorEmail": "evan@evanalyze.com", + "date": "2013-08-02T16:57:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-08-05T21:33:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-17T20:46:25.000Z", + "fileChanged": "8", + "insertions": "5132", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-05T20:56:05.000Z", + "fileChanged": "1", + "insertions": "220", + "deletions": "49", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-05T19:55:31.000Z", + "fileChanged": "2", + "insertions": "85", + "deletions": "85", + "type": "Commit" + }, + { + "authorName": "Koichi Kobayashi ", + "authorEmail": "koichik@improvement.jp", + "date": "2013-08-04T06:39:50.000Z", + "fileChanged": "3", + "insertions": "88", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-05T19:33:19.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "mstarzinger@chromium.org ", + "authorEmail": "mstarzinger@chromium.org", + "date": "2013-07-15T11:41:41.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Forrest L Norvell ", + "authorEmail": "ogd@aoaioxxysz.net", + "date": "2013-03-14T20:31:18.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "vieuxtech@gmail.com", + "date": "2013-08-02T19:41:24.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-05T00:50:45.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-08-02T16:11:17.000Z", + "fileChanged": "2", + "insertions": "131", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-03T20:50:15.000Z", + "fileChanged": "5", + "insertions": "9", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-03T20:18:35.000Z", + "fileChanged": "5", + "insertions": "12", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-08-03T09:09:02.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-02T23:28:51.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-08-02T21:55:01.000Z", + "fileChanged": "147", + "insertions": "8088", + "deletions": "198", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-01T21:53:52.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-02T21:12:56.000Z", + "fileChanged": "8", + "insertions": "19", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-02T20:00:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-02T19:52:43.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-02T19:52:34.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-02T11:52:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-26T21:38:08.000Z", + "fileChanged": "38", + "insertions": "439", + "deletions": "389", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-01T22:02:38.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-08-01T20:53:19.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-01T14:09:42.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-01T14:00:40.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-01T12:35:13.000Z", + "fileChanged": "2", + "insertions": "46", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-07-21T16:16:26.000Z", + "fileChanged": "3", + "insertions": "95", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-07-31T23:13:36.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-01T10:33:33.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-08-01T10:26:23.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-08-01T09:53:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-08-01T09:39:25.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-31T21:16:08.000Z", + "fileChanged": "22", + "insertions": "121", + "deletions": "122", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-31T20:34:34.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Antony Bailey ", + "authorEmail": "support@antonybailey.net", + "date": "2013-07-31T18:28:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-07-31T18:35:46.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-07-31T10:54:06.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-07-31T18:07:29.000Z", + "fileChanged": "63", + "insertions": "964", + "deletions": "875", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-07-31T18:05:31.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-30T22:06:45.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-31T03:50:26.000Z", + "fileChanged": "1", + "insertions": "93", + "deletions": "64", + "type": "Commit" + }, + { + "authorName": "Wyatt Preul ", + "authorEmail": "wpreul@gmail.com", + "date": "2013-06-11T20:56:03.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-30T12:27:13.000Z", + "fileChanged": "2", + "insertions": "52", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-30T12:26:11.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-29T19:00:33.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-02T07:27:26.000Z", + "fileChanged": "4", + "insertions": "180", + "deletions": "73", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-02T07:07:47.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-30T21:32:53.000Z", + "fileChanged": "26", + "insertions": "515", + "deletions": "100", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-29T18:36:11.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-30T19:42:47.000Z", + "fileChanged": "3", + "insertions": "89", + "deletions": "85", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-30T19:32:43.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-30T19:28:43.000Z", + "fileChanged": "4", + "insertions": "14", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-30T15:14:55.000Z", + "fileChanged": "211", + "insertions": "12314", + "deletions": "1688", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-30T13:19:48.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-30T11:28:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-26T22:43:23.000Z", + "fileChanged": "5", + "insertions": "49", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-29T03:07:07.000Z", + "fileChanged": "5", + "insertions": "7", + "deletions": "112", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-29T19:21:03.000Z", + "fileChanged": "313", + "insertions": "21648", + "deletions": "4030", + "type": "Commit" + }, + { + "authorName": "Andrew Paprocki ", + "authorEmail": "andrew@ishiboo.com", + "date": "2013-07-29T15:34:12.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-29T14:20:24.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-07-29T09:33:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-28T17:07:59.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-28T12:50:03.000Z", + "fileChanged": "2", + "insertions": "100", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-28T10:19:34.000Z", + "fileChanged": "4", + "insertions": "117", + "deletions": "70", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-28T09:36:12.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-27T22:05:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andrew Chilton ", + "authorEmail": "andychilton@gmail.com", + "date": "2013-07-27T11:13:55.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2013-07-27T05:20:08.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "me@mmalecki.com", + "date": "2013-07-26T21:48:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dav Glass ", + "authorEmail": "davglass@gmail.com", + "date": "2013-07-24T18:17:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-24T23:05:54.000Z", + "fileChanged": "6", + "insertions": "73", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-07-25T14:27:26.000Z", + "fileChanged": "10", + "insertions": "11113", + "deletions": "5148", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-25T10:24:40.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-26T00:03:21.000Z", + "fileChanged": "1", + "insertions": "58", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-26T00:03:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-26T00:02:38.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-25T23:26:15.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-25T22:24:27.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-25T21:21:52.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-25T20:54:55.000Z", + "fileChanged": "1", + "insertions": "72", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-25T20:54:16.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-25T20:53:45.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-25T18:49:01.000Z", + "fileChanged": "3", + "insertions": "23", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-25T17:48:29.000Z", + "fileChanged": "6", + "insertions": "21", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-07-21T03:11:02.000Z", + "fileChanged": "4", + "insertions": "187", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-07-21T03:09:47.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-24T20:37:20.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-24T20:23:44.000Z", + "fileChanged": "191", + "insertions": "1323", + "deletions": "1247", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-24T20:13:43.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-24T16:03:53.000Z", + "fileChanged": "38", + "insertions": "409", + "deletions": "432", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-24T16:13:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-24T10:53:28.000Z", + "fileChanged": "3", + "insertions": "19", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-24T16:48:48.000Z", + "fileChanged": "1", + "deletions": "10", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-23T23:56:22.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-23T18:02:47.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-23T17:43:48.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-23T15:09:09.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-23T11:28:14.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "David Björklund ", + "authorEmail": "david.bjorklund@gmail.com", + "date": "2013-07-04T14:22:31.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-23T00:04:17.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-18T01:24:02.000Z", + "fileChanged": "11", + "insertions": "433", + "deletions": "201", + "type": "Commit" + }, + { + "authorName": "Wyatt Preul ", + "authorEmail": "wpreul@gmail.com", + "date": "2013-07-20T05:56:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-03T02:23:36.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-22T22:53:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-22T22:26:27.000Z", + "fileChanged": "464", + "insertions": "23465", + "deletions": "12032", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-20T19:42:20.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-20T10:34:53.000Z", + "fileChanged": "4", + "insertions": "275", + "deletions": "275", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-19T21:59:41.000Z", + "fileChanged": "3", + "insertions": "103", + "deletions": "104", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-19T21:33:06.000Z", + "fileChanged": "7", + "insertions": "26", + "deletions": "67", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-18T21:18:50.000Z", + "fileChanged": "25", + "insertions": "725", + "deletions": "781", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-16T21:28:38.000Z", + "fileChanged": "8", + "insertions": "28", + "deletions": "92", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-16T21:08:25.000Z", + "fileChanged": "3", + "insertions": "63", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-16T19:04:31.000Z", + "fileChanged": "141", + "insertions": "5367", + "deletions": "5152", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-06T02:31:12.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-04T10:45:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-12T23:29:54.000Z", + "fileChanged": "3", + "insertions": "32", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-19T20:35:23.000Z", + "fileChanged": "4", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-02T13:11:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-19T10:46:11.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-12T22:18:21.000Z", + "fileChanged": "10", + "insertions": "298", + "deletions": "125", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-19T19:47:06.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-18T18:47:56.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-18T01:32:23.000Z" + }, + { + "authorName": "Shuan Wang ", + "authorEmail": "shuanwang@gmail.com", + "date": "2013-07-17T20:10:09.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-13T22:20:27.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-16T00:48:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-15T23:56:02.000Z", + "fileChanged": "2", + "insertions": "1078", + "deletions": "352", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-15T18:08:23.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-15T03:08:07.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-13T12:07:26.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-13T00:04:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-12T22:18:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-12T22:17:16.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-12T22:16:33.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-12T22:12:49.000Z", + "fileChanged": "1", + "insertions": "88", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-12T20:51:04.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-12T20:26:56.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-12T20:14:50.000Z", + "fileChanged": "112", + "insertions": "127", + "deletions": "908", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-12T15:56:59.000Z", + "fileChanged": "1860", + "insertions": "33682", + "deletions": "80234", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-12T15:55:57.000Z", + "fileChanged": "666", + "insertions": "30424", + "deletions": "30871", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-11T23:04:49.000Z", + "fileChanged": "2", + "insertions": "59", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-11T22:58:11.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-11T13:37:00.000Z", + "fileChanged": "5", + "insertions": "46", + "deletions": "59", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-10T17:35:57.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-27T17:53:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-10T07:48:55.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-09T22:58:15.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-09T21:29:16.000Z", + "fileChanged": "1", + "insertions": "76", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-09T21:28:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-09T21:28:05.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-09T20:32:22.000Z", + "fileChanged": "3", + "insertions": "27", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-09T20:48:24.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-09T20:20:38.000Z", + "fileChanged": "17", + "insertions": "139", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-07-09T20:09:02.000Z", + "fileChanged": "1267", + "insertions": "3297", + "deletions": "35141", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-06-23T22:33:13.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-07-08T18:25:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-26T16:13:48.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-07T12:34:49.000Z", + "fileChanged": "5", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-07T12:24:18.000Z", + "fileChanged": "8", + "insertions": "55", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-09T16:54:10.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-30T23:08:03.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-23T01:44:24.000Z", + "fileChanged": "9", + "insertions": "128", + "deletions": "86", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-21T21:02:18.000Z", + "fileChanged": "5", + "insertions": "136", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-15T22:10:53.000Z", + "fileChanged": "3", + "insertions": "149", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-15T21:24:08.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-07-08T02:11:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-07-06T03:53:23.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-09T03:58:39.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-08T05:03:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-08T23:53:41.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-05T23:21:09.000Z", + "fileChanged": "1", + "insertions": "31", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-05T23:31:27.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-06T20:18:39.000Z", + "fileChanged": "7", + "insertions": "646", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Peter Rust ", + "authorEmail": "peter@cornerstonenw.com", + "date": "2013-07-08T04:11:22.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-08T01:20:07.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-06T16:48:52.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-06T02:31:02.000Z", + "fileChanged": "1", + "insertions": "111", + "deletions": "95", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-05T20:42:06.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-29T06:16:25.000Z", + "fileChanged": "4", + "insertions": "34", + "deletions": "349", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-29T05:30:11.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-29T05:16:46.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-03T02:23:44.000Z", + "fileChanged": "43", + "insertions": "2241", + "deletions": "3609", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-06T12:59:15.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-03T02:23:36.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-02T15:11:31.000Z", + "fileChanged": "1186", + "insertions": "168891", + "deletions": "14357", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-06T22:05:04.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-07-05T23:59:45.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-07-05T23:49:11.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-07-05T22:03:04.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Tim Oxley ", + "authorEmail": "secoif@gmail.com", + "date": "2013-07-05T03:57:13.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-05T00:40:39.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-07-05T00:20:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jeff Barczewski ", + "authorEmail": "jeff.barczewski@gmail.com", + "date": "2013-03-31T03:32:06.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-06-21T18:35:29.000Z", + "fileChanged": "10", + "insertions": "30", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-06-20T23:44:02.000Z", + "fileChanged": "6", + "insertions": "59", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-06-19T18:20:45.000Z", + "fileChanged": "6", + "insertions": "30", + "deletions": "227", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-27T17:53:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-07-03T07:46:01.000Z", + "fileChanged": "3", + "insertions": "43", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-01T21:29:15.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Peter Rust ", + "authorEmail": "peter@cornerstonenw.com", + "date": "2013-07-01T22:46:49.000Z", + "fileChanged": "2", + "insertions": "66", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-07-01T21:29:15.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-07-01T09:42:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-07-01T09:42:19.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-07-01T09:44:17.000Z", + "fileChanged": "4", + "insertions": "99", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-07-01T09:44:03.000Z", + "fileChanged": "3", + "insertions": "45", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-07-01T09:42:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-07-01T09:42:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-07-01T09:42:19.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-28T10:31:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-27T01:18:41.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-27T00:06:40.000Z", + "fileChanged": "1", + "insertions": "101", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-26T23:55:46.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-26T23:37:29.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-26T18:03:29.000Z", + "fileChanged": "3", + "insertions": "53", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Miroslav Bajtos ", + "authorEmail": "miro.bajtos@gmail.com", + "date": "2013-06-17T19:19:59.000Z", + "fileChanged": "9", + "insertions": "211", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-26T17:48:10.000Z", + "fileChanged": "32", + "insertions": "613", + "deletions": "163", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-25T21:31:10.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-25T18:12:33.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-25T10:47:24.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-24T09:16:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-20T21:13:28.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2013-06-02T12:25:51.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-20T11:21:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2013-06-20T10:40:44.000Z", + "fileChanged": "1", + "insertions": "54", + "deletions": "56", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-06-20T00:10:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-06-19T20:07:24.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-19T08:16:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-06-07T17:31:53.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-24T17:58:30.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-04-26T23:58:18.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-04-29T05:13:45.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-15T18:01:33.000Z", + "fileChanged": "3", + "insertions": "97", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-04-17T23:29:14.000Z", + "fileChanged": "2", + "insertions": "58", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-04-17T23:26:15.000Z", + "fileChanged": "20", + "insertions": "695", + "deletions": "1286", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-14T23:27:10.000Z", + "fileChanged": "4", + "insertions": "88", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-04-17T23:18:47.000Z", + "fileChanged": "7", + "insertions": "575", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "vieuxtech@gmail.com", + "date": "2013-06-11T23:49:56.000Z", + "fileChanged": "5", + "insertions": "79", + "deletions": "79", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-18T18:15:09.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-18T18:14:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-18T18:13:26.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-18T16:50:53.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-18T16:42:42.000Z", + "fileChanged": "148", + "insertions": "1962", + "deletions": "300", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2013-06-16T07:30:50.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2013-06-13T05:05:33.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-06-17T23:15:25.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-17T21:25:01.000Z", + "fileChanged": "13", + "insertions": "36", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "vieuxtech@gmail.com", + "date": "2013-06-11T23:49:56.000Z", + "fileChanged": "5", + "insertions": "80", + "deletions": "80", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-06-17T17:26:07.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Linus Mårtensson ", + "authorEmail": "linus.martensson@sonymobile.com", + "date": "2013-05-08T12:10:07.000Z", + "fileChanged": "6", + "insertions": "57", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Krzysztof Chrapka ", + "authorEmail": "chrapka.k@gmail.com", + "date": "2013-06-04T15:01:14.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Yuan Chuan ", + "authorEmail": "yuanchuan23@gmail.com", + "date": "2013-06-15T07:48:36.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-03T20:29:29.000Z", + "fileChanged": "7", + "insertions": "610", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-17T10:11:13.000Z", + "fileChanged": "7", + "insertions": "480", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-14T22:57:11.000Z", + "fileChanged": "2", + "insertions": "81", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-17T01:56:00.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-16T23:23:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-16T23:22:41.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-13T19:47:31.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-13T13:36:00.000Z", + "fileChanged": "15", + "insertions": "1455", + "deletions": "1764", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-11T10:59:10.000Z", + "fileChanged": "6", + "insertions": "1375", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-11T10:55:49.000Z", + "fileChanged": "2", + "insertions": "219", + "deletions": "122", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-11T10:52:27.000Z", + "fileChanged": "9", + "insertions": "88", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-13T11:29:15.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-11T14:11:48.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-15T18:33:17.000Z", + "fileChanged": "1", + "insertions": "92", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-14T17:26:15.000Z", + "fileChanged": "1", + "insertions": "0", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-14T17:25:47.000Z", + "fileChanged": "2", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Andrei Sedoi ", + "authorEmail": "bsnote@gmail.com", + "date": "2013-06-14T14:48:49.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-13T10:59:29.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-11T10:49:03.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Andrei Sedoi ", + "authorEmail": "bsnote@gmail.com", + "date": "2013-06-14T12:49:14.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-13T20:22:46.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-13T20:22:07.000Z", + "fileChanged": "1", + "insertions": "59", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-13T18:37:18.000Z", + "fileChanged": "1", + "insertions": "70", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-13T18:37:04.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-13T18:36:41.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-13T17:35:30.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Veres Lajos ", + "authorEmail": "vlajos@gmail.com", + "date": "2013-06-12T22:51:17.000Z", + "fileChanged": "5", + "insertions": "14", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Andrei Sedoi ", + "authorEmail": "bsnote@gmail.com", + "date": "2013-06-12T15:47:10.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-13T00:45:30.000Z", + "fileChanged": "6", + "insertions": "18", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-06-11T21:30:16.000Z", + "fileChanged": "2", + "insertions": "136", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-06-09T22:54:30.000Z", + "fileChanged": "1", + "insertions": "113", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-12T20:10:39.000Z", + "fileChanged": "4", + "insertions": "38", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-12T17:59:44.000Z", + "fileChanged": "117", + "insertions": "460", + "deletions": "193", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-06-09T21:34:11.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-06-09T21:20:01.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-11T22:24:41.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-11T22:07:26.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-08T18:34:11.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-11T21:45:46.000Z", + "fileChanged": "313", + "insertions": "17426", + "deletions": "10853", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-06-11T21:39:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-10T21:34:11.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-06-07T11:31:24.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-07T14:47:54.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-06-04T00:05:56.000Z", + "fileChanged": "3", + "insertions": "28", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-06T21:44:48.000Z", + "fileChanged": "230", + "insertions": "126", + "deletions": "14670", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-05T20:38:38.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-05T06:43:29.000Z", + "fileChanged": "2", + "insertions": "141", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-04T21:38:41.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-04T21:38:29.000Z", + "fileChanged": "1", + "insertions": "63", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-04T21:38:10.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-04T19:13:46.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-04T19:11:03.000Z", + "fileChanged": "10", + "insertions": "113", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-21T21:04:58.000Z", + "fileChanged": "1", + "deletions": "12", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-04T18:42:32.000Z", + "fileChanged": "203", + "insertions": "332", + "deletions": "207", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-04T18:22:14.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-04T18:19:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-04T18:12:54.000Z", + "fileChanged": "1", + "insertions": "63", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-04T18:12:44.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-06-04T10:21:58.000Z", + "fileChanged": "8", + "insertions": "110", + "deletions": "152", + "type": "Commit" + }, + { + "authorName": "Nick Desaulniers ", + "authorEmail": "ndesaulniers@mozilla.com", + "date": "2013-06-04T07:09:00.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-03T23:02:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-03T20:39:57.000Z", + "fileChanged": "2", + "insertions": "86", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-06-03T17:50:02.000Z", + "fileChanged": "2", + "insertions": "82", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-31T18:52:57.000Z" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-30T23:51:41.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-30T22:09:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-30T17:33:29.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "59", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-30T18:28:07.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-30T18:27:50.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-30T17:31:07.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-30T17:19:45.000Z", + "fileChanged": "280", + "insertions": "20530", + "deletions": "895", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-30T08:38:19.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-29T22:19:34.000Z", + "fileChanged": "6", + "insertions": "8", + "deletions": "138", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-29T21:52:10.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Andrew Paprocki ", + "authorEmail": "andrew@ishiboo.com", + "date": "2013-05-28T17:16:16.000Z", + "fileChanged": "3", + "insertions": "48", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Kiyoshi Nomo ", + "authorEmail": "tokyoincidents.g@gmail.com", + "date": "2013-05-22T14:22:21.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2013-05-25T20:03:02.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-05-26T16:26:39.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-05-29T03:36:26.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-05-30T09:35:24.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-05-29T23:09:54.000Z", + "fileChanged": "21", + "insertions": "414", + "deletions": "113", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-26T19:42:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-26T19:41:20.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-26T19:21:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-26T19:17:35.000Z", + "fileChanged": "1", + "insertions": "36", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-26T18:32:37.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-26T18:04:17.000Z", + "fileChanged": "9", + "insertions": "7", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-26T15:06:45.000Z", + "fileChanged": "11", + "insertions": "44", + "deletions": "34", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-29T21:12:11.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-29T14:35:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Daniel G. Taylor ", + "authorEmail": "dan@programmer-art.org", + "date": "2013-05-15T19:16:09.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Daniel G. Taylor ", + "authorEmail": "dan@programmer-art.org", + "date": "2013-05-15T19:14:20.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-28T19:10:14.000Z", + "fileChanged": "5", + "insertions": "43", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-05-27T10:44:33.000Z", + "fileChanged": "2", + "insertions": "144", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-05-28T13:50:38.000Z", + "fileChanged": "3", + "insertions": "47", + "deletions": "11", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-25T00:16:08.000Z" + }, + { + "authorName": "Rafael Henrique Moreira ", + "authorEmail": "rafadev7@gmail.com", + "date": "2013-05-25T03:49:49.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rafael Henrique Moreira ", + "authorEmail": "rafadev7@gmail.com", + "date": "2013-05-25T04:01:25.000Z", + "fileChanged": "1", + "deletions": "8", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-24T22:45:59.000Z", + "fileChanged": "1", + "insertions": "75", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-24T22:45:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-24T22:44:04.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-24T21:45:24.000Z", + "fileChanged": "3", + "insertions": "26", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-24T22:06:03.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-05-24T21:02:34.000Z", + "fileChanged": "2", + "insertions": "58", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-24T21:41:43.000Z", + "fileChanged": "106", + "insertions": "115", + "deletions": "114", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-24T21:41:00.000Z", + "fileChanged": "8", + "insertions": "136", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Nathan Zadoks ", + "authorEmail": "nathan@nathan7.eu", + "date": "2013-05-24T17:34:38.000Z", + "fileChanged": "6", + "insertions": "28", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-24T15:57:30.000Z", + "fileChanged": "1", + "deletions": "14", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-23T23:23:07.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-23T22:12:13.000Z", + "fileChanged": "2", + "insertions": "96", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-23T20:40:40.000Z", + "fileChanged": "10", + "insertions": "48", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-23T20:57:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-23T20:39:12.000Z", + "fileChanged": "13", + "insertions": "49", + "deletions": "49", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-03-31T03:56:39.000Z", + "fileChanged": "2", + "insertions": "180", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-03-31T02:51:17.000Z", + "fileChanged": "4", + "insertions": "10", + "deletions": "117", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-22T18:32:54.000Z", + "fileChanged": "3", + "insertions": "16", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-22T19:43:35.000Z", + "fileChanged": "2", + "insertions": "87", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-22T23:09:06.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-22T20:04:41.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-08T18:34:11.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-22T19:56:12.000Z", + "fileChanged": "194", + "insertions": "8638", + "deletions": "5465", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-22T18:42:38.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-22T11:47:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-05-21T16:26:42.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-17T22:07:28.000Z", + "fileChanged": "2", + "insertions": "54", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-17T22:04:24.000Z", + "fileChanged": "1", + "insertions": "108", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-21T22:22:05.000Z", + "fileChanged": "16", + "insertions": "296", + "deletions": "185", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-20T21:37:55.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-20T21:43:14.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-18T00:19:12.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-20T19:35:31.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-20T13:14:30.000Z", + "fileChanged": "3", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-17T23:58:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Robert Kowalski ", + "authorEmail": "rok@kowalski.gd", + "date": "2013-05-17T18:20:20.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-17T21:38:02.000Z", + "fileChanged": "1", + "insertions": "65", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-17T21:37:44.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-17T21:37:28.000Z" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-17T20:04:02.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-17T20:59:10.000Z", + "fileChanged": "3", + "insertions": "17", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brandon Frohs ", + "authorEmail": "bfrohs@gmail.com", + "date": "2013-05-16T14:03:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-17T20:55:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-16T22:45:53.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-16T22:58:33.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-15T15:52:00.000Z", + "fileChanged": "3", + "insertions": "16", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryuichi Okumura ", + "authorEmail": "okuryu@okuryu.com", + "date": "2013-04-07T08:40:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryuichi Okumura ", + "authorEmail": "okuryu@okuryu.com", + "date": "2013-04-07T08:19:50.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-15T21:58:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-04-16T23:18:07.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-21T11:19:03.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Robert Kowalski ", + "authorEmail": "rok@kowalski.gd", + "date": "2013-05-11T20:43:11.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-15T20:25:45.000Z", + "fileChanged": "4", + "insertions": "40", + "deletions": "81", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-07T18:55:12.000Z", + "fileChanged": "4", + "insertions": "60", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-15T20:46:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-15T19:25:11.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2013-04-08T16:59:58.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2013-04-08T16:59:15.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-05-15T00:13:42.000Z", + "fileChanged": "14", + "insertions": "233", + "deletions": "217", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-05-14T23:52:47.000Z", + "fileChanged": "3", + "insertions": "48", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-14T21:41:41.000Z", + "fileChanged": "18", + "insertions": "470", + "deletions": "184", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-14T21:37:59.000Z", + "fileChanged": "501", + "insertions": "21784", + "deletions": "20314", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-14T21:35:14.000Z", + "fileChanged": "1", + "insertions": "65", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-14T21:33:56.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-14T21:33:33.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-08T19:56:08.000Z", + "fileChanged": "4", + "insertions": "235", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-03T01:38:04.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-14T18:42:16.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-03T01:34:25.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-02T22:32:32.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-02T19:28:48.000Z", + "fileChanged": "2", + "insertions": "102", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-02T17:44:45.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "550", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-02T17:49:20.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "90", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-01T22:40:13.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "66", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-01T22:40:43.000Z", + "fileChanged": "3", + "insertions": "703", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-01T22:36:09.000Z", + "fileChanged": "1", + "deletions": "14", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-02T19:25:50.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-30T22:09:54.000Z", + "fileChanged": "3", + "insertions": "24", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-30T22:02:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-30T21:50:21.000Z", + "fileChanged": "3", + "insertions": "164", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-14T18:35:43.000Z", + "fileChanged": "1", + "insertions": "87", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Benoit Vallée ", + "authorEmail": "github@benoitvallee.net", + "date": "2013-04-30T04:25:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-14T10:31:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-13T23:54:58.000Z", + "fileChanged": "60", + "insertions": "964", + "deletions": "778", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-13T22:54:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-13T22:54:05.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-13T21:54:38.000Z", + "fileChanged": "3", + "insertions": "54", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-13T21:24:36.000Z", + "fileChanged": "110", + "insertions": "146", + "deletions": "128", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-23T13:11:17.000Z", + "fileChanged": "2", + "insertions": "313", + "deletions": "51", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-05-13T18:13:39.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-10T18:19:17.000Z", + "fileChanged": "2", + "insertions": "92", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nick Sullivan ", + "authorEmail": "nick@sullivanflock.com", + "date": "2013-05-10T01:19:02.000Z", + "fileChanged": "2", + "insertions": "61", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-13T04:46:52.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-13T04:45:05.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-13T02:28:59.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-08T18:34:11.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-13T01:28:40.000Z", + "fileChanged": "197", + "insertions": "9019", + "deletions": "3141", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-11T00:45:37.000Z", + "fileChanged": "497", + "insertions": "21746", + "deletions": "20294", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-10T23:40:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-10T22:30:53.000Z", + "fileChanged": "32", + "insertions": "641", + "deletions": "398", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-09T22:15:39.000Z", + "fileChanged": "11", + "insertions": "32", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-08T21:28:56.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "100", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-08T20:29:54.000Z", + "fileChanged": "2", + "insertions": "132", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-08T19:54:29.000Z", + "fileChanged": "3", + "insertions": "53", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-06T23:37:03.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Robert Kowalski ", + "authorEmail": "rok@kowalski.gd", + "date": "2013-05-06T19:53:35.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Kelly ", + "authorEmail": "ben@wanderview.com", + "date": "2013-02-10T22:19:43.000Z", + "fileChanged": "3", + "insertions": "29", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Miroslav Bajtoš ", + "authorEmail": "miro.bajtos@gmail.com", + "date": "2013-05-02T14:42:49.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Miroslav Bajtoš ", + "authorEmail": "miro.bajtos@gmail.com", + "date": "2013-05-02T06:34:22.000Z", + "fileChanged": "7", + "insertions": "397", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Daniel Moore ", + "authorEmail": "polaris@northhorizon.net", + "date": "2013-05-01T17:46:31.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Daniel Moore ", + "authorEmail": "polaris@northhorizon.net", + "date": "2013-04-29T13:25:08.000Z", + "fileChanged": "2", + "insertions": "66", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-07T22:17:33.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-07T22:17:33.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-05-07T22:01:42.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-05-07T19:38:14.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-07T18:59:22.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-07T18:59:22.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-06T18:31:57.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-02T20:54:37.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-05-02T20:54:37.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Kevin Locke ", + "authorEmail": "kevin@kevinlocke.name", + "date": "2013-04-26T23:14:39.000Z", + "fileChanged": "1", + "deletions": "8", + "insertions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-05-03T09:33:47.000Z" + }, + { + "authorName": "Miroslav Bajtoš ", + "authorEmail": "miro.bajtos@gmail.com", + "date": "2013-05-03T06:51:51.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "vieuxtech@gmail.com", + "date": "2013-05-02T23:38:16.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "vieuxtech@gmail.com", + "date": "2013-04-30T22:26:14.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-02T23:13:44.000Z" + }, + { + "authorName": "Sam Roberts ", + "authorEmail": "vieuxtech@gmail.com", + "date": "2013-04-30T22:24:48.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-05-02T16:47:46.000Z", + "fileChanged": "10", + "insertions": "61", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Miroslav Bajtoš ", + "authorEmail": "miro.bajtos@gmail.com", + "date": "2013-04-26T06:05:33.000Z", + "fileChanged": "6", + "insertions": "175", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-05-01T14:21:21.000Z", + "fileChanged": "512", + "insertions": "42009", + "deletions": "21212", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-30T14:40:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-30T10:43:32.000Z", + "fileChanged": "3", + "insertions": "221", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Andrew Paprocki ", + "authorEmail": "andrew@ishiboo.com", + "date": "2012-10-08T19:24:08.000Z", + "fileChanged": "8", + "insertions": "252", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-29T21:08:02.000Z", + "fileChanged": "2", + "insertions": "98", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-08T18:34:11.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-29T20:35:21.000Z", + "fileChanged": "225", + "insertions": "8583", + "deletions": "3787", + "type": "Commit" + }, + { + "authorName": "Miroslav Bajtoš ", + "authorEmail": "miro.bajtos@gmail.com", + "date": "2013-04-29T12:09:26.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-29T12:15:07.000Z", + "fileChanged": "512", + "insertions": "42009", + "deletions": "21212", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-29T12:12:24.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-29T12:08:51.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-26T12:49:54.000Z", + "fileChanged": "512", + "insertions": "21235", + "deletions": "42032", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-29T10:06:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-29T05:10:24.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-28T06:41:16.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-08T22:04:38.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-08T12:40:31.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-08T12:40:21.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-09T08:56:56.000Z", + "fileChanged": "4", + "insertions": "333", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-14T12:15:15.000Z", + "fileChanged": "2", + "insertions": "99", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Miroslav Bajtoš ", + "authorEmail": "miro.bajtos@gmail.com", + "date": "2013-04-26T06:05:33.000Z", + "fileChanged": "6", + "insertions": "167", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Miroslav Bajtoš ", + "authorEmail": "miro.bajtos@gmail.com", + "date": "2013-04-26T19:07:56.000Z", + "fileChanged": "4", + "insertions": "179", + "deletions": "113", + "type": "Commit" + }, + { + "authorName": "Miroslav Bajtoš ", + "authorEmail": "miro.bajtos@gmail.com", + "date": "2013-04-26T19:09:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Miroslav Bajtoš ", + "authorEmail": "miro.bajtos@gmail.com", + "date": "2013-04-26T19:07:56.000Z", + "fileChanged": "4", + "insertions": "179", + "deletions": "113", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-25T20:01:24.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-25T20:02:42.000Z", + "fileChanged": "2", + "insertions": "126", + "deletions": "126", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-25T20:00:06.000Z", + "fileChanged": "1", + "deletions": "77", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-04-24T17:15:36.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-23T21:43:46.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-23T21:08:01.000Z", + "fileChanged": "1", + "insertions": "73", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-23T21:07:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-23T21:07:09.000Z" + }, + { + "authorName": "Olof Johansson ", + "authorEmail": "olof@ethup.se", + "date": "2013-04-23T18:17:09.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-23T01:00:41.000Z", + "fileChanged": "3", + "insertions": "29", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Miroslav Bajtoš ", + "authorEmail": "miro.bajtos@gmail.com", + "date": "2013-04-23T07:38:17.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-23T00:39:05.000Z", + "fileChanged": "8", + "insertions": "87", + "deletions": "104", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-22T17:18:46.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-22T15:52:42.000Z", + "fileChanged": "3", + "insertions": "89", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-22T15:52:42.000Z", + "fileChanged": "2", + "insertions": "95", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-19T15:32:24.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-08T15:43:20.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "mscdex ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-04-21T03:21:13.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "mscdex ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-04-21T03:21:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-15T12:17:17.000Z", + "fileChanged": "1", + "insertions": "237", + "deletions": "505", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-19T23:25:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-04T15:45:27.000Z", + "fileChanged": "3", + "insertions": "53", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-08T18:34:11.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-19T17:50:44.000Z", + "fileChanged": "106", + "insertions": "1079", + "deletions": "6550", + "type": "Commit" + }, + { + "authorName": "Ryan Doenges ", + "authorEmail": "rhdoenges@gmail.com", + "date": "2013-04-14T19:44:40.000Z", + "fileChanged": "3", + "insertions": "52", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-19T16:21:29.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-19T16:14:44.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-19T16:14:24.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-19T16:12:34.000Z", + "fileChanged": "1", + "insertions": "79", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-19T16:12:22.000Z", + "fileChanged": "1", + "insertions": "85", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-19T14:39:44.000Z", + "fileChanged": "3", + "insertions": "34", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-19T15:32:24.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-04-18T23:52:07.000Z", + "fileChanged": "8", + "insertions": "31", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-19T12:54:21.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Sean Silva ", + "authorEmail": "chisophugis@gmail.com", + "date": "2013-04-18T22:34:12.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-18T23:21:24.000Z" + }, + { + "authorName": "Ryan Doenges ", + "authorEmail": "rhdoenges@gmail.com", + "date": "2013-04-14T01:48:00.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-18T20:06:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-18T10:14:30.000Z" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-04-17T18:45:13.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-04-17T22:37:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-17T22:44:53.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-17T21:59:49.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-17T14:59:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-08T18:34:11.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-17T14:10:37.000Z", + "fileChanged": "288", + "insertions": "15770", + "deletions": "11359", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-04-11T23:11:12.000Z", + "fileChanged": "4", + "insertions": "500", + "deletions": "461", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-04-11T23:00:19.000Z", + "fileChanged": "5", + "insertions": "475", + "deletions": "429", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-04-11T22:37:14.000Z", + "fileChanged": "4", + "insertions": "666", + "deletions": "614", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-04-11T22:15:41.000Z", + "fileChanged": "3", + "insertions": "213", + "deletions": "180", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-04-11T22:00:45.000Z", + "fileChanged": "3", + "insertions": "184", + "deletions": "153", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-04-11T21:47:15.000Z", + "fileChanged": "3", + "insertions": "160", + "deletions": "130", + "type": "Commit" + }, + { + "authorName": "Kelly Gerber ", + "authorEmail": "kellygerber22@yahoo.com", + "date": "2013-04-09T20:36:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Graham ", + "authorEmail": "r.m.graham@gmail.com", + "date": "2013-04-16T20:52:52.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-16T20:59:35.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Stanislav Ochotnicky ", + "authorEmail": "sochotnicky@redhat.com", + "date": "2013-04-16T07:51:56.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Stanislav Ochotnicky ", + "authorEmail": "sochotnicky@redhat.com", + "date": "2013-04-10T13:38:02.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-15T20:36:49.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-15T19:05:20.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-15T18:51:28.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-12T14:16:18.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-12T13:54:31.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-12T23:27:42.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-12T18:39:28.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-12T15:43:05.000Z", + "fileChanged": "31", + "insertions": "369", + "deletions": "142", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-12T15:30:11.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-12T03:40:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-11T22:01:26.000Z", + "fileChanged": "3", + "insertions": "180", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-11T18:07:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-11T18:06:37.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-11T18:06:07.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-11T18:05:53.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-11T16:39:16.000Z", + "fileChanged": "3", + "insertions": "38", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-11T16:16:47.000Z", + "fileChanged": "338", + "insertions": "34400", + "deletions": "2427", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-11T16:07:22.000Z", + "fileChanged": "25", + "insertions": "291", + "deletions": "107", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-11T11:50:45.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-11T11:18:02.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-04-09T23:17:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-04-09T22:31:22.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-04-09T23:36:38.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-04-09T22:29:03.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-04-09T22:19:47.000Z", + "fileChanged": "6", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-10T13:25:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-06T19:26:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-06T19:26:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-06T18:47:53.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-10T11:50:59.000Z", + "fileChanged": "4", + "insertions": "5", + "deletions": "421", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-10T10:21:41.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-09T23:38:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2013-04-09T10:39:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-09T00:41:49.000Z", + "fileChanged": "1", + "insertions": "69", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Łukasz Walukiewicz ", + "authorEmail": "lukasz@walukiewicz.eu", + "date": "2013-04-05T14:48:18.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-08T18:00:26.000Z", + "fileChanged": "2", + "insertions": "44", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-08T18:34:11.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-08T18:25:29.000Z", + "fileChanged": "203", + "insertions": "6256", + "deletions": "3512", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-08T15:46:51.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-08T14:00:18.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2013-04-08T05:13:23.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-06T19:26:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-06T19:26:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-06T18:47:53.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2013-04-08T08:32:53.000Z", + "fileChanged": "2", + "insertions": "66", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-08T07:48:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-07T22:41:33.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-07T20:50:40.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-07T14:03:27.000Z", + "fileChanged": "2", + "insertions": "74", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tobias Müllerleile ", + "authorEmail": "tobias@muellerleile.net", + "date": "2013-04-04T19:10:53.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rafael Garcia ", + "authorEmail": "rgarcia2009@gmail.com", + "date": "2013-04-04T19:54:57.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rafael Garcia ", + "authorEmail": "rgarcia2009@gmail.com", + "date": "2013-04-04T19:18:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-05T18:32:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-05T18:07:53.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "59", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-05T16:02:48.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-03T12:58:10.000Z", + "fileChanged": "4", + "insertions": "412", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-04-03T23:59:36.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Paddy Byers ", + "authorEmail": "paddy.byers@gmail.com", + "date": "2013-04-03T07:35:39.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-03T18:27:04.000Z", + "fileChanged": "1", + "insertions": "77", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-03T18:26:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-03T18:27:55.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-03T18:11:32.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-03T17:30:57.000Z", + "fileChanged": "3", + "insertions": "29", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-01T22:46:51.000Z", + "fileChanged": "2", + "insertions": "55", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-03T17:17:04.000Z", + "fileChanged": "210", + "insertions": "726", + "deletions": "213", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-03T17:01:50.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-04-01T20:07:24.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-03T16:43:17.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-03-30T03:46:36.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-30T00:49:19.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-03-28T23:51:52.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2013-03-28T20:52:43.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2013-03-28T18:36:00.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2013-04-02T16:27:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-04-02T00:19:05.000Z", + "fileChanged": "2", + "insertions": "75", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Andrew Hart ", + "authorEmail": "hartandrewr@gmail.com", + "date": "2013-03-31T06:16:52.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-30T01:23:39.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michael Hart ", + "authorEmail": "michael.hart.au@gmail.com", + "date": "2013-03-30T01:29:50.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-03-30T03:46:36.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2013-03-28T23:16:12.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Mitar ", + "authorEmail": "mitar.git@tnode.com", + "date": "2013-03-31T10:42:33.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "David Braun ", + "authorEmail": "NodeJS-box@snkmail.com", + "date": "2013-03-26T15:14:52.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-03-30T20:35:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-03-30T20:10:30.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-30T00:49:19.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-03-28T23:51:52.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2013-03-28T20:52:43.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2013-03-28T18:36:00.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-29T15:32:53.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-29T16:39:51.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-29T15:13:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-29T15:10:56.000Z", + "fileChanged": "36", + "insertions": "409", + "deletions": "415", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2013-03-25T19:15:10.000Z", + "fileChanged": "3", + "insertions": "118", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-28T21:53:29.000Z", + "fileChanged": "1", + "insertions": "86", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-28T21:50:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-28T21:50:20.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-28T21:39:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-28T20:53:13.000Z", + "fileChanged": "3", + "insertions": "40", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-28T20:19:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-28T20:11:04.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-28T20:06:00.000Z", + "fileChanged": "1", + "insertions": "87", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-28T20:06:18.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-28T20:05:37.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-28T19:12:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-28T18:46:21.000Z", + "fileChanged": "3", + "insertions": "39", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-28T19:05:33.000Z", + "fileChanged": "4", + "insertions": "19", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-28T18:35:12.000Z", + "fileChanged": "18", + "insertions": "218", + "deletions": "83", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-28T16:55:51.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "wicked ", + "authorEmail": "wicked@alawar.com", + "date": "2012-10-25T04:53:35.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-27T05:43:53.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-26T21:42:56.000Z", + "fileChanged": "2", + "insertions": "96", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-28T01:41:41.000Z", + "fileChanged": "1", + "insertions": "153", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Benjamin Ruston ", + "authorEmail": "benjy.ruston@gmail.com", + "date": "2013-03-28T14:19:10.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Suwon Chae ", + "authorEmail": "doortts@gmail.com", + "date": "2013-03-19T06:58:44.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Marcin Kostrzewa ", + "authorEmail": "marcinkostrzewa@yahoo.com", + "date": "2013-03-18T00:44:43.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-27T23:28:45.000Z", + "fileChanged": "10", + "insertions": "154", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-27T16:47:16.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-27T08:18:43.000Z", + "fileChanged": "2", + "insertions": "75", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Benjamin Ruston ", + "authorEmail": "benjy.ruston@gmail.com", + "date": "2013-03-27T10:09:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-26T18:33:14.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-26T05:32:41.000Z", + "fileChanged": "4", + "insertions": "97", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-26T22:19:50.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-26T17:17:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-25T18:55:44.000Z", + "fileChanged": "4", + "deletions": "52", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-26T15:34:42.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-26T15:09:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Manav Rathi ", + "authorEmail": "manav.r@directi.com", + "date": "2013-03-18T14:10:41.000Z", + "fileChanged": "6", + "insertions": "185", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-25T23:27:23.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-03-25T23:16:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-24T23:29:55.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-18T23:16:55.000Z", + "fileChanged": "6", + "insertions": "60", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2013-03-19T08:10:23.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-14T15:59:07.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-21T12:12:41.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-24T21:53:07.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-22T01:18:55.000Z", + "fileChanged": "3", + "insertions": "72", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-24T13:29:17.000Z", + "fileChanged": "23", + "insertions": "722", + "deletions": "500", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-24T12:22:01.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Alexey Kupershtokh ", + "authorEmail": "alexey.kupershtokh@gmail.com", + "date": "2012-10-26T05:49:22.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-03-22T20:51:11.000Z", + "fileChanged": "4", + "insertions": "17", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-23T18:17:12.000Z", + "fileChanged": "8", + "insertions": "182", + "deletions": "101", + "type": "Commit" + }, + { + "authorName": "Marcel Laverdet ", + "authorEmail": "marcel@laverdet.com", + "date": "2013-03-21T21:56:02.000Z", + "fileChanged": "1", + "deletions": "20", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Marcel Laverdet ", + "authorEmail": "marcel@laverdet.com", + "date": "2013-03-21T21:56:02.000Z", + "fileChanged": "1", + "deletions": "20", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "verwaest@chromium.org ", + "authorEmail": "verwaest@chromium.org", + "date": "2013-03-18T13:35:17.000Z", + "fileChanged": "5", + "insertions": "13", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-23T14:48:56.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-23T14:38:17.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Gil Pedersen ", + "authorEmail": "git@gpost.dk", + "date": "2013-03-17T14:04:01.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-21T17:38:30.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-21T17:50:25.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-21T17:52:01.000Z" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-21T16:26:23.000Z", + "fileChanged": "3", + "insertions": "10", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-21T16:14:01.000Z", + "fileChanged": "1", + "insertions": "82", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-21T16:14:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-21T16:13:45.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-21T13:59:16.000Z", + "fileChanged": "5", + "insertions": "98", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-21T01:15:04.000Z", + "fileChanged": "3", + "insertions": "34", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-21T00:49:57.000Z", + "fileChanged": "120", + "insertions": "358", + "deletions": "221", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-15T08:59:30.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-20T23:14:36.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-20T08:58:11.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-20T15:53:23.000Z", + "fileChanged": "1", + "insertions": "61", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-20T13:35:38.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-20T08:25:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-20T00:56:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-20T00:53:14.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Raymond Feng ", + "authorEmail": "raymond@strongloop.com", + "date": "2013-03-20T00:37:03.000Z", + "fileChanged": "2", + "insertions": "99", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-19T21:55:05.000Z", + "fileChanged": "26", + "insertions": "782", + "deletions": "764", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-19T10:28:17.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-20T14:31:30.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-07T20:31:44.000Z", + "fileChanged": "1", + "insertions": "46", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-07T20:20:21.000Z", + "fileChanged": "1", + "insertions": "296", + "deletions": "296", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-12-27T03:16:23.000Z", + "fileChanged": "2", + "insertions": "121", + "deletions": "204", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-07T18:53:50.000Z", + "fileChanged": "1", + "insertions": "386", + "deletions": "316", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-19T09:06:13.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bryan Cantrill ", + "authorEmail": "bryan@joyent.com", + "date": "2012-09-18T22:35:29.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-18T20:54:00.000Z", + "fileChanged": "29", + "insertions": "139", + "deletions": "118", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-18T20:50:55.000Z", + "fileChanged": "1", + "deletions": "9", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-18T20:49:34.000Z", + "fileChanged": "545", + "insertions": "73842", + "deletions": "45884", + "type": "Commit" + }, + { + "authorName": "Iskren Ivov Chernev ", + "authorEmail": "iskren.chernev@gmail.com", + "date": "2013-03-19T17:58:18.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-19T23:16:02.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-19T19:07:38.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2013-03-18T17:48:13.000Z", + "fileChanged": "4", + "insertions": "13", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-18T13:40:03.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-15T18:49:31.000Z", + "fileChanged": "2", + "insertions": "75", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-15T18:49:31.000Z", + "fileChanged": "2", + "insertions": "75", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-17T04:59:47.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "JeongHoon Byun ", + "authorEmail": "outsideris@gmail.com", + "date": "2013-03-12T12:21:43.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Yi EungJun ", + "authorEmail": "semtlenori@gmail.com", + "date": "2013-03-15T16:31:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-16T22:32:42.000Z", + "fileChanged": "4", + "insertions": "17", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-16T22:18:50.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Nao Iizuka ", + "authorEmail": "iizuka@kyu-mu.net", + "date": "2013-03-16T02:18:30.000Z", + "fileChanged": "3", + "insertions": "164", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-03-14T23:06:59.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-14T23:43:19.000Z", + "fileChanged": "2", + "insertions": "97", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-14T23:18:42.000Z", + "fileChanged": "1", + "deletions": "24", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Gil Pedersen ", + "authorEmail": "git@gpost.dk", + "date": "2013-03-14T13:01:14.000Z", + "fileChanged": "2", + "insertions": "77", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-14T21:16:13.000Z", + "fileChanged": "4", + "insertions": "99", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Sami Samhuri ", + "authorEmail": "sami.samhuri@gmail.com", + "date": "2013-03-14T20:49:14.000Z", + "fileChanged": "3", + "insertions": "97", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2013-03-14T14:57:13.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-14T14:48:18.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-14T14:13:58.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-14T12:40:27.000Z", + "fileChanged": "7", + "insertions": "79", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Adam Malcontenti-Wilson ", + "authorEmail": "adman.com@gmail.com", + "date": "2013-03-14T02:17:07.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-13T22:36:52.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "38", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-13T22:51:24.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-13T22:48:56.000Z", + "fileChanged": "2", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-13T21:59:42.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-13T21:52:33.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-13T22:22:55.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Gil Pedersen ", + "authorEmail": "git@gpost.dk", + "date": "2013-03-12T14:56:30.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-13T18:22:33.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-13T17:27:09.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-13T12:53:27.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-13T17:16:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-13T17:15:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-13T12:53:27.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-03-13T02:00:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-03-12T22:58:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-12T19:15:21.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-12T10:18:24.000Z", + "fileChanged": "2", + "insertions": "357", + "deletions": "416", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-12T10:09:27.000Z", + "fileChanged": "3", + "insertions": "180", + "deletions": "513", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-03-11T21:59:46.000Z", + "fileChanged": "2", + "insertions": "1334", + "deletions": "1196", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-01-30T03:06:32.000Z", + "fileChanged": "3", + "insertions": "24", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-01-30T02:44:29.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-11T23:03:56.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-11T15:56:47.000Z", + "fileChanged": "1", + "insertions": "487", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-11T15:49:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-11T15:49:20.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-09T17:24:56.000Z", + "fileChanged": "3", + "insertions": "35", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-10T02:05:39.000Z", + "fileChanged": "15", + "insertions": "131", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-09T18:56:17.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Julian Gruber ", + "authorEmail": "julian@juliangruber.com", + "date": "2013-03-08T18:41:28.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2013-03-10T11:10:19.000Z", + "fileChanged": "3", + "insertions": "86", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-10T02:46:39.000Z", + "fileChanged": "2", + "insertions": "58", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-10T02:34:59.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-09T17:22:00.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-09T17:11:22.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "hc ", + "authorEmail": "hheennrryy@gmail.com", + "date": "2013-03-08T11:07:27.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2013-02-26T17:26:09.000Z", + "fileChanged": "2", + "insertions": "65", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-09T15:00:21.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-09T05:52:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-09T05:52:09.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-09T04:26:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Gil Pedersen ", + "authorEmail": "git@gpost.dk", + "date": "2013-03-08T08:26:53.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "6", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-09T02:59:44.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-09T02:31:21.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-08T17:29:13.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-08T17:10:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-08T16:29:36.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-08T00:29:30.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-08T00:13:52.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-07T23:14:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-07T22:28:32.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-07T20:04:17.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-08T15:55:45.000Z", + "fileChanged": "3", + "insertions": "93", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-08T19:12:15.000Z", + "fileChanged": "2", + "insertions": "94", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-06T04:26:35.000Z", + "fileChanged": "3", + "insertions": "114", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-06T04:13:14.000Z", + "fileChanged": "3", + "insertions": "57", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-08T22:35:00.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "hheennrryy@gmail.com ", + "authorEmail": "hheennrryy@gmail.com", + "date": "2013-03-08T11:07:27.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-08T21:47:36.000Z", + "fileChanged": "1", + "insertions": "181", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-08T00:44:42.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-07T17:25:06.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-07T17:22:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-07T17:22:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-07T17:01:57.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-07T16:48:43.000Z", + "fileChanged": "3", + "insertions": "74", + "deletions": "70", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-07T13:44:46.000Z", + "fileChanged": "1", + "insertions": "51", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-07T13:08:38.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-07T10:55:47.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-07T10:37:07.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-06T14:41:12.000Z", + "fileChanged": "1", + "deletions": "13", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-06T14:39:07.000Z", + "fileChanged": "1", + "deletions": "8", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-02-28T14:29:00.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-08T00:28:18.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-08T15:35:35.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-05T18:38:28.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-05T18:36:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Raymond Feng ", + "authorEmail": "enjoyjava@gmail.com", + "date": "2013-03-02T18:08:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-08T02:17:28.000Z", + "fileChanged": "7", + "insertions": "134", + "deletions": "97", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-07T19:56:53.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T23:44:08.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2013-02-27T18:31:24.000Z", + "fileChanged": "4", + "insertions": "154", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-07T13:13:01.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-07T13:10:47.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-07T00:22:23.000Z", + "fileChanged": "1", + "insertions": "62", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-07T00:20:00.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-07T00:19:29.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T23:47:29.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T23:43:02.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T23:41:06.000Z", + "fileChanged": "229", + "insertions": "934", + "deletions": "336", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T22:19:16.000Z", + "fileChanged": "1", + "insertions": "312", + "deletions": "55", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T21:59:58.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T21:59:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T21:59:07.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T21:56:56.000Z", + "fileChanged": "1", + "insertions": "107", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T20:43:35.000Z", + "fileChanged": "3", + "insertions": "53", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T20:58:37.000Z", + "fileChanged": "4", + "insertions": "27", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T20:57:49.000Z", + "fileChanged": "37", + "insertions": "479", + "deletions": "154", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-04T07:29:22.000Z", + "fileChanged": "3", + "insertions": "183", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T20:32:59.000Z", + "fileChanged": "1", + "insertions": "63", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T17:55:00.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T07:37:37.000Z", + "fileChanged": "2", + "insertions": "70", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T06:57:15.000Z", + "fileChanged": "7", + "insertions": "10", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T06:16:46.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T06:09:27.000Z", + "fileChanged": "2", + "insertions": "74", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T01:53:37.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T01:47:12.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T01:46:37.000Z", + "fileChanged": "4", + "insertions": "17", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Eugene Girshov ", + "authorEmail": "eugene.girshov@nixu.com", + "date": "2013-03-04T20:44:56.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-06T15:15:17.000Z", + "fileChanged": "4", + "insertions": "23", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-06T14:32:40.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-06T14:24:20.000Z", + "fileChanged": "3", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-06T13:45:47.000Z", + "fileChanged": "1", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Pavel Lang ", + "authorEmail": "langpavel@phpskelet.org", + "date": "2012-09-18T09:21:38.000Z", + "fileChanged": "3", + "insertions": "86", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-06T09:07:46.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "github@scott.blomqui.st", + "date": "2013-02-16T01:25:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-03-05T20:17:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-03-05T19:05:50.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-04T03:43:46.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-04T03:14:06.000Z", + "fileChanged": "16", + "insertions": "100", + "deletions": "98", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-04T03:05:44.000Z", + "fileChanged": "8", + "insertions": "69", + "deletions": "69", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-04T00:12:02.000Z", + "fileChanged": "3", + "insertions": "163", + "deletions": "149", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-03T23:44:36.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-03-05T20:17:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-05T18:38:28.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-05T18:36:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Paolo Fragomeni ", + "authorEmail": "paolo@async.ly", + "date": "2013-03-04T21:04:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-05T15:10:13.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-05T14:43:03.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-09T05:22:50.000Z", + "fileChanged": "4", + "insertions": "210", + "deletions": "83", + "type": "Commit" + }, + { + "authorName": "Felix Böhm ", + "authorEmail": "me@feedic.com", + "date": "2013-03-05T08:20:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-04T19:59:55.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-03-04T19:33:03.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-04T19:54:34.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-03-04T18:47:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-03T00:03:22.000Z", + "fileChanged": "3", + "insertions": "34", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Xidorn Quan ", + "authorEmail": "quanxunzhen@gmail.com", + "date": "2013-03-03T04:53:51.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2013-03-04T02:03:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2013-03-04T02:03:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-03T23:22:12.000Z", + "fileChanged": "6", + "insertions": "25", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-02T20:25:16.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Aaron Cannon ", + "authorEmail": "cannona@fireantproductions.com", + "date": "2013-03-03T21:11:08.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Dave Olszewski ", + "authorEmail": "cxreg@pobox.com", + "date": "2013-01-19T00:25:52.000Z", + "fileChanged": "2", + "insertions": "65", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-03T01:21:28.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-03T00:10:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-02T20:25:16.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-02T23:11:23.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-02T19:58:21.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-02T22:13:35.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-02T22:04:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-02T19:50:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-02T18:20:33.000Z", + "fileChanged": "4", + "insertions": "179", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Raymond Feng ", + "authorEmail": "enjoyjava@gmail.com", + "date": "2013-03-02T18:08:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-02-26T06:19:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-02T01:43:01.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-27T08:15:28.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-26T19:20:19.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-26T18:20:44.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-26T17:47:36.000Z", + "fileChanged": "4", + "insertions": "20", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-21T07:54:38.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-20T23:33:24.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-20T23:19:05.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-20T23:04:58.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-20T22:52:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-14T08:48:11.000Z", + "fileChanged": "7", + "insertions": "32", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-02T01:09:14.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-02T00:49:19.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Lars-Magnus Skog ", + "authorEmail": "lars.magnus.skog@gmail.com", + "date": "2013-03-01T20:09:36.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-01T22:26:35.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Gil Pedersen ", + "authorEmail": "github@gpost.dk", + "date": "2013-03-01T22:15:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Evan Oxfeld ", + "authorEmail": "eoxfeld@nearinfinity.com", + "date": "2013-03-01T20:10:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2013-03-01T20:03:44.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-01T19:22:07.000Z", + "fileChanged": "1", + "insertions": "88", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-01T19:23:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-01T19:19:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-01T19:19:20.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-01T17:58:35.000Z", + "fileChanged": "3", + "insertions": "46", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-01T18:21:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-01T17:10:26.000Z", + "fileChanged": "5", + "insertions": "142", + "deletions": "59", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-03-01T16:54:49.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-01T12:01:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-03-01T00:56:37.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-28T23:42:55.000Z", + "fileChanged": "1", + "insertions": "210", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-28T23:32:32.000Z", + "fileChanged": "20", + "insertions": "105", + "deletions": "126", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-28T03:32:19.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-28T00:56:30.000Z", + "fileChanged": "1", + "insertions": "83", + "deletions": "81", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-28T22:25:29.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-03-01T01:04:29.000Z", + "fileChanged": "8", + "insertions": "41", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-28T23:44:55.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Eugene Girshov ", + "authorEmail": "eugene.girshov@nixu.com", + "date": "2013-02-23T16:59:05.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-28T22:13:54.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-02-28T19:46:59.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-28T16:50:14.000Z", + "fileChanged": "11", + "insertions": "54", + "deletions": "54", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2013-02-28T17:18:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-28T15:58:24.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-28T15:35:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-28T15:30:45.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-27T19:46:35.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-27T19:24:02.000Z", + "fileChanged": "8", + "insertions": "43", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-27T19:23:20.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-27T22:31:38.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2013-02-27T06:52:58.000Z", + "fileChanged": "20", + "insertions": "20", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-25T06:14:30.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-27T01:54:18.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-27T01:39:04.000Z", + "fileChanged": "2", + "insertions": "94", + "deletions": "94", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-27T01:33:30.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-27T00:42:47.000Z", + "fileChanged": "3", + "insertions": "39", + "deletions": "221", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-26T01:46:48.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-27T00:36:56.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-26T19:30:12.000Z", + "fileChanged": "20", + "insertions": "526", + "deletions": "205", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-26T18:38:15.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "yangguo@chromium.org ", + "authorEmail": "yangguo@chromium.org", + "date": "2012-12-18T09:48:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-15T22:42:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-02-26T06:19:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andrei Sedoi ", + "authorEmail": "bsnote@gmail.com", + "date": "2013-02-26T14:28:53.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2013-02-26T06:51:00.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-26T14:17:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-02-26T08:16:35.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-02-26T07:57:12.000Z", + "fileChanged": "4", + "insertions": "259", + "deletions": "303", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-25T16:30:05.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-26T00:21:23.000Z", + "fileChanged": "4", + "insertions": "303", + "deletions": "259", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-25T22:25:21.000Z", + "fileChanged": "27", + "insertions": "382", + "deletions": "396", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-25T22:00:08.000Z", + "fileChanged": "3", + "insertions": "23", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-25T21:45:23.000Z", + "fileChanged": "349", + "insertions": "11394", + "deletions": "24676", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-25T22:17:11.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-25T21:57:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-25T21:56:46.000Z", + "fileChanged": "1", + "insertions": "84", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-25T21:52:13.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-25T21:51:15.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-25T18:58:10.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-25T21:07:08.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-25T17:06:44.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-23T00:47:27.000Z", + "fileChanged": "4", + "insertions": "29", + "deletions": "74", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-23T00:45:22.000Z", + "fileChanged": "3", + "insertions": "16", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-23T22:43:52.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-24T03:06:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-24T03:03:49.000Z", + "fileChanged": "19", + "insertions": "338", + "deletions": "172", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-23T00:30:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-22T19:24:05.000Z", + "fileChanged": "4", + "insertions": "62", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-22T18:35:07.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-22T00:19:39.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-21T22:30:36.000Z", + "fileChanged": "2", + "insertions": "110", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-21T18:51:15.000Z", + "fileChanged": "19", + "insertions": "76", + "deletions": "192", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-21T20:22:12.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-21T22:58:55.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-02-21T20:54:13.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-02-21T19:02:33.000Z", + "fileChanged": "3", + "insertions": "80", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Arianit Uka ", + "authorEmail": "arianit@bigvikinggames.com", + "date": "2013-02-21T16:44:22.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-02-21T09:28:51.000Z", + "fileChanged": "2", + "insertions": "83", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-21T09:40:09.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-18T18:46:50.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-20T21:06:41.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-20T20:12:18.000Z", + "fileChanged": "46", + "insertions": "2240", + "deletions": "1933", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-19T07:52:34.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-12-19T04:10:17.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-20T17:17:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-20T13:14:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-15T00:10:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-12T23:03:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-21T16:07:08.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-02-20T11:54:22.000Z", + "fileChanged": "237", + "insertions": "16422", + "deletions": "1215", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-20T01:17:29.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-20T00:57:59.000Z", + "fileChanged": "2", + "insertions": "106", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-19T23:03:41.000Z", + "fileChanged": "11", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-19T22:59:43.000Z", + "fileChanged": "20", + "insertions": "285", + "deletions": "285", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-13T22:18:27.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-13T22:16:11.000Z", + "fileChanged": "1", + "deletions": "88", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-13T20:20:36.000Z", + "fileChanged": "4", + "insertions": "26", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-13T20:19:08.000Z", + "fileChanged": "28", + "insertions": "5488", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-13T18:48:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-13T18:47:29.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T08:13:18.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T07:22:12.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T07:04:29.000Z", + "fileChanged": "1", + "deletions": "31", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T02:27:02.000Z", + "fileChanged": "2", + "insertions": "74", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-11T22:38:00.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "86", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T05:33:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T05:33:22.000Z", + "fileChanged": "1", + "deletions": "109", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-13T18:42:23.000Z", + "fileChanged": "1", + "insertions": "78", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T05:05:43.000Z", + "fileChanged": "1", + "insertions": "87", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T07:55:36.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T07:10:12.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T07:07:37.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T07:03:42.000Z", + "fileChanged": "1", + "deletions": "15", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T07:00:18.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T06:54:27.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T06:50:30.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T06:42:19.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T02:22:43.000Z", + "fileChanged": "8", + "insertions": "62", + "deletions": "77", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-11T21:32:39.000Z", + "fileChanged": "3", + "insertions": "48", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T06:01:50.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "104", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-11T22:12:35.000Z", + "fileChanged": "2", + "deletions": "48", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-11T22:09:41.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T07:53:27.000Z", + "fileChanged": "4", + "insertions": "91", + "deletions": "200", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-11T21:41:16.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-11T21:37:24.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-11T21:24:27.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T07:51:53.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T07:43:22.000Z", + "fileChanged": "3", + "insertions": "69", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T01:57:49.000Z", + "fileChanged": "1", + "deletions": "80", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T06:08:25.000Z", + "fileChanged": "2", + "deletions": "45", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-08T03:13:26.000Z", + "fileChanged": "6", + "insertions": "711", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-08T03:10:48.000Z", + "fileChanged": "2", + "insertions": "114", + "deletions": "114", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T07:28:48.000Z", + "fileChanged": "1", + "insertions": "116", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T07:21:48.000Z", + "fileChanged": "1", + "insertions": "52", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T07:26:43.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-08T03:10:58.000Z", + "fileChanged": "1", + "insertions": "110", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-19T22:01:23.000Z", + "fileChanged": "1", + "insertions": "84", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-19T21:58:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-19T21:58:19.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-19T21:23:47.000Z", + "fileChanged": "3", + "insertions": "37", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-19T21:18:36.000Z", + "fileChanged": "105", + "insertions": "132", + "deletions": "132", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-19T19:37:48.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-19T02:26:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-19T02:26:29.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-18T19:24:14.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-18T18:38:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-18T18:21:08.000Z" + }, + { + "authorName": "Gil Pedersen ", + "authorEmail": "git@gpost.dk", + "date": "2013-02-14T19:26:54.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-03T20:53:33.000Z", + "fileChanged": "2", + "insertions": "97", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-16T02:31:43.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-13T14:30:06.000Z", + "fileChanged": "2", + "insertions": "92", + "deletions": "83", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-02-07T01:26:18.000Z", + "fileChanged": "7", + "insertions": "234", + "deletions": "112", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-01T22:23:28.000Z", + "fileChanged": "4", + "insertions": "51", + "deletions": "77", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2013-02-06T02:14:24.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2013-02-06T02:13:02.000Z", + "fileChanged": "2", + "insertions": "77", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-15T19:24:20.000Z", + "fileChanged": "1", + "insertions": "62", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-15T19:24:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-15T19:23:55.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-15T17:57:32.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-15T18:49:16.000Z", + "fileChanged": "131", + "insertions": "663", + "deletions": "186", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-14T23:37:12.000Z", + "fileChanged": "2", + "insertions": "108", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-14T16:57:32.000Z", + "fileChanged": "2", + "insertions": "151", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-14T18:41:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-14T11:42:54.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Dan Kohn ", + "authorEmail": "dan@dankohn.com", + "date": "2013-02-12T20:04:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-13T15:09:03.000Z", + "fileChanged": "7", + "insertions": "101", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-13T14:54:17.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-13T14:44:35.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-12T13:58:35.000Z", + "fileChanged": "3", + "insertions": "36", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T17:08:50.000Z", + "fileChanged": "2", + "insertions": "54", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-13T00:30:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-12T20:03:52.000Z", + "fileChanged": "1", + "insertions": "133", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-12T18:37:30.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-02-12T11:00:13.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Victor Costan ", + "authorEmail": "costan@gmail.com", + "date": "2013-02-09T01:47:00.000Z", + "fileChanged": "2", + "insertions": "61", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-11T23:46:19.000Z", + "fileChanged": "2", + "insertions": "92", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-11T23:37:50.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-11T23:45:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-11T20:22:34.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-03T04:52:04.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-31T18:48:25.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-11T13:01:18.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-11T16:34:56.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-11T16:30:04.000Z", + "fileChanged": "3", + "insertions": "10", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-11T12:33:50.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-10T20:41:06.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-10T20:28:11.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-09T08:09:13.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-09T07:58:48.000Z", + "fileChanged": "3", + "insertions": "54", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-09T07:49:45.000Z", + "fileChanged": "2", + "insertions": "38", + "deletions": "103", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-09T07:49:10.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-02-09T18:32:24.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-09T01:18:37.000Z", + "fileChanged": "4", + "insertions": "19", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-09T01:17:45.000Z", + "fileChanged": "21", + "insertions": "379", + "deletions": "55", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-08T00:33:29.000Z", + "fileChanged": "2", + "insertions": "81", + "deletions": "81", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2013-01-30T04:37:57.000Z", + "fileChanged": "3", + "insertions": "64", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Jim Schubert ", + "authorEmail": "james.schubert@gmail.com", + "date": "2012-12-17T05:23:23.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-07T18:35:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-07T18:34:45.000Z", + "fileChanged": "1", + "insertions": "78", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-07T18:34:07.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-07T18:33:54.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-07T17:09:21.000Z", + "fileChanged": "3", + "insertions": "31", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-07T16:50:18.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nikhil Marathe ", + "authorEmail": "nsm.nikhil@gmail.com", + "date": "2013-01-19T23:49:30.000Z", + "fileChanged": "1", + "insertions": "96", + "deletions": "157", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-02-07T13:39:47.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-07T00:29:30.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-06T21:13:05.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-31T17:20:49.000Z", + "fileChanged": "1", + "insertions": "280", + "deletions": "386", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-06T17:48:11.000Z", + "fileChanged": "1", + "insertions": "72", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-06T17:46:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-06T17:44:38.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-06T16:46:14.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-06T16:39:27.000Z", + "fileChanged": "272", + "insertions": "2147", + "deletions": "757", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-02-06T14:45:06.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-06T14:10:48.000Z", + "fileChanged": "1", + "insertions": "63", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-05T13:24:43.000Z", + "fileChanged": "2", + "insertions": "103", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Bryan Cantrill ", + "authorEmail": "bryan@joyent.com", + "date": "2012-09-18T22:35:29.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-02-05T22:58:16.000Z", + "fileChanged": "2", + "insertions": "44", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-05T21:34:49.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-30T13:40:50.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-30T00:19:01.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-05T11:47:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-02T19:14:42.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-01T23:40:10.000Z", + "fileChanged": "3", + "insertions": "68", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-01T23:55:03.000Z", + "fileChanged": "4", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-01T21:35:57.000Z", + "fileChanged": "3", + "insertions": "22", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-02-01T18:17:22.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-02-01T16:33:19.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-31T21:33:37.000Z", + "fileChanged": "2", + "insertions": "88", + "deletions": "55", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-31T19:22:07.000Z", + "fileChanged": "2", + "insertions": "99", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-01-30T19:30:10.000Z", + "fileChanged": "5", + "insertions": "130", + "deletions": "115", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-30T07:23:36.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-30T07:55:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-29T16:27:33.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-30T01:50:44.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-28T12:13:28.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-29T01:15:22.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "85", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-28T19:15:53.000Z", + "fileChanged": "2", + "insertions": "85", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-01-28T21:19:02.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-01-22T22:52:20.000Z", + "fileChanged": "9", + "insertions": "356", + "deletions": "49", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-28T17:22:59.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-28T16:54:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-28T16:54:08.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-27T19:56:36.000Z", + "fileChanged": "2", + "insertions": "86", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-28T09:04:58.000Z", + "fileChanged": "2", + "insertions": "71", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-28T11:41:54.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-27T21:01:10.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-27T20:50:00.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-27T15:25:54.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-27T14:21:03.000Z", + "fileChanged": "1", + "deletions": "11", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rick Yakubowski ", + "authorEmail": "richard@orpha-systems.com", + "date": "2013-01-26T23:07:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-25T12:34:54.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-25T22:27:46.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2013-01-21T03:20:43.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-24T23:40:58.000Z", + "fileChanged": "6", + "insertions": "52", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-25T21:03:11.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-01-22T17:09:12.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-01-22T19:10:11.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "58", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-01-22T18:48:54.000Z", + "fileChanged": "3", + "insertions": "127", + "deletions": "101", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-01-22T17:09:12.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-25T01:23:11.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Sugendran Ganess ", + "authorEmail": "sugendran@sugendran.net", + "date": "2012-12-06T00:01:41.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Andy Burke ", + "authorEmail": "aburke@bitflood.org", + "date": "2013-01-23T23:17:04.000Z", + "fileChanged": "4", + "insertions": "111", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jacob Gable ", + "authorEmail": "jacob.gable@gmail.com", + "date": "2013-01-23T22:38:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-24T18:32:35.000Z", + "fileChanged": "1", + "insertions": "74", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-24T18:31:40.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-24T18:31:23.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-24T18:12:19.000Z", + "fileChanged": "1", + "insertions": "81", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-24T17:15:25.000Z", + "fileChanged": "3", + "insertions": "28", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-24T17:06:31.000Z", + "fileChanged": "139", + "insertions": "1401", + "deletions": "389", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-24T17:02:21.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-24T16:59:39.000Z", + "fileChanged": "14", + "insertions": "196", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-22T13:27:05.000Z", + "fileChanged": "3", + "insertions": "80", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-24T03:15:03.000Z", + "fileChanged": "1", + "insertions": "75", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-24T01:52:45.000Z", + "fileChanged": "2", + "insertions": "77", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Raynos ", + "authorEmail": "raynos2@gmail.com", + "date": "2013-01-12T04:59:57.000Z", + "fileChanged": "9", + "insertions": "757", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-24T10:35:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-23T12:47:29.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2013-01-17T06:29:48.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-01-22T22:35:20.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-23T00:42:16.000Z", + "fileChanged": "2", + "insertions": "71", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-01-22T23:17:01.000Z", + "fileChanged": "3", + "insertions": "57", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-22T15:21:25.000Z", + "fileChanged": "11", + "insertions": "84", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-22T12:53:49.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-22T12:23:46.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-22T11:58:15.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Tim ", + "authorEmail": "timprice@mangoraft.com", + "date": "2013-01-07T19:35:42.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-20T15:23:35.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-20T14:31:30.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-19T23:24:19.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-19T20:26:38.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "186", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-18T00:02:41.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Dave Olszewski ", + "authorEmail": "cxreg@pobox.com", + "date": "2012-12-27T20:08:23.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yi EungJun ", + "authorEmail": "semtlenori@gmail.com", + "date": "2013-01-18T13:51:09.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-18T20:58:16.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-18T20:54:22.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-18T20:51:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-18T20:51:14.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-18T20:15:41.000Z", + "fileChanged": "3", + "insertions": "19", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-18T20:12:07.000Z", + "fileChanged": "125", + "insertions": "560", + "deletions": "300", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-18T19:49:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-18T19:49:12.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-18T19:48:21.000Z", + "fileChanged": "1", + "insertions": "81", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-18T16:42:54.000Z", + "fileChanged": "3", + "insertions": "33", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-18T18:17:26.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-18T18:03:54.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-18T16:37:32.000Z", + "fileChanged": "125", + "insertions": "560", + "deletions": "300", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-18T11:44:10.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dan Milon ", + "authorEmail": "danmilon@gmail.com", + "date": "2013-01-18T00:40:48.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-18T00:23:34.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-14T23:29:46.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-17T23:47:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-14T17:08:20.000Z", + "fileChanged": "7", + "insertions": "463", + "deletions": "99", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-17T23:13:10.000Z", + "fileChanged": "7", + "insertions": "95", + "deletions": "448", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-17T22:54:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-14T17:08:20.000Z", + "fileChanged": "7", + "insertions": "448", + "deletions": "95", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-17T21:20:22.000Z", + "fileChanged": "4", + "insertions": "44", + "deletions": "86", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-17T17:52:48.000Z", + "fileChanged": "3", + "insertions": "42", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-16T19:26:28.000Z", + "fileChanged": "4", + "insertions": "86", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-17T15:32:00.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2013-01-17T09:12:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-09T05:22:50.000Z", + "fileChanged": "1", + "insertions": "77", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-17T00:10:15.000Z", + "fileChanged": "3", + "insertions": "59", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-16T22:38:02.000Z", + "fileChanged": "85", + "insertions": "230", + "deletions": "429", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-16T20:27:53.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Felix Böhm ", + "authorEmail": "me@feedic.com", + "date": "2013-01-16T18:53:16.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-16T20:07:12.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2012-12-11T10:13:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dean McNamee ", + "authorEmail": "dean@gmail.com", + "date": "2013-01-15T18:35:52.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "James Campos ", + "authorEmail": "james.r.campos@gmail.com", + "date": "2013-01-09T17:01:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-16T00:44:29.000Z", + "fileChanged": "2", + "insertions": "95", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2013-01-11T00:59:39.000Z", + "fileChanged": "1", + "insertions": "115", + "deletions": "218", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2012-12-22T21:06:50.000Z", + "fileChanged": "13", + "insertions": "633", + "deletions": "255", + "type": "Commit" + }, + { + "authorName": "Alexandr Emelin ", + "authorEmail": "frvzmb@gmail.com", + "date": "2013-01-10T07:38:29.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2013-01-11T08:57:24.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-15T22:42:23.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Chris Dent ", + "authorEmail": "chris.dent@gmail.com", + "date": "2013-01-14T22:24:30.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-14T23:29:46.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-15T00:03:38.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-14T19:25:39.000Z", + "fileChanged": "2", + "insertions": "86", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-01-05T21:14:50.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-01-05T21:14:50.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-14T17:09:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-14T17:09:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-14T15:35:03.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-14T12:06:29.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "yangguo@chromium.org ", + "authorEmail": "yangguo@chromium.org", + "date": "2012-12-18T09:48:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-13T00:29:34.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-01-12T20:14:39.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Felix Böhm ", + "authorEmail": "me@feedic.com", + "date": "2013-01-12T20:07:06.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2013-01-11T21:24:15.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-03T01:33:40.000Z", + "fileChanged": "1", + "deletions": "9", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-11T20:10:45.000Z", + "fileChanged": "5", + "insertions": "48", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-11T19:25:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-11T19:25:37.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-11T19:24:37.000Z", + "fileChanged": "1", + "insertions": "87", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-11T18:49:21.000Z", + "fileChanged": "3", + "insertions": "40", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-11T18:18:07.000Z" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-01-11T17:42:46.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-11T17:31:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-11T01:15:53.000Z", + "fileChanged": "2", + "insertions": "65", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-11T17:01:14.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-11T15:52:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2013-01-11T15:19:21.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-11T12:49:45.000Z", + "fileChanged": "65", + "insertions": "948", + "deletions": "592", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-11T02:16:43.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2013-01-08T17:22:04.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-01-11T01:13:59.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2013-01-11T00:59:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "yangguo@chromium.org ", + "authorEmail": "yangguo@chromium.org", + "date": "2012-12-18T09:48:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-08T04:33:56.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-08T04:23:07.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-08T02:07:37.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-10T21:49:19.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-08T03:40:08.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-08T02:07:17.000Z", + "fileChanged": "3", + "insertions": "194", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-10T15:47:09.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-10T03:05:37.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-10T01:21:16.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-10T01:08:24.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-10T01:07:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-10T01:07:21.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-10T00:58:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-10T00:04:21.000Z", + "fileChanged": "4", + "insertions": "24", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-09T23:39:44.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-09T23:21:30.000Z", + "fileChanged": "222", + "insertions": "665", + "deletions": "300", + "type": "Commit" + }, + { + "authorName": "Dean McNamee ", + "authorEmail": "dean@gmail.com", + "date": "2013-01-06T17:59:12.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Dean McNamee ", + "authorEmail": "dean@gmail.com", + "date": "2013-01-05T21:06:35.000Z", + "fileChanged": "2", + "insertions": "188", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-08T16:08:58.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-04T12:37:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2013-01-09T02:17:06.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-08T22:27:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-08T17:56:55.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tim Bradshaw ", + "authorEmail": "tfb@cley.com", + "date": "2012-12-31T18:44:51.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dean McNamee ", + "authorEmail": "dean@gmail.com", + "date": "2012-12-23T22:43:51.000Z", + "fileChanged": "2", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Dean McNamee ", + "authorEmail": "dean@gmail.com", + "date": "2012-12-18T19:03:41.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2013-01-07T01:37:35.000Z", + "fileChanged": "2", + "insertions": "52", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-08T03:27:34.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Mike Harsch ", + "authorEmail": "mike@harschsystems.com", + "date": "2013-01-07T05:29:38.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-07T20:31:44.000Z", + "fileChanged": "1", + "insertions": "46", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-07T20:20:21.000Z", + "fileChanged": "1", + "insertions": "298", + "deletions": "296", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-12-27T03:16:23.000Z", + "fileChanged": "4", + "insertions": "173", + "deletions": "219", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-07T18:53:50.000Z", + "fileChanged": "1", + "insertions": "394", + "deletions": "394", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-07T18:30:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-06T23:15:59.000Z", + "fileChanged": "15", + "insertions": "103", + "deletions": "95", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-06T22:55:56.000Z", + "fileChanged": "10", + "insertions": "28", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-06T23:09:31.000Z", + "fileChanged": "7", + "insertions": "75", + "deletions": "59", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-06T22:52:35.000Z", + "fileChanged": "12", + "insertions": "37", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-06T22:33:09.000Z", + "fileChanged": "20", + "insertions": "183", + "deletions": "159", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-06T22:09:39.000Z", + "fileChanged": "4", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-06T22:06:48.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-07T14:29:00.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2013-01-07T14:10:35.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "me@mmalecki.com", + "date": "2013-01-04T04:53:55.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Dean McNamee ", + "authorEmail": "dean@gmail.com", + "date": "2012-12-21T15:12:45.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-07T15:00:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-07T02:59:08.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-07T02:36:47.000Z", + "fileChanged": "2", + "insertions": "108", + "deletions": "108", + "type": "Commit" + }, + { + "authorName": "Bradley Meck ", + "authorEmail": "bradley.meck@gmail.com", + "date": "2013-01-04T19:58:35.000Z", + "fileChanged": "3", + "insertions": "67", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James Hight ", + "authorEmail": "james@zavoo.com", + "date": "2013-01-01T02:01:42.000Z", + "fileChanged": "3", + "insertions": "82", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-04T23:11:37.000Z", + "fileChanged": "5", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Johannes Ewald ", + "authorEmail": "mail@johannesewald.de", + "date": "2013-01-04T18:07:40.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2013-01-04T16:46:59.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2013-01-04T16:05:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-03T01:33:40.000Z", + "fileChanged": "1", + "deletions": "9", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-04T12:37:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-04T11:44:47.000Z", + "fileChanged": "19", + "insertions": "355", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Nirk Niggler ", + "authorEmail": "nirk.niggler@gmail.com", + "date": "2013-01-03T14:27:55.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2013-01-03T22:36:04.000Z", + "fileChanged": "15", + "insertions": "203", + "deletions": "201", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2013-01-03T02:06:41.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-03T19:02:31.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-03T17:21:52.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-03T16:58:58.000Z", + "fileChanged": "2", + "deletions": "272", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2013-01-03T01:33:40.000Z", + "fileChanged": "1", + "deletions": "9", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-01T12:06:28.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-01T12:05:53.000Z", + "fileChanged": "10", + "insertions": "25", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2013-01-01T08:28:07.000Z", + "fileChanged": "498", + "insertions": "50958", + "deletions": "32392", + "type": "Commit" + }, + { + "authorName": "Tim Bradshaw ", + "authorEmail": "tfb@cley.com", + "date": "2012-12-20T22:29:45.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-31T16:42:54.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-30T23:36:47.000Z", + "fileChanged": "1", + "insertions": "145", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-30T01:26:32.000Z", + "fileChanged": "1", + "insertions": "82", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-30T01:25:40.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-30T01:25:25.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-30T00:31:43.000Z", + "fileChanged": "3", + "insertions": "36", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-30T00:49:18.000Z", + "fileChanged": "4", + "insertions": "51", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-27T23:02:57.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-28T05:12:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-27T21:03:59.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-27T19:41:29.000Z", + "fileChanged": "1", + "insertions": "51", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-27T19:40:42.000Z", + "fileChanged": "2", + "insertions": "55", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-27T19:39:57.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-27T17:13:58.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "lukebayes ", + "authorEmail": "lbayes@patternpark.com", + "date": "2011-02-20T23:09:23.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-27T02:13:59.000Z", + "fileChanged": "4", + "insertions": "73", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-26T20:31:27.000Z", + "fileChanged": "6", + "insertions": "32", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-26T20:28:33.000Z", + "fileChanged": "5", + "insertions": "129", + "deletions": "102", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-29T16:34:41.000Z", + "fileChanged": "6", + "insertions": "212", + "deletions": "91", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-28T17:31:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-28T17:23:08.000Z", + "fileChanged": "3", + "deletions": "87", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2012-12-28T03:40:06.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-24T00:29:40.000Z", + "fileChanged": "2", + "insertions": "78", + "deletions": "58", + "type": "Commit" + }, + { + "authorName": "Luke Arduini ", + "authorEmail": "luke.arduini@me.com", + "date": "2012-12-28T01:32:53.000Z", + "fileChanged": "3", + "insertions": "58", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "bentaber ", + "authorEmail": "ben.taber@gmail.com", + "date": "2012-12-27T14:57:19.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2012-12-27T16:30:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2012-12-27T15:51:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2012-12-27T16:14:16.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-27T04:35:00.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "me@mmalecki.com", + "date": "2012-12-21T01:56:47.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-26T23:57:49.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-26T23:26:53.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2012-12-11T10:14:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2012-12-11T10:04:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-12-18T01:59:07.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-12-22T17:27:08.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-12-22T17:07:08.000Z", + "fileChanged": "2", + "insertions": "85", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-12-22T15:14:42.000Z", + "fileChanged": "2", + "insertions": "87", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2012-12-23T19:14:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-25T21:05:06.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Taber ", + "authorEmail": "ben.taber@gmail.com", + "date": "2012-12-25T01:35:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-24T15:00:24.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "me@mmalecki.com", + "date": "2012-12-21T01:56:47.000Z", + "fileChanged": "3", + "insertions": "17", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-21T20:37:39.000Z", + "fileChanged": "1", + "insertions": "97", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-21T20:36:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-21T20:36:04.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-21T19:27:11.000Z", + "fileChanged": "3", + "insertions": "58", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-12-21T19:42:40.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-21T19:32:18.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-21T19:08:32.000Z" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2012-12-21T08:06:21.000Z", + "fileChanged": "8", + "insertions": "209", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-21T02:08:40.000Z", + "fileChanged": "4", + "insertions": "116", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-21T16:59:20.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-21T16:51:43.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-21T16:48:32.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-21T16:42:29.000Z", + "fileChanged": "1215", + "insertions": "61342", + "deletions": "22807", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-21T00:46:40.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-21T00:08:50.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-19T23:27:21.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-19T17:19:06.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-19T02:50:07.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-19T02:49:42.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-19T02:49:09.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-18T22:44:32.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-12-19T16:13:07.000Z", + "fileChanged": "1", + "insertions": "222", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-12-19T16:08:16.000Z", + "fileChanged": "68", + "insertions": "47278", + "deletions": "10803", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-12-19T16:13:46.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-21T16:07:08.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-12T23:11:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-12T23:03:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-25T01:57:11.000Z", + "fileChanged": "11", + "insertions": "359", + "deletions": "1385", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-20T13:02:38.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "4", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-20T11:39:04.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-19T11:35:07.000Z", + "fileChanged": "1", + "insertions": "71", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-19T13:09:10.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Farid Neshat ", + "authorEmail": "FaridN_SOAD@yahoo.com", + "date": "2012-12-17T15:03:19.000Z", + "fileChanged": "3", + "insertions": "56", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-19T17:04:08.000Z", + "fileChanged": "1", + "insertions": "43", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-19T16:57:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-19T16:57:05.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-19T16:56:24.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-12-19T04:10:17.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-18T19:56:53.000Z", + "fileChanged": "1", + "insertions": "79", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-18T16:43:45.000Z", + "fileChanged": "1", + "insertions": "579", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-18T06:20:39.000Z", + "fileChanged": "1", + "deletions": "104", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-18T08:56:57.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-18T14:45:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-12-18T10:14:38.000Z", + "fileChanged": "11", + "insertions": "65", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-16T20:47:01.000Z", + "fileChanged": "3", + "insertions": "144", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-17T16:45:21.000Z", + "fileChanged": "4", + "insertions": "5", + "deletions": "114", + "type": "Commit" + }, + { + "authorName": "Dean McNamee ", + "authorEmail": "dean@gmail.com", + "date": "2012-12-07T21:02:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Dean McNamee ", + "authorEmail": "dean@gmail.com", + "date": "2012-12-07T20:59:48.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Nicolas Chambrier ", + "authorEmail": "naholyr@gmail.com", + "date": "2012-12-17T15:53:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-12-17T11:41:50.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-17T11:05:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-17T10:29:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-16T22:39:59.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2012-08-07T00:42:13.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-18T00:14:44.000Z", + "fileChanged": "4", + "insertions": "114", + "deletions": "5", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-15T18:29:16.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-15T01:43:02.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-14T18:51:04.000Z", + "fileChanged": "2", + "insertions": "65", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-14T18:49:16.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-13T15:47:33.000Z", + "fileChanged": "21", + "insertions": "43", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-13T17:52:08.000Z", + "fileChanged": "5", + "insertions": "15", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-13T06:24:17.000Z", + "fileChanged": "1", + "insertions": "64", + "deletions": "70", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-08T01:19:14.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-13T06:07:05.000Z", + "fileChanged": "3", + "insertions": "28", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-13T06:06:35.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-13T17:51:31.000Z", + "fileChanged": "18", + "insertions": "165", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-13T05:18:57.000Z", + "fileChanged": "1", + "insertions": "252", + "deletions": "218", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-09T23:12:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-13T19:15:29.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-13T19:15:49.000Z", + "fileChanged": "1", + "insertions": "394", + "deletions": "95", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-13T06:17:57.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-13T06:03:19.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-12T08:59:54.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-10T23:58:23.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-06T18:21:22.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-06T15:29:42.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-05T02:19:07.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-05T01:34:17.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-05T01:20:12.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-05T19:27:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-30T22:46:43.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-30T18:19:53.000Z", + "fileChanged": "1", + "insertions": "54", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-30T17:18:55.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-29T23:36:20.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-29T22:21:25.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-29T18:31:59.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-05T15:26:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-05T15:07:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-02T23:54:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-02T23:15:39.000Z", + "fileChanged": "4", + "insertions": "104", + "deletions": "167", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-05T00:44:48.000Z", + "fileChanged": "4", + "insertions": "189", + "deletions": "313", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-29T06:09:28.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-29T04:45:16.000Z", + "fileChanged": "2", + "insertions": "113", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-28T18:46:24.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-28T02:21:05.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-28T09:25:39.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-28T02:20:16.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-17T04:24:14.000Z", + "fileChanged": "3", + "insertions": "72", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-17T03:27:41.000Z", + "fileChanged": "2", + "insertions": "86", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-13T07:41:17.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-13T07:33:06.000Z", + "fileChanged": "1", + "insertions": "130", + "deletions": "69", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-13T07:32:05.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-13T07:31:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-13T07:31:25.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-13T07:30:10.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-13T07:28:56.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-31T21:30:30.000Z", + "fileChanged": "1", + "insertions": "61", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-12T18:45:17.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-12T17:03:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-10T04:56:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-10T00:42:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-10T00:37:40.000Z", + "fileChanged": "1", + "insertions": "98", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-10T00:31:29.000Z", + "fileChanged": "1", + "insertions": "36", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-09T18:01:53.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-08T21:43:17.000Z", + "fileChanged": "5", + "insertions": "18", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-07T20:26:03.000Z", + "fileChanged": "6", + "insertions": "1247", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-07T20:12:21.000Z", + "fileChanged": "3", + "insertions": "96", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-05T14:45:03.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-05T14:43:34.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-04T23:58:43.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-04T20:26:16.000Z", + "fileChanged": "2", + "insertions": "104", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-03T23:52:14.000Z", + "fileChanged": "1", + "insertions": "71", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-04T00:43:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-02T23:28:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-02T22:44:50.000Z", + "fileChanged": "7", + "insertions": "829", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-02T23:11:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-02T23:10:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-05T00:43:15.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-14T00:57:58.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-13T19:50:47.000Z", + "fileChanged": "1", + "insertions": "65", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-13T19:50:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-13T19:50:15.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-12T22:44:54.000Z", + "fileChanged": "3", + "insertions": "17", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-13T19:23:01.000Z", + "fileChanged": "34", + "insertions": "1340", + "deletions": "251", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-12T22:41:28.000Z", + "fileChanged": "239", + "insertions": "3712", + "deletions": "306", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-11T15:01:58.000Z", + "fileChanged": "2", + "insertions": "64", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-11T13:45:45.000Z", + "fileChanged": "2", + "insertions": "55", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-31T15:47:53.000Z", + "fileChanged": "1", + "insertions": "39", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-11T00:56:49.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2012-12-10T09:32:56.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2012-12-10T09:16:13.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2012-12-10T09:07:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2012-12-10T04:34:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-11-19T19:42:35.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-08T00:58:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-08T00:50:12.000Z", + "fileChanged": "2", + "insertions": "158", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-06T20:58:29.000Z", + "fileChanged": "1", + "deletions": "8", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-03T17:29:01.000Z", + "fileChanged": "6", + "insertions": "231", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-04T05:36:23.000Z", + "fileChanged": "3", + "insertions": "320", + "deletions": "64", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-06T03:45:11.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-05T04:43:29.000Z", + "fileChanged": "2", + "deletions": "96", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-11-28T08:18:06.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-04T02:35:54.000Z", + "fileChanged": "3", + "insertions": "100", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-04T02:17:52.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-12-03T21:34:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-12-01T18:26:40.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-12-01T18:26:40.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-03T02:08:17.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-03T01:19:15.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-02T02:01:17.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-12-02T01:54:14.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-12-01T02:21:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-12T19:01:03.000Z", + "fileChanged": "1", + "insertions": "95", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Lewuathe ", + "authorEmail": "sasaki_kai@lewuathe.sakura.ne.jp", + "date": "2012-11-30T01:13:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2012-11-30T21:02:39.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-11-29T18:59:12.000Z", + "fileChanged": "9", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Joshua Erickson ", + "authorEmail": "josh@snoj.us", + "date": "2012-10-09T00:51:59.000Z", + "fileChanged": "3", + "insertions": "35", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2012-11-27T14:52:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Chad Rhyner ", + "authorEmail": "chadrhyner@gmail.com", + "date": "2012-11-24T04:49:42.000Z", + "fileChanged": "6", + "insertions": "170", + "deletions": "172", + "type": "Commit" + }, + { + "authorName": "Adam Malcontenti-Wilson ", + "authorEmail": "adman.com@gmail.com", + "date": "2012-11-27T05:03:36.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michael Axiak ", + "authorEmail": "mike@axiak.net", + "date": "2012-11-26T18:40:24.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-26T17:18:51.000Z", + "fileChanged": "1", + "insertions": "71", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-26T17:18:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-26T17:12:52.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-25T20:49:32.000Z", + "fileChanged": "3", + "insertions": "23", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-26T00:50:04.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-24T14:24:36.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-24T00:14:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-23T22:53:15.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-23T20:54:33.000Z", + "fileChanged": "10", + "insertions": "597", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-23T20:51:23.000Z", + "fileChanged": "199", + "insertions": "221", + "deletions": "201", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2012-11-22T17:30:18.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-22T15:10:35.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-11-21T08:34:56.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2012-11-20T23:27:22.000Z", + "fileChanged": "17", + "insertions": "827", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-11-21T00:00:45.000Z", + "fileChanged": "2", + "insertions": "94", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-20T17:12:07.000Z", + "fileChanged": "5", + "insertions": "36", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-20T16:28:28.000Z", + "fileChanged": "8", + "insertions": "19", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-20T20:42:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-20T19:11:08.000Z", + "fileChanged": "8", + "insertions": "28", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-20T18:21:48.000Z", + "fileChanged": "9", + "insertions": "119", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Tim Kuijsten ", + "authorEmail": "tim@netsend.nl", + "date": "2012-11-20T16:15:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-20T14:51:25.000Z", + "fileChanged": "22", + "insertions": "971", + "deletions": "479", + "type": "Commit" + }, + { + "authorName": "Sergey Kholodilov ", + "authorEmail": "serghol@gmail.com", + "date": "2012-11-09T20:32:28.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-16T22:44:42.000Z", + "fileChanged": "2", + "deletions": "72", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Stephen Gallagher ", + "authorEmail": "sgallagh@redhat.com", + "date": "2012-10-23T23:54:22.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-16T16:57:15.000Z", + "fileChanged": "88", + "insertions": "1146", + "deletions": "56391", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-11T18:02:33.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-10T17:21:13.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Norris ", + "authorEmail": "trev.norris@gmail.com", + "date": "2012-11-09T22:02:45.000Z", + "fileChanged": "1", + "deletions": "33", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-11-08T23:49:24.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-11-08T22:54:53.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-11-08T20:31:45.000Z", + "fileChanged": "4", + "insertions": "18", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-11-06T22:58:47.000Z", + "fileChanged": "2", + "insertions": "97", + "deletions": "91", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-11-06T22:54:58.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Joshua Erickson ", + "authorEmail": "josh@snoj.us", + "date": "2012-10-09T00:51:59.000Z", + "fileChanged": "3", + "insertions": "31", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-10-10T07:28:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-10-25T14:53:51.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-09-14T18:29:33.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-09-14T18:16:43.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-09-14T18:14:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Stephen Gallagher ", + "authorEmail": "sgallagh@redhat.com", + "date": "2012-10-23T14:27:19.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Stephen Gallagher ", + "authorEmail": "sgallagh@redhat.com", + "date": "2012-10-23T13:01:26.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Anthony Pesch ", + "authorEmail": "anthony@usamp.com", + "date": "2012-10-13T02:56:51.000Z", + "fileChanged": "2", + "insertions": "132", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-10-17T17:06:37.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-04T00:26:27.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-04T00:25:06.000Z", + "fileChanged": "21", + "insertions": "109", + "deletions": "308", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-02T14:56:47.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-11-01T05:14:46.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Girish Ramakrishnan ", + "authorEmail": "girish@forwardbias.in", + "date": "2012-11-01T08:29:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2012-09-05T19:44:15.000Z", + "fileChanged": "4", + "insertions": "306", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-11-01T00:36:41.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jan Wynholds ", + "authorEmail": "jan@rootmusic.com", + "date": "2012-10-09T22:09:07.000Z", + "fileChanged": "5", + "insertions": "168", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-30T22:06:03.000Z", + "fileChanged": "24", + "insertions": "495", + "deletions": "73", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-11-01T00:07:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-30T17:16:28.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Frederico Silva ", + "authorEmail": "frederico.silva@gmail.com", + "date": "2012-10-30T22:04:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "J. Lee Coltrane ", + "authorEmail": "lee@projectmastermind.com", + "date": "2012-10-15T17:07:24.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brandon Philips ", + "authorEmail": "brandon.philips@rackspace.com", + "date": "2012-10-30T14:42:44.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-30T13:40:50.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-30T00:19:01.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Francois Marier ", + "authorEmail": "francois@mozilla.com", + "date": "2012-10-29T03:13:10.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Francois Marier ", + "authorEmail": "francois@mozilla.com", + "date": "2012-10-29T03:16:40.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-29T17:31:50.000Z", + "fileChanged": "5", + "insertions": "129", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Scott Blomquist ", + "authorEmail": "sblom@microsoft.com", + "date": "2012-10-25T23:51:46.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-25T21:42:47.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-25T21:17:43.000Z", + "fileChanged": "2", + "insertions": "82", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-25T21:16:53.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-25T21:15:27.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-25T20:49:32.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-25T20:37:08.000Z", + "fileChanged": "2", + "insertions": "45", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-25T19:53:03.000Z", + "fileChanged": "1", + "insertions": "72", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-25T19:52:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-25T19:52:26.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-25T18:32:31.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-24T16:21:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-25T16:15:35.000Z", + "fileChanged": "105", + "insertions": "168", + "deletions": "116", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-25T14:48:36.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-25T14:08:58.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-24T22:52:15.000Z", + "fileChanged": "1", + "deletions": "10", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-24T22:44:37.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-23T12:06:04.000Z", + "fileChanged": "2", + "insertions": "92", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-07-31T22:52:37.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-24T17:10:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-24T17:10:30.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-24T17:08:58.000Z", + "fileChanged": "1", + "insertions": "87", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-23T19:08:59.000Z", + "fileChanged": "3", + "insertions": "38", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-24T16:21:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-24T13:35:58.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-10-24T00:42:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-10-24T00:42:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Olivier Lalonde ", + "authorEmail": "olalonde@gmail.com", + "date": "2012-10-23T16:45:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-23T18:59:19.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-23T18:50:46.000Z", + "fileChanged": "6", + "insertions": "108", + "deletions": "78", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-23T18:48:55.000Z", + "fileChanged": "21", + "insertions": "301", + "deletions": "135", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-23T18:38:09.000Z", + "fileChanged": "18", + "insertions": "295", + "deletions": "183", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-23T18:35:27.000Z", + "fileChanged": "24", + "insertions": "254", + "deletions": "316", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-23T18:34:46.000Z", + "fileChanged": "111", + "insertions": "175", + "deletions": "127", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-23T18:26:06.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-23T16:08:40.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-23T17:28:51.000Z", + "fileChanged": "1", + "insertions": "46", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-23T17:29:06.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-23T17:27:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-23T17:35:15.000Z", + "fileChanged": "2", + "insertions": "122", + "deletions": "134", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-22T17:37:20.000Z", + "fileChanged": "8", + "insertions": "929", + "deletions": "148", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-13T01:41:30.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-13T00:36:18.000Z", + "fileChanged": "4", + "insertions": "178", + "deletions": "774", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-10T22:44:47.000Z", + "fileChanged": "4", + "insertions": "304", + "deletions": "73", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-23T15:38:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "mstarzinger@chromium.org ", + "authorEmail": "mstarzinger@chromium.org", + "date": "2012-10-09T08:24:58.000Z", + "fileChanged": "3", + "insertions": "78", + "deletions": "64", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-23T15:22:47.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-23T15:07:23.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Aaron Jacobs ", + "authorEmail": "jacobsa@google.com", + "date": "2012-10-23T05:43:51.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "yangguo@chromium.org ", + "authorEmail": "yangguo@chromium.org", + "date": "2012-10-23T13:04:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-21T22:18:14.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-21T22:03:47.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-21T21:55:52.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-21T21:06:48.000Z" + }, + { + "authorName": "Soarez ", + "authorEmail": "igorsoarez@gmail.com", + "date": "2012-10-18T15:53:53.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-20T13:03:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-10-17T16:33:40.000Z", + "fileChanged": "82", + "insertions": "856", + "deletions": "210", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-16T17:59:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-10-15T21:51:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-19T12:37:08.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-15T21:40:15.000Z", + "fileChanged": "3", + "deletions": "100", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Jan Lehnardt ", + "authorEmail": "jan@apache.org", + "date": "2012-10-14T12:44:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-10-13T23:16:56.000Z" + }, + { + "authorName": "Dean McNamee ", + "authorEmail": "dean@gmail.com", + "date": "2012-10-12T23:24:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Dean McNamee ", + "authorEmail": "dean@gmail.com", + "date": "2012-10-12T23:03:22.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-12T13:27:47.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-13T00:49:53.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-13T00:44:11.000Z", + "fileChanged": "4", + "insertions": "51", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-12T23:26:14.000Z", + "fileChanged": "4", + "insertions": "48", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-10-12T23:34:36.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-12T23:22:05.000Z", + "fileChanged": "1", + "deletions": "9", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Max Ogden ", + "authorEmail": "max@maxogden.com", + "date": "2012-10-12T18:31:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-12T18:44:02.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-12T15:57:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-12T15:57:12.000Z", + "fileChanged": "1", + "insertions": "73", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-12T15:56:53.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-11T22:53:11.000Z", + "fileChanged": "7", + "insertions": "132", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-11T21:22:13.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-11T21:11:38.000Z", + "fileChanged": "242", + "insertions": "2401", + "deletions": "1484", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-11T15:32:36.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-11T12:36:23.000Z", + "fileChanged": "5", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-10T22:44:49.000Z", + "fileChanged": "1", + "insertions": "61", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-10-10T20:52:56.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-10T21:07:33.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-10-10T01:47:08.000Z", + "fileChanged": "3", + "insertions": "43", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-10-10T15:18:48.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-10T00:17:32.000Z", + "fileChanged": "12", + "insertions": "444", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-07T23:22:44.000Z", + "fileChanged": "5", + "insertions": "17", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-09T14:32:49.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Aaditya Bhatia ", + "authorEmail": "aadityabhatia@gmail.com", + "date": "2012-10-09T01:01:03.000Z", + "fileChanged": "2", + "insertions": "45", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ricky Ng-Adam ", + "authorEmail": "rngadam@lophilo.com", + "date": "2012-10-09T08:14:00.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-10-08T22:47:38.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-07T22:00:30.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-10-08T17:10:29.000Z", + "fileChanged": "5", + "insertions": "37", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-08T00:18:30.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-07T22:44:47.000Z", + "fileChanged": "4", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-07T22:25:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andrew Paprocki ", + "authorEmail": "andrew@ishiboo.com", + "date": "2012-10-07T08:04:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-10-07T18:27:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-06T22:46:35.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-06T21:04:30.000Z", + "fileChanged": "67", + "insertions": "1958", + "deletions": "19300", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-10-06T01:33:28.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-10-05T23:48:13.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-10-02T14:57:38.000Z", + "fileChanged": "2", + "insertions": "46", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-04T00:40:14.000Z", + "fileChanged": "3", + "insertions": "2", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2012-10-03T19:02:14.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-12T05:33:56.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-03T11:38:03.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-01T20:27:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-10-02T12:49:43.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-10-01T21:30:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Paul Serby ", + "authorEmail": "paul.serby@clock.co.uk", + "date": "2012-10-01T20:10:32.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-10-01T18:36:06.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-10-01T05:43:35.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-30T22:47:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-30T17:34:28.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-28T17:42:52.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-28T16:55:29.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "8", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-28T16:47:48.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-09-28T06:58:50.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2012-08-25T19:25:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Pavel Lang ", + "authorEmail": "langpavel@phpskelet.org", + "date": "2012-09-18T16:26:08.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "thewilli ", + "authorEmail": "email@wje-online.de", + "date": "2012-09-24T08:18:05.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-27T20:25:55.000Z", + "fileChanged": "1", + "insertions": "48", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-27T17:25:37.000Z", + "fileChanged": "1", + "insertions": "63", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-27T17:25:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-27T17:24:32.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-27T16:39:23.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "thewilli ", + "authorEmail": "email@wje-online.de", + "date": "2012-09-24T08:18:05.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-25T23:56:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-25T23:20:08.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-25T22:37:53.000Z", + "fileChanged": "1", + "insertions": "93", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-25T22:36:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-25T22:33:01.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-25T15:09:30.000Z", + "fileChanged": "3", + "insertions": "51", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-25T19:25:55.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-25T18:15:44.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-25T18:09:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-25T18:08:44.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-12T23:50:38.000Z", + "fileChanged": "4", + "insertions": "199", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-08T00:43:18.000Z", + "fileChanged": "78", + "insertions": "91015", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-21T16:03:28.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-10T16:35:58.000Z", + "fileChanged": "1", + "insertions": "178", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-21T16:07:08.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-12T23:11:06.000Z", + "fileChanged": "5", + "insertions": "1", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-12T23:03:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-08T00:08:22.000Z", + "fileChanged": "1", + "insertions": "1679", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-05T19:50:21.000Z", + "fileChanged": "1", + "insertions": "48", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-25T15:28:55.000Z", + "fileChanged": "556", + "insertions": "525", + "deletions": "42780", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-09-25T06:00:01.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Adam Blackburn ", + "authorEmail": "regality@gmail.com", + "date": "2012-09-22T22:48:47.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-24T22:50:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-09-24T18:30:26.000Z", + "fileChanged": "2", + "insertions": "71", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-09-22T01:46:16.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-22T01:53:16.000Z", + "fileChanged": "8", + "insertions": "190", + "deletions": "84", + "type": "Commit" + }, + { + "authorName": "Bryan Cantrill ", + "authorEmail": "bryan@joyent.com", + "date": "2012-09-18T22:35:29.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-01T12:21:39.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-08-01T11:39:14.000Z", + "fileChanged": "1", + "insertions": "45", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-08-01T11:33:22.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-31T14:14:34.000Z", + "fileChanged": "3", + "insertions": "37", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-31T23:29:10.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-31T23:21:46.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-31T22:57:15.000Z", + "fileChanged": "4", + "insertions": "63", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-31T15:47:53.000Z", + "fileChanged": "1", + "insertions": "39", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bryan Cantrill ", + "authorEmail": "bryan@joyent.com", + "date": "2012-09-18T22:35:29.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-20T22:13:36.000Z", + "fileChanged": "3", + "insertions": "85", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bryan Cantrill ", + "authorEmail": "bryan@joyent.com", + "date": "2012-09-18T23:56:34.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-18T22:26:53.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-18T22:20:38.000Z", + "fileChanged": "381", + "insertions": "27649", + "deletions": "11930", + "type": "Commit" + }, + { + "authorName": "Bryan Cantrill ", + "authorEmail": "bryan@joyent.com", + "date": "2012-09-20T23:48:55.000Z", + "fileChanged": "3", + "insertions": "385", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-19T12:37:08.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-19T11:22:27.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-09-12T20:35:59.000Z", + "fileChanged": "6", + "insertions": "173", + "deletions": "142", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-09-18T06:57:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "tasogarepg ", + "authorEmail": "tasogare.pg@gmail.com", + "date": "2012-09-07T18:18:39.000Z", + "fileChanged": "3", + "insertions": "93", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-18T01:34:48.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-18T01:34:31.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-18T01:33:36.000Z", + "fileChanged": "1", + "insertions": "95", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-17T04:51:47.000Z", + "fileChanged": "3", + "insertions": "52", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-18T00:13:29.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-17T23:54:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-18T00:13:29.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-17T22:45:37.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-17T22:36:05.000Z", + "fileChanged": "23", + "insertions": "982", + "deletions": "99", + "type": "Commit" + }, + { + "authorName": "Alex Xu ", + "authorEmail": "alex_y_xu@yahoo.ca", + "date": "2012-09-15T01:06:25.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-13T18:09:54.000Z", + "fileChanged": "2", + "insertions": "231", + "deletions": "180", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-17T15:40:23.000Z", + "fileChanged": "2", + "insertions": "45", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Robin Lee ", + "authorEmail": "cheeselee@fedoraproject.org", + "date": "2012-09-02T07:36:21.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-17T05:17:11.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-30T14:43:20.000Z", + "fileChanged": "31", + "insertions": "183", + "deletions": "164", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-30T13:14:37.000Z", + "fileChanged": "38", + "insertions": "131", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-14T02:00:30.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-14T00:56:41.000Z", + "fileChanged": "30", + "insertions": "689", + "deletions": "68", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-14T00:34:10.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-13T23:59:44.000Z", + "fileChanged": "3", + "insertions": "83", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-20T19:06:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "yangguo@chromium.org ", + "authorEmail": "yangguo@chromium.org", + "date": "2012-08-20T00:01:32.000Z", + "fileChanged": "14", + "insertions": "192", + "deletions": "165", + "type": "Commit" + }, + { + "authorName": "Pavel Lang ", + "authorEmail": "langpavel@phpskelet.org", + "date": "2012-09-13T06:31:50.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-13T14:19:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-13T14:18:54.000Z", + "fileChanged": "27", + "insertions": "896", + "deletions": "149", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-13T12:02:22.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-09-13T02:28:59.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-12T23:18:09.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Felix Böhm ", + "authorEmail": "felixboehm55@googlemail.com", + "date": "2012-05-20T19:54:48.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-12T22:13:07.000Z" + }, + { + "authorName": "Frédéric Germain ", + "authorEmail": "frederic.germain@gmail.com", + "date": "2012-09-09T12:32:40.000Z", + "fileChanged": "2", + "insertions": "96", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-12T15:57:15.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-12T15:04:31.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-11T22:52:50.000Z", + "fileChanged": "11", + "deletions": "2777", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-11T17:00:05.000Z", + "fileChanged": "5", + "insertions": "46", + "deletions": "235", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-11T21:19:40.000Z", + "fileChanged": "108", + "insertions": "108", + "deletions": "108", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-11T16:57:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-11T16:20:54.000Z", + "fileChanged": "2", + "insertions": "98", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-15T00:10:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-11T17:06:07.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-12T02:22:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-11T19:33:23.000Z", + "fileChanged": "8", + "insertions": "117", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-11T19:33:15.000Z", + "fileChanged": "8", + "insertions": "149", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-12T00:46:45.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-11T12:56:42.000Z", + "fileChanged": "775", + "insertions": "126347", + "deletions": "5827", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-11T18:59:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-11T18:57:57.000Z", + "fileChanged": "1", + "insertions": "97", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-11T18:58:35.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-11T15:19:12.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-11T17:57:16.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-11T16:33:28.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-11T15:45:18.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-11T15:43:20.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-11T15:40:17.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-11T13:42:02.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "71", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-11T13:40:39.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-10T22:58:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-09-10T16:11:54.000Z", + "fileChanged": "662", + "insertions": "43731", + "deletions": "708", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-09T23:31:11.000Z", + "fileChanged": "1", + "deletions": "21", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-09-09T18:41:05.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-09-09T18:15:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-09-08T23:10:00.000Z", + "fileChanged": "3", + "insertions": "28", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-09-08T22:09:59.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-08T19:43:55.000Z", + "fileChanged": "2", + "insertions": "149", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Pooya Karimian ", + "authorEmail": "pkarimian@sencha.com", + "date": "2012-08-17T20:57:23.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-09-06T14:06:15.000Z", + "fileChanged": "2", + "insertions": "86", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-21T01:05:25.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-06T13:58:09.000Z", + "fileChanged": "10", + "insertions": "345", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-07T20:20:23.000Z", + "fileChanged": "5", + "insertions": "392", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-04T19:54:40.000Z", + "fileChanged": "3", + "insertions": "72", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-04T14:24:20.000Z", + "fileChanged": "16", + "insertions": "33", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-04T14:03:01.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-08-22T20:36:04.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-04T13:08:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-04T13:02:20.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-04T12:40:59.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-04T12:19:59.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Atsuya Takagi ", + "authorEmail": "atsuya.takagi@gmail.com", + "date": "2012-09-03T10:09:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-03T21:26:19.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-03T21:15:30.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-03T21:09:17.000Z", + "fileChanged": "2", + "insertions": "44", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-09-03T17:05:40.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-03T14:42:18.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-09-01T15:14:18.000Z", + "fileChanged": "3", + "insertions": "109", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-09-02T11:59:50.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "109", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-02T11:45:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-09-02T11:32:57.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-09-01T15:14:18.000Z", + "fileChanged": "3", + "insertions": "109", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-30T22:37:45.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-08-30T15:11:05.000Z", + "fileChanged": "3", + "insertions": "68", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-30T15:29:47.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-30T15:28:02.000Z", + "fileChanged": "5", + "insertions": "25", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-30T14:13:27.000Z", + "fileChanged": "3", + "insertions": "69", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-29T21:57:25.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-29T21:57:25.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ankur Oberoi ", + "authorEmail": "aoberoi@gmail.com", + "date": "2012-08-29T16:52:55.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-29T22:06:47.000Z", + "fileChanged": "8", + "insertions": "1641", + "deletions": "231", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-29T20:53:00.000Z", + "fileChanged": "3", + "insertions": "43", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-29T19:26:28.000Z", + "fileChanged": "1", + "insertions": "106", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-29T00:30:15.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-28T22:34:08.000Z", + "fileChanged": "1", + "insertions": "116", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-28T22:32:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-28T22:31:40.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-28T15:46:29.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-28T22:16:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-28T20:49:34.000Z", + "fileChanged": "1", + "insertions": "64", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Bearice Ren ", + "authorEmail": "bearice@gmail.com", + "date": "2012-08-26T03:20:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-28T19:50:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-28T19:46:44.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ian Babrou ", + "authorEmail": "ibobrik@gmail.com", + "date": "2012-08-28T07:03:51.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-28T00:54:22.000Z" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-28T00:43:55.000Z", + "fileChanged": "29", + "insertions": "460", + "deletions": "322", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-27T22:26:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-27T20:08:06.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-27T20:06:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-27T19:51:25.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-27T19:40:05.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-27T19:31:14.000Z", + "fileChanged": "3", + "insertions": "51", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-24T23:11:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-24T20:18:19.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-24T20:12:30.000Z", + "fileChanged": "2", + "insertions": "128", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-24T20:56:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2012-08-07T00:42:13.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-08-18T05:18:02.000Z", + "fileChanged": "3", + "insertions": "70", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Brandon Wilson ", + "authorEmail": "chlavois@gmail.com", + "date": "2012-08-24T13:47:53.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-23T18:28:47.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-23T18:28:17.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-23T15:51:59.000Z", + "fileChanged": "1", + "insertions": "200", + "deletions": "158", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-23T14:13:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-23T13:50:34.000Z", + "fileChanged": "6", + "insertions": "5", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-23T13:42:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-23T15:54:12.000Z", + "fileChanged": "5", + "insertions": "511", + "deletions": "466", + "type": "Commit" + }, + { + "authorName": "Stéphan Kochen ", + "authorEmail": "stephan@kochen.nl", + "date": "2012-08-23T13:55:42.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-23T14:03:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-22T22:11:26.000Z", + "fileChanged": "1", + "insertions": "36", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-22T21:58:34.000Z", + "fileChanged": "3", + "deletions": "49", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-22T19:53:22.000Z", + "fileChanged": "1", + "insertions": "77", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-22T19:52:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-22T19:51:53.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-08-22T19:18:45.000Z", + "fileChanged": "24", + "insertions": "4065", + "deletions": "159", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-22T08:23:47.000Z", + "fileChanged": "3", + "insertions": "28", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-22T08:19:50.000Z", + "fileChanged": "103", + "insertions": "119", + "deletions": "109", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-22T16:46:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-22T08:05:18.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ron Korving ", + "authorEmail": "rkorving@wizcorp.jp", + "date": "2012-08-21T08:11:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-22T00:38:21.000Z", + "fileChanged": "101", + "insertions": "106", + "deletions": "106", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-21T23:27:30.000Z", + "fileChanged": "104", + "insertions": "152", + "deletions": "111", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-21T22:54:15.000Z", + "fileChanged": "13", + "insertions": "317", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-21T22:29:03.000Z", + "fileChanged": "170", + "insertions": "1377", + "deletions": "1051", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-21T20:27:13.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-21T11:29:53.000Z", + "fileChanged": "4", + "insertions": "71", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-21T11:44:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-21T10:50:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-21T01:05:25.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-21T01:04:16.000Z", + "fileChanged": "6", + "insertions": "57", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-20T22:37:59.000Z", + "fileChanged": "4", + "deletions": "243", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-20T22:32:45.000Z", + "fileChanged": "3", + "deletions": "184", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-20T21:59:21.000Z", + "fileChanged": "6", + "insertions": "165", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "info@2bs.nl", + "date": "2012-08-20T16:13:05.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-20T16:41:07.000Z", + "fileChanged": "72", + "insertions": "2625", + "deletions": "1525", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "info@2bs.nl", + "date": "2012-08-20T16:13:05.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-20T10:52:26.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-20T15:20:41.000Z", + "fileChanged": "10", + "insertions": "122", + "deletions": "94", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-19T18:11:47.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-17T12:11:33.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-17T12:03:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-17T12:02:16.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-17T11:44:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-17T11:05:20.000Z" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-17T00:30:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-16T23:08:06.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-16T22:46:52.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-16T16:56:31.000Z", + "fileChanged": "3", + "insertions": "80", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-24T21:19:50.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-16T21:42:39.000Z", + "fileChanged": "4", + "insertions": "14", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-16T01:56:48.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-16T01:05:33.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-16T00:33:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-16T00:25:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-16T00:25:01.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-16T00:23:59.000Z", + "fileChanged": "1", + "insertions": "75", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-15T16:20:56.000Z", + "fileChanged": "3", + "insertions": "26", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-15T22:47:52.000Z", + "fileChanged": "5", + "insertions": "63", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-15T18:28:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-15T15:33:35.000Z", + "fileChanged": "3", + "insertions": "162", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Golo Roden ", + "authorEmail": "webmaster@goloroden.de", + "date": "2012-08-13T15:43:26.000Z", + "fileChanged": "10", + "insertions": "111", + "deletions": "185", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-15T03:27:28.000Z", + "fileChanged": "179", + "insertions": "2958", + "deletions": "1392", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-15T00:10:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-14T23:30:12.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-08T22:01:38.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-14T21:06:32.000Z", + "fileChanged": "54", + "deletions": "13298", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-14T20:25:52.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-12T01:58:40.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-04T20:32:18.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "jbergstroem ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2011-11-14T13:43:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-13T15:31:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-13T13:04:03.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-13T13:33:04.000Z", + "fileChanged": "4", + "insertions": "35", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-12T21:43:12.000Z", + "fileChanged": "2", + "deletions": "66", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-12T19:46:56.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-08-11T22:31:44.000Z", + "fileChanged": "2", + "insertions": "61", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-08-11T17:56:04.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-08-08T02:12:01.000Z", + "fileChanged": "5", + "insertions": "153", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Böhm ", + "authorEmail": "felixboehm55@googlemail.com", + "date": "2012-05-20T19:26:29.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-09T23:30:41.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-09T23:25:00.000Z", + "fileChanged": "1", + "deletions": "33", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-08T23:02:47.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-08T22:01:38.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-08T21:07:18.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-08T18:23:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-07T19:05:23.000Z", + "fileChanged": "1", + "insertions": "85", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-07T19:02:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-07T19:02:38.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-06T20:10:47.000Z", + "fileChanged": "3", + "insertions": "26", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-07T02:09:36.000Z", + "fileChanged": "101", + "insertions": "118", + "deletions": "134", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-06T23:36:31.000Z", + "fileChanged": "102", + "insertions": "10", + "deletions": "29594", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-06T23:35:10.000Z", + "fileChanged": "3", + "insertions": "16", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-06T23:25:06.000Z", + "fileChanged": "28", + "insertions": "630", + "deletions": "196", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-06T19:22:11.000Z", + "fileChanged": "3", + "insertions": "918", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-06T23:48:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-06T19:27:47.000Z", + "fileChanged": "92", + "insertions": "29243", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-06T21:43:47.000Z", + "fileChanged": "7", + "insertions": "100", + "deletions": "286", + "type": "Commit" + }, + { + "authorName": "Josh Erickson ", + "authorEmail": "josh@snoj.us", + "date": "2012-08-06T20:18:31.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-06T20:22:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-06T20:07:31.000Z", + "fileChanged": "198", + "insertions": "855", + "deletions": "839", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-06T19:40:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-06T19:25:45.000Z" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-06T18:57:47.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-04T22:34:04.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-04T19:39:54.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-04T19:24:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-04T19:12:37.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-04T19:12:22.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-04T19:07:17.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-06T17:18:27.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-04T18:06:14.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-04T19:39:11.000Z", + "fileChanged": "5", + "insertions": "201", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-05T21:47:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-05T22:45:30.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-08-04T19:45:50.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-05T21:47:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-05T21:22:44.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-05T21:40:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-05T21:31:28.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-05T18:26:18.000Z", + "fileChanged": "3", + "insertions": "58", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-05T21:22:44.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-04T07:12:52.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-05T18:26:18.000Z", + "fileChanged": "3", + "insertions": "62", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-07-14T07:43:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-07-14T07:38:00.000Z", + "fileChanged": "4", + "insertions": "88", + "deletions": "111", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-07-10T10:06:13.000Z", + "fileChanged": "4", + "insertions": "230", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Dominic Tarr ", + "authorEmail": "dominic.tarr@gmail.com", + "date": "2012-07-24T14:40:58.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Tyler Neylon ", + "authorEmail": "tylerneylon@gmail.com", + "date": "2012-08-03T19:38:09.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-04T18:30:44.000Z", + "fileChanged": "1", + "insertions": "43", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-08-04T07:10:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-04T00:41:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-04T00:18:16.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-03T23:23:14.000Z" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-08-03T15:11:08.000Z", + "fileChanged": "3", + "insertions": "105", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-02T22:00:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-02T21:59:47.000Z", + "fileChanged": "1", + "insertions": "77", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-02T21:58:15.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-02T21:57:34.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-02T15:12:22.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-02T20:35:41.000Z", + "fileChanged": "3", + "insertions": "28", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-02T15:47:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-02T15:11:09.000Z", + "fileChanged": "2", + "insertions": "116", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-02T02:10:42.000Z", + "fileChanged": "232", + "insertions": "877", + "deletions": "470", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-01T23:06:31.000Z", + "fileChanged": "3", + "insertions": "216", + "deletions": "160", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-02T11:37:02.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-02T10:11:35.000Z", + "fileChanged": "230", + "deletions": "54675", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-01T23:35:51.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Gil Pedersen ", + "authorEmail": "git@gpost.dk", + "date": "2012-08-01T14:04:28.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-01T18:25:24.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-01T17:14:17.000Z", + "fileChanged": "78", + "insertions": "3031", + "deletions": "3031", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2012-08-01T17:04:27.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-08-01T17:11:30.000Z", + "fileChanged": "1", + "insertions": "52", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-08-01T11:36:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-07-31T23:42:36.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Eugen Dueck ", + "authorEmail": "eugen@dueck.org", + "date": "2012-07-31T04:15:46.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-07-31T22:52:37.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-07-31T19:38:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-07-31T19:26:26.000Z", + "fileChanged": "7", + "insertions": "593", + "deletions": "566", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-31T11:45:16.000Z", + "fileChanged": "8", + "deletions": "64", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-31T01:09:04.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-30T18:01:50.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-07-30T09:26:25.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-28T21:00:27.000Z", + "fileChanged": "6", + "insertions": "163", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-03-24T07:00:14.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-28T23:59:26.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Tom Hughes-Croucher ", + "authorEmail": "tom_croucher@yahoo.com", + "date": "2011-04-14T23:56:09.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-28T14:50:55.000Z", + "fileChanged": "7", + "insertions": "116", + "deletions": "55", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-28T12:10:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Joe Andaverde ", + "authorEmail": "joe@andaverde.net", + "date": "2012-07-20T17:51:45.000Z", + "fileChanged": "3", + "insertions": "53", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2012-07-27T17:56:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-26T23:06:12.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-26T22:55:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-25T23:45:04.000Z", + "fileChanged": "2", + "insertions": "95", + "deletions": "100", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-07-09T16:05:46.000Z", + "fileChanged": "4", + "insertions": "68", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-09T15:57:40.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-09T15:53:48.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Adam Malcontenti-Wilson ", + "authorEmail": "adman.com@gmail.com", + "date": "2012-06-23T01:39:10.000Z", + "fileChanged": "1", + "insertions": "62", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-26T11:19:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "22", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-26T18:58:03.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-25T19:00:25.000Z", + "fileChanged": "2", + "insertions": "231", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-07-25T17:34:13.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-25T17:38:41.000Z", + "fileChanged": "1", + "insertions": "59", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-25T17:28:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-25T17:26:03.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-24T23:19:08.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-24T23:04:40.000Z", + "fileChanged": "3", + "insertions": "22", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-25T00:06:50.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-25T00:05:22.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-17T13:16:23.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-24T03:44:12.000Z", + "fileChanged": "3", + "insertions": "39", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-24T21:19:50.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-24T21:18:47.000Z", + "fileChanged": "6", + "insertions": "108", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-24T19:34:13.000Z", + "fileChanged": "137", + "insertions": "1046", + "deletions": "487", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-07-23T16:34:03.000Z" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-07-13T19:11:38.000Z", + "fileChanged": "5", + "insertions": "224", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-07-13T19:08:32.000Z", + "fileChanged": "3", + "insertions": "53", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-07-13T02:19:01.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-07-13T01:26:04.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy J Fontaine ", + "authorEmail": "tjfontaine@gmail.com", + "date": "2012-07-13T01:25:36.000Z", + "fileChanged": "4", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-07-23T09:26:03.000Z", + "fileChanged": "2", + "insertions": "68", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Peter Rybin ", + "authorEmail": "peter.rybin@gmail.com", + "date": "2012-07-03T19:21:37.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@gmail.com", + "date": "2012-07-23T02:08:13.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-07-21T17:33:06.000Z", + "fileChanged": "1", + "deletions": "12", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-20T18:51:38.000Z", + "fileChanged": "1", + "insertions": "61", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-20T18:51:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-20T18:50:47.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-19T21:27:31.000Z", + "fileChanged": "3", + "insertions": "26", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-20T17:01:46.000Z", + "fileChanged": "59", + "insertions": "1970", + "deletions": "2144", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-20T18:07:16.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-20T18:07:16.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-20T17:43:12.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-20T16:51:02.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-20T17:43:12.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-20T17:10:23.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-20T17:10:23.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-20T16:47:05.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-20T16:51:02.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-20T16:47:05.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-11T19:54:20.000Z", + "fileChanged": "4", + "insertions": "306", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-11T19:53:27.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-16T17:41:26.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-11T19:54:20.000Z", + "fileChanged": "4", + "insertions": "305", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-11T19:53:27.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-16T17:41:26.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "15", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-19T20:06:46.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-19T20:03:28.000Z", + "fileChanged": "102", + "insertions": "108", + "deletions": "110", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-17T15:17:34.000Z", + "fileChanged": "4", + "insertions": "109", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-19T17:20:44.000Z", + "fileChanged": "1", + "insertions": "71", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-19T17:19:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-19T17:19:04.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-17T19:02:57.000Z", + "fileChanged": "3", + "insertions": "40", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-19T16:29:29.000Z", + "fileChanged": "8", + "insertions": "164", + "deletions": "124", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-19T16:29:29.000Z", + "fileChanged": "8", + "insertions": "164", + "deletions": "124", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-19T16:20:34.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-18T22:08:35.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-18T21:26:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-18T12:23:39.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-18T11:32:26.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-18T00:13:55.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-18T00:09:34.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@cs.brown.edu", + "date": "2012-07-17T22:25:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-17T18:44:01.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-17T18:43:02.000Z", + "fileChanged": "7", + "insertions": "78", + "deletions": "56", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-17T18:40:13.000Z", + "fileChanged": "11", + "insertions": "176", + "deletions": "152", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-17T18:37:39.000Z", + "fileChanged": "182", + "insertions": "973", + "deletions": "416", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-14T01:11:38.000Z", + "fileChanged": "1", + "insertions": "89", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-16T18:45:12.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-14T01:00:49.000Z", + "fileChanged": "3", + "insertions": "113", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-17T00:29:06.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "39", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-17T01:35:07.000Z" + }, + { + "authorName": "Pavel Lang ", + "authorEmail": "langpavel@phpskelet.org", + "date": "2012-07-16T21:50:15.000Z", + "fileChanged": "3", + "insertions": "51", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-16T23:38:11.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-14T00:28:49.000Z", + "fileChanged": "1", + "deletions": "50", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Mike Morearty ", + "authorEmail": "mike@morearty.com", + "date": "2012-07-13T21:18:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-07-13T23:43:34.000Z", + "fileChanged": "1", + "insertions": "86", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "George Shank ", + "authorEmail": "shankga@gmail.com", + "date": "2012-06-24T02:03:00.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-13T19:18:39.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-13T19:08:10.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-13T18:40:38.000Z", + "fileChanged": "291", + "insertions": "7653", + "deletions": "480", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-12T23:43:14.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-07-12T22:40:45.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-12T16:16:57.000Z", + "fileChanged": "3", + "insertions": "42", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-12T14:56:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-12T14:29:43.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-12T13:42:44.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "11", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-07-12T01:30:04.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-12T00:54:44.000Z", + "fileChanged": "121", + "insertions": "1167", + "deletions": "414", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-12T00:46:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-12T00:38:11.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-11T17:15:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Philipp Hagemeister ", + "authorEmail": "phihag@phihag.de", + "date": "2012-07-10T14:50:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-11T01:19:12.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-11T00:01:30.000Z", + "fileChanged": "1", + "insertions": "51", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-10T23:25:12.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-10T23:16:43.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-10T23:16:25.000Z", + "fileChanged": "407", + "insertions": "10050", + "deletions": "5531", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-07-10T17:39:41.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-10T00:43:02.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ivan Torres ", + "authorEmail": "mexpolk@gmail.com", + "date": "2012-07-07T04:36:53.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-09T17:25:17.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-09T17:24:34.000Z", + "fileChanged": "1", + "insertions": "73", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-09T17:23:49.000Z" + }, + { + "authorName": "Toshihiro Nakamura ", + "authorEmail": "toshihiro.nakamura@gmail.com", + "date": "2012-07-08T00:30:07.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-07-09T15:28:30.000Z", + "fileChanged": "1", + "insertions": "43", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-07-09T14:55:09.000Z", + "fileChanged": "2", + "insertions": "115", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Justin Plock ", + "authorEmail": "jplock@gmail.com", + "date": "2012-07-01T15:35:51.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-08T14:37:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-08T14:31:07.000Z", + "fileChanged": "3", + "insertions": "53", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-09T05:03:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-07-08T02:57:02.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-06T14:37:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-07T20:56:39.000Z", + "fileChanged": "3", + "insertions": "40", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-07T22:01:51.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-13T13:37:15.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-07T21:07:19.000Z", + "fileChanged": "7", + "insertions": "93", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-07-07T21:33:54.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-07-07T21:19:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-07T20:42:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-07T19:40:06.000Z", + "fileChanged": "202", + "insertions": "691", + "deletions": "273", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-07-07T16:53:33.000Z", + "fileChanged": "1", + "insertions": "57", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Dominic Tarr ", + "authorEmail": "dominic.tarr@gmail.com", + "date": "2012-07-07T00:25:13.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-07-07T02:41:01.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Jonas Westerlund ", + "authorEmail": "jonas.westerlund@me.com", + "date": "2012-07-05T16:46:09.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Jonas Westerlund ", + "authorEmail": "jonas.westerlund@me.com", + "date": "2012-07-04T21:19:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jonas Westerlund ", + "authorEmail": "jonas.westerlund@me.com", + "date": "2012-07-04T21:18:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jonas Westerlund ", + "authorEmail": "jonas.westerlund@me.com", + "date": "2012-07-04T21:17:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Jonas Westerlund ", + "authorEmail": "jonas.westerlund@me.com", + "date": "2012-07-04T21:14:27.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Jonas Westerlund ", + "authorEmail": "jonas.westerlund@me.com", + "date": "2012-07-04T21:01:03.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Jonas Westerlund ", + "authorEmail": "jonas.westerlund@me.com", + "date": "2012-07-04T20:59:23.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Jonas Westerlund ", + "authorEmail": "jonas.westerlund@me.com", + "date": "2012-07-04T20:57:48.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Jonas Westerlund ", + "authorEmail": "jonas.westerlund@me.com", + "date": "2012-07-04T20:55:54.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "TJ Holowaychuk ", + "authorEmail": "tj@vision-media.ca", + "date": "2012-07-06T22:26:41.000Z", + "fileChanged": "3", + "insertions": "40", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tim Macfarlane ", + "authorEmail": "timmacfarlane@gmail.com", + "date": "2012-06-29T09:33:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-01T20:58:22.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-05T19:50:21.000Z", + "fileChanged": "1", + "insertions": "48", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-07-03T22:30:53.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Vladimir Beloborodov ", + "authorEmail": "redhead.ru@gmail.com", + "date": "2012-06-13T17:37:31.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-07-04T18:51:24.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-07-03T02:13:24.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-04T12:08:07.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2012-06-27T15:47:07.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "11", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-04T11:41:56.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-03T18:56:06.000Z", + "fileChanged": "611", + "insertions": "2983", + "deletions": "22714", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-03T18:54:19.000Z", + "fileChanged": "4", + "insertions": "478", + "deletions": "476", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-03T13:28:06.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-03T13:19:08.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-03T13:14:33.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-01T22:07:11.000Z", + "fileChanged": "4", + "insertions": "4", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-07-01T18:09:55.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-30T15:49:31.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-30T02:27:29.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-30T01:27:54.000Z", + "fileChanged": "7", + "insertions": "233", + "deletions": "145", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-30T00:23:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-29T17:15:40.000Z", + "fileChanged": "1", + "insertions": "77", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-29T17:14:58.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-29T15:29:32.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-29T15:03:37.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-29T02:28:00.000Z", + "fileChanged": "3", + "insertions": "44", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-29T08:22:10.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-29T08:20:59.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-29T08:20:13.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-29T07:45:55.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-29T05:23:53.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-29T05:06:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-29T02:10:56.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-29T02:08:32.000Z", + "fileChanged": "131", + "insertions": "1538", + "deletions": "244", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-29T00:20:39.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-28T17:13:28.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-28T14:17:30.000Z", + "fileChanged": "3", + "insertions": "169", + "deletions": "147", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-28T06:32:43.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-28T02:14:24.000Z", + "fileChanged": "42", + "insertions": "3460", + "deletions": "3207", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-27T17:15:28.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-28T01:47:40.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-06-18T05:16:16.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-06-21T01:02:49.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-06-21T00:54:06.000Z", + "fileChanged": "41", + "insertions": "3196", + "deletions": "3434", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-27T23:07:42.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Gabriel ", + "authorEmail": "g2p.code@gmail.com", + "date": "2012-06-26T17:45:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-26T23:59:25.000Z", + "fileChanged": "2", + "insertions": "115", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-26T22:33:50.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-26T22:20:26.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-26T21:38:35.000Z", + "fileChanged": "6", + "insertions": "36", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Tim Oxley ", + "authorEmail": "secoif@gmail.com", + "date": "2012-06-25T18:14:10.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-26T17:23:24.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-26T16:13:59.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-24T02:31:21.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-06-25T16:53:35.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-26T14:34:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-26T01:39:32.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "9", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-26T01:38:39.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-26T00:54:11.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-26T00:54:11.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-13T13:37:15.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-26T00:03:24.000Z", + "fileChanged": "5", + "insertions": "84", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-06-25T16:53:35.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-25T16:40:48.000Z", + "fileChanged": "1", + "insertions": "0", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-25T16:40:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-05-26T04:56:41.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-25T06:02:00.000Z", + "fileChanged": "1", + "insertions": "381", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-25T14:58:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-25T14:57:45.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-20T17:44:15.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-25T14:37:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-25T14:34:59.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "George Shank ", + "authorEmail": "shankga@gmail.com", + "date": "2012-06-24T02:03:00.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2012-06-23T09:31:26.000Z", + "fileChanged": "7", + "insertions": "65", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-23T17:03:12.000Z", + "fileChanged": "4", + "insertions": "156", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-23T00:29:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-22T22:13:11.000Z", + "fileChanged": "98", + "insertions": "102", + "deletions": "101", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-22T18:51:21.000Z", + "fileChanged": "2", + "insertions": "130", + "deletions": "57", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-22T16:04:14.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-22T15:49:20.000Z", + "fileChanged": "3", + "insertions": "60", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-21T23:44:22.000Z", + "fileChanged": "102", + "insertions": "126", + "deletions": "105", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-22T14:44:40.000Z", + "fileChanged": "7", + "insertions": "175", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-22T13:15:44.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-22T13:13:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-22T13:11:38.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-22T13:11:17.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-22T02:44:58.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-22T02:36:17.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-22T02:20:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-22T02:15:03.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Joe Shaw ", + "authorEmail": "joe@joeshaw.org", + "date": "2012-06-21T23:46:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-21T23:19:56.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-20T17:14:45.000Z", + "fileChanged": "166", + "insertions": "11944", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-20T05:13:22.000Z", + "fileChanged": "28", + "insertions": "1460", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-21T23:18:00.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-21T23:03:48.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-06-21T23:02:43.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-21T21:47:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-21T20:39:54.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-21T19:20:23.000Z", + "fileChanged": "4", + "insertions": "10", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-21T18:42:33.000Z", + "fileChanged": "11", + "insertions": "153", + "deletions": "76", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-21T17:04:21.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-21T18:52:11.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-21T15:55:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-21T13:03:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-21T13:03:21.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-16T20:41:37.000Z", + "fileChanged": "8", + "insertions": "52", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-21T00:25:56.000Z", + "fileChanged": "1", + "insertions": "73", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-20T16:15:35.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-21T00:39:13.000Z", + "fileChanged": "4", + "insertions": "24", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2012-06-18T09:03:32.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-06-13T13:47:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-13T13:37:15.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-20T22:33:44.000Z", + "fileChanged": "22", + "insertions": "182", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-06-20T20:31:49.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-20T17:28:44.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-20T01:32:55.000Z", + "fileChanged": "1", + "insertions": "73", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-20T00:03:12.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-20T00:01:11.000Z" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-19T23:07:57.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-19T22:56:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-19T22:53:01.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-19T21:42:04.000Z", + "fileChanged": "1", + "insertions": "0", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-19T01:28:31.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-19T18:07:59.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-19T01:22:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-19T20:24:09.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-19T19:12:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-19T17:20:36.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-19T16:53:03.000Z", + "fileChanged": "105", + "insertions": "160", + "deletions": "110", + "type": "Commit" + }, + { + "authorName": "verwaest@chromium.org ", + "authorEmail": "verwaest@chromium.org", + "date": "2012-06-18T11:16:02.000Z", + "fileChanged": "2", + "insertions": "68", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "jkummerow@chromium.org ", + "authorEmail": "jkummerow@chromium.org", + "date": "2012-06-18T08:28:32.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "erik.corry@gmail.com ", + "authorEmail": "erik.corry@gmail.com", + "date": "2012-06-15T11:53:09.000Z", + "fileChanged": "5", + "insertions": "14", + "deletions": "66", + "type": "Commit" + }, + { + "authorName": "danno@chromium.org ", + "authorEmail": "danno@chromium.org", + "date": "2012-06-18T10:51:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-19T15:48:07.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-19T11:50:58.000Z", + "fileChanged": "2", + "insertions": "45", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-19T01:08:21.000Z", + "fileChanged": "125", + "insertions": "623", + "deletions": "271", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-19T01:07:43.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-19T00:46:39.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2012-06-16T03:12:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-18T23:56:55.000Z", + "fileChanged": "3", + "insertions": "75", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-18T15:18:03.000Z", + "fileChanged": "3", + "insertions": "257", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-18T23:04:36.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-18T22:17:20.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2012-06-18T18:42:47.000Z", + "fileChanged": "5", + "insertions": "1", + "deletions": "54", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-18T17:18:49.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-18T21:51:41.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-06-18T21:27:21.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-06-18T20:57:29.000Z", + "fileChanged": "18", + "insertions": "497", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-18T13:58:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-18T13:35:40.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-18T13:13:37.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-18T02:05:21.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-18T00:35:14.000Z", + "fileChanged": "50", + "insertions": "136", + "deletions": "136", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-06-17T20:14:20.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-05-22T09:06:05.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-06-17T09:50:40.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Reid Burke ", + "authorEmail": "me@reidburke.com", + "date": "2012-06-16T01:52:31.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-17T19:04:35.000Z", + "fileChanged": "141", + "insertions": "1620", + "deletions": "485", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-16T22:50:22.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-16T21:23:17.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-16T18:14:21.000Z", + "fileChanged": "2", + "deletions": "89", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-16T18:02:49.000Z", + "fileChanged": "3", + "deletions": "81", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "ssuda ", + "authorEmail": "sambasivarao@gmail.com", + "date": "2012-04-25T14:39:52.000Z", + "fileChanged": "3", + "insertions": "81", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Böhm ", + "authorEmail": "felixboehm55@googlemail.com", + "date": "2012-05-16T14:10:31.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-16T17:19:34.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Charlie McConnell ", + "authorEmail": "charlie@charlieistheman.com", + "date": "2012-06-16T06:19:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-16T16:05:28.000Z", + "fileChanged": "1", + "insertions": "31", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2012-06-15T21:21:36.000Z", + "fileChanged": "2", + "insertions": "89", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-16T15:51:33.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Charlie McConnell ", + "authorEmail": "charlie@charlieistheman.com", + "date": "2012-06-16T01:58:27.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-15T19:50:37.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-15T19:47:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-15T19:46:55.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-15T19:10:43.000Z", + "fileChanged": "4", + "insertions": "42", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-15T17:00:30.000Z", + "fileChanged": "188", + "insertions": "2576", + "deletions": "3534", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-06-12T19:53:08.000Z", + "fileChanged": "9", + "insertions": "43", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ben Kelly ", + "authorEmail": "ben@wanderview.com", + "date": "2012-06-06T19:05:18.000Z", + "fileChanged": "11", + "insertions": "171", + "deletions": "131", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-15T15:41:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-15T16:32:59.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-15T05:17:39.000Z", + "fileChanged": "1", + "insertions": "68", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-15T00:24:40.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-06-14T23:59:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Reid Burke ", + "authorEmail": "me@reidburke.com", + "date": "2012-06-13T17:25:43.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-14T23:37:24.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-14T19:58:59.000Z", + "fileChanged": "2", + "insertions": "166", + "deletions": "92", + "type": "Commit" + }, + { + "authorName": "danno@chromium.org ", + "authorEmail": "danno@chromium.org", + "date": "2012-06-14T08:57:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "mstarzinger@chromium.org ", + "authorEmail": "mstarzinger@chromium.org", + "date": "2012-06-14T13:54:23.000Z", + "fileChanged": "2", + "insertions": "71", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-14T19:18:12.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-14T17:24:27.000Z", + "fileChanged": "1", + "insertions": "94", + "deletions": "113", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-14T17:22:33.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-14T17:11:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-14T16:35:44.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-14T16:34:38.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-05-30T18:32:50.000Z", + "fileChanged": "3", + "insertions": "28", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-14T15:37:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-14T14:06:53.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-06-14T08:33:56.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-06-14T00:39:20.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-06-14T00:32:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-14T00:52:30.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-14T00:50:25.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "yangguo@chromium.org ", + "authorEmail": "yangguo@chromium.org", + "date": "2012-06-13T14:07:50.000Z", + "fileChanged": "4", + "insertions": "2", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-02T14:01:18.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-06-13T13:47:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-13T13:37:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "mstarzinger@chromium.org ", + "authorEmail": "mstarzinger@chromium.org", + "date": "2012-06-13T11:58:18.000Z", + "fileChanged": "3", + "insertions": "70", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-13T13:34:45.000Z", + "fileChanged": "373", + "insertions": "36026", + "deletions": "11559", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-13T23:28:51.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-13T23:24:43.000Z", + "fileChanged": "7", + "insertions": "571", + "deletions": "430", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-13T22:55:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-06-13T22:55:29.000Z", + "fileChanged": "8", + "insertions": "537", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-06-11T23:23:17.000Z", + "fileChanged": "11", + "insertions": "500", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-13T20:10:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-12T17:02:52.000Z", + "fileChanged": "10", + "insertions": "640", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-13T15:40:50.000Z", + "fileChanged": "5", + "insertions": "68", + "deletions": "68", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-13T02:05:51.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-13T01:02:53.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-13T00:49:33.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-12T23:35:51.000Z", + "fileChanged": "14", + "insertions": "28", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-12T20:39:55.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-12T20:37:36.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-12T17:58:05.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-12T20:02:35.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-12T19:47:11.000Z", + "fileChanged": "2", + "insertions": "83", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-12T17:19:26.000Z", + "fileChanged": "32", + "insertions": "396", + "deletions": "111", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-12T17:52:38.000Z", + "fileChanged": "33", + "insertions": "115", + "deletions": "410", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-12T15:05:49.000Z", + "fileChanged": "33", + "insertions": "410", + "deletions": "115", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-12T14:04:56.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-12T13:32:40.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-11T21:46:17.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-06-12T07:01:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-06-12T06:01:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-12T00:22:30.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-12T00:04:44.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-11T23:56:48.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-11T23:40:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-11T21:49:31.000Z", + "fileChanged": "2", + "insertions": "118", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-11T22:24:38.000Z", + "fileChanged": "3", + "insertions": "93", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-11T21:46:17.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-11T19:22:50.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "yangguo@chromium.org ", + "authorEmail": "yangguo@chromium.org", + "date": "2012-05-08T12:38:24.000Z", + "fileChanged": "3", + "insertions": "10", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Charlie McConnell ", + "authorEmail": "charlie@charlieistheman.com", + "date": "2012-06-01T04:23:05.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-11T16:30:44.000Z", + "fileChanged": "40", + "insertions": "2542", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-11T16:07:42.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-11T15:58:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-11T15:57:32.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-11T04:25:41.000Z", + "fileChanged": "3", + "insertions": "47", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-11T15:18:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-11T14:50:07.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-11T14:48:02.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-11T04:29:47.000Z", + "fileChanged": "172", + "insertions": "872", + "deletions": "1906", + "type": "Commit" + }, + { + "authorName": "Nuno Job ", + "authorEmail": "nunojobpinto@gmail.com", + "date": "2012-06-09T17:47:18.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-09T07:39:57.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-09T07:33:25.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-08T23:49:03.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-08T22:26:04.000Z", + "fileChanged": "1", + "insertions": "144", + "deletions": "182", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-06-08T18:24:52.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-06-08T18:06:10.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-06-08T17:59:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-24T01:41:49.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-29T22:09:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-09T15:09:42.000Z", + "fileChanged": "253", + "insertions": "5143", + "deletions": "22142", + "type": "Commit" + }, + { + "authorName": "Marc Harter ", + "authorEmail": "wavded@gmail.com", + "date": "2012-06-06T15:17:01.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Charlie McConnell ", + "authorEmail": "charlie@charlieistheman.com", + "date": "2012-06-01T04:23:05.000Z", + "fileChanged": "5", + "insertions": "79", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-08T18:46:34.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Robert Mustacchi ", + "authorEmail": "rm@joyent.com", + "date": "2012-06-07T23:21:04.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-04T18:10:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-02T14:01:18.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-24T01:41:49.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-29T22:09:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-07T18:45:30.000Z", + "fileChanged": "192", + "insertions": "4208", + "deletions": "7189", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-06-06T17:19:14.000Z", + "fileChanged": "4", + "insertions": "26", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-07T17:44:31.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-06T22:01:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-06T22:01:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-06T19:33:29.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-06T19:07:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-06T16:58:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-06T16:58:24.000Z" + }, + { + "authorName": "Joel Brandt ", + "authorEmail": "joelrbrandt@gmail.com", + "date": "2012-06-06T01:32:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-06T03:21:07.000Z", + "fileChanged": "5", + "insertions": "219", + "deletions": "61", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-06T00:23:41.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-06T00:20:05.000Z", + "fileChanged": "249", + "insertions": "1089", + "deletions": "3614", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-05T19:02:37.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-05-27T07:47:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-05T15:04:52.000Z", + "fileChanged": "5", + "insertions": "18", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-05T13:45:46.000Z", + "fileChanged": "45", + "insertions": "1564", + "deletions": "679", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-05T14:45:29.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-05T13:58:55.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-06-05T10:24:15.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-06-05T13:10:37.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-05T00:32:46.000Z", + "fileChanged": "239", + "insertions": "941", + "deletions": "3560", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-04T18:21:42.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-04T19:39:23.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Jeroen Janssen ", + "authorEmail": "jeroen.janssen@gmail.com", + "date": "2012-06-04T16:59:01.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-04T18:10:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-06-04T13:02:02.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Jeroen Janssen ", + "authorEmail": "jeroen.janssen@gmail.com", + "date": "2012-06-03T09:03:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-04T12:04:15.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Jeroen Janssen ", + "authorEmail": "jeroen.janssen@gmail.com", + "date": "2012-06-02T19:49:31.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Jeroen Janssen ", + "authorEmail": "jeroen.janssen@gmail.com", + "date": "2012-06-02T16:36:20.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-02T14:01:18.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-29T22:32:20.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-24T01:41:49.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-29T22:09:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-29T22:05:24.000Z", + "fileChanged": "167", + "insertions": "5054", + "deletions": "3138", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-05-16T16:04:24.000Z", + "fileChanged": "1", + "insertions": "46", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Simon Sturmer ", + "authorEmail": "sstur@me.com", + "date": "2012-06-01T07:33:19.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Matt Gollob ", + "authorEmail": "mattgollob@gmail.com", + "date": "2012-06-01T02:44:10.000Z", + "fileChanged": "4", + "insertions": "24", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-02T00:01:57.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-06-01T17:20:56.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-05-16T16:04:24.000Z", + "fileChanged": "11", + "insertions": "472", + "deletions": "246", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-06-01T16:07:22.000Z", + "fileChanged": "36", + "insertions": "914", + "deletions": "597", + "type": "Commit" + }, + { + "authorName": "Erwin van der Koogh ", + "authorEmail": "github@koogh.com", + "date": "2012-05-31T12:11:12.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-30T23:46:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-29T17:08:24.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-29T17:07:44.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-05-28T19:52:34.000Z", + "fileChanged": "16", + "insertions": "409", + "deletions": "279", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-05-26T13:28:35.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-29T11:05:49.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-26T05:20:21.000Z", + "fileChanged": "3", + "insertions": "53", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-27T15:32:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-27T05:36:04.000Z", + "fileChanged": "121", + "insertions": "263", + "deletions": "169", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-28T22:06:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-05-28T06:36:04.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-05-27T21:29:00.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-27T22:32:16.000Z", + "fileChanged": "7", + "insertions": "38", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-05-26T13:28:35.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeroen Janssen ", + "authorEmail": "jeroen.janssen@gmail.com", + "date": "2012-05-26T10:36:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jeroen Janssen ", + "authorEmail": "jeroen.janssen@gmail.com", + "date": "2012-05-26T10:25:44.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-25T12:02:35.000Z", + "fileChanged": "6", + "insertions": "123", + "deletions": "94", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-11T17:35:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-06T17:11:50.000Z", + "fileChanged": "1", + "insertions": "109", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-24T21:26:32.000Z", + "fileChanged": "20", + "insertions": "130", + "deletions": "160", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-05-24T18:49:51.000Z", + "fileChanged": "1", + "deletions": "24", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Jeroen Janssen ", + "authorEmail": "jeroen.janssen@gmail.com", + "date": "2012-05-24T16:36:20.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-24T12:07:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-05-22T23:02:10.000Z", + "fileChanged": "4", + "insertions": "91", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2012-05-21T14:51:09.000Z", + "fileChanged": "1", + "insertions": "70", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jeroen Janssen ", + "authorEmail": "jeroen.janssen@gmail.com", + "date": "2012-05-21T22:07:11.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-23T02:01:19.000Z", + "fileChanged": "12", + "insertions": "448", + "deletions": "210", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-05-22T23:49:19.000Z", + "fileChanged": "18", + "insertions": "50", + "deletions": "609", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-05-22T20:55:47.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-18T00:02:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-21T16:00:25.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-17T05:13:29.000Z", + "fileChanged": "86", + "insertions": "3547", + "deletions": "1328", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-05-21T22:46:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-05-21T22:43:26.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-05-21T22:41:56.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Oleg Efimov ", + "authorEmail": "efimovov@gmail.com", + "date": "2012-05-21T17:09:40.000Z", + "fileChanged": "10", + "insertions": "64", + "deletions": "159", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-05-20T13:57:24.000Z", + "fileChanged": "4", + "insertions": "11", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Oleg Efimov ", + "authorEmail": "efimovov@gmail.com", + "date": "2012-05-21T15:27:15.000Z", + "fileChanged": "3", + "insertions": "44", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Marcel Laverdet ", + "authorEmail": "marcel@laverdet.com", + "date": "2012-04-11T00:27:38.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-20T22:31:28.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-20T12:40:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-20T03:42:07.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-20T03:17:18.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-05-19T21:05:43.000Z", + "fileChanged": "3", + "insertions": "7", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-17T04:18:25.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Kevin Bowman ", + "authorEmail": "github@magicmonkey.org", + "date": "2012-05-16T03:24:05.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-16T00:35:42.000Z", + "fileChanged": "2", + "insertions": "68", + "deletions": "69", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-16T00:02:39.000Z", + "fileChanged": "1", + "insertions": "72", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-16T23:32:37.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-16T02:06:15.000Z", + "fileChanged": "2", + "insertions": "84", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-16T21:49:51.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-16T21:44:15.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-16T17:15:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-16T15:50:24.000Z", + "fileChanged": "3", + "insertions": "45", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-16T02:53:16.000Z", + "fileChanged": "297", + "insertions": "25594", + "deletions": "6834", + "type": "Commit" + }, + { + "authorName": "Adam Malcontenti-Wilson ", + "authorEmail": "adman.com@gmail.com", + "date": "2012-05-16T14:27:34.000Z", + "fileChanged": "3", + "insertions": "56", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-16T14:08:18.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-16T00:37:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Kevin Bowman ", + "authorEmail": "github@magicmonkey.org", + "date": "2012-05-15T22:10:25.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-15T21:21:22.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-15T21:19:46.000Z", + "fileChanged": "1", + "insertions": "106", + "deletions": "77", + "type": "Commit" + }, + { + "authorName": "Sadique Ali ", + "authorEmail": "sadiqalikm@gmail.com", + "date": "2012-05-01T10:33:36.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-15T20:05:33.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-15T20:03:56.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-15T20:03:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-15T15:24:06.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-29T22:58:15.000Z", + "fileChanged": "1", + "insertions": "58", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-28T16:45:10.000Z", + "fileChanged": "8", + "insertions": "252", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-27T16:58:30.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-15T18:37:34.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-15T00:21:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-11T00:55:28.000Z", + "fileChanged": "1", + "insertions": "175", + "deletions": "183", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-15T17:21:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-15T17:21:40.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-27T14:54:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-27T14:52:06.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-27T02:42:10.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-27T02:39:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-27T02:37:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-14T23:12:15.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-14T23:14:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-15T00:21:20.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-14T19:01:38.000Z", + "fileChanged": "4", + "insertions": "66", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-14T15:34:33.000Z", + "fileChanged": "1", + "insertions": "56", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "ssuda ", + "authorEmail": "sambasivarao@gmail.com", + "date": "2012-05-13T19:38:23.000Z", + "fileChanged": "9", + "insertions": "190", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-04-12T07:23:07.000Z", + "fileChanged": "6", + "insertions": "696", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-04-12T07:18:12.000Z", + "fileChanged": "1", + "insertions": "54", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "rsolomo ", + "authorEmail": "raybsolomon@gmail.com", + "date": "2012-05-14T02:17:51.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-14T05:14:18.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-05-13T01:29:44.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-05-13T01:18:09.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-05-12T17:37:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-05-12T01:24:46.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-05-06T19:47:25.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-11T00:55:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-11T00:55:28.000Z", + "fileChanged": "1", + "insertions": "187", + "deletions": "157", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-11T01:09:51.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-11T15:49:03.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-05-11T10:07:08.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-11T02:39:20.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-10T14:54:17.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-10T14:49:35.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "vegorov@chromium.org ", + "authorEmail": "vegorov@chromium.org", + "date": "2011-10-12T10:35:42.000Z", + "fileChanged": "3", + "insertions": "47", + "deletions": "4", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-09T22:12:13.000Z" + }, + { + "authorName": "Philip Tellis ", + "authorEmail": "philip.tellis@gmail.com", + "date": "2012-05-09T20:39:27.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-09T21:11:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2012-05-08T20:02:28.000Z", + "fileChanged": "5", + "insertions": "20", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2012-05-08T14:07:14.000Z", + "fileChanged": "6", + "insertions": "28", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-09T17:07:02.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2012-05-06T09:32:49.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-09T04:06:42.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-05-09T02:58:26.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-07T15:04:56.000Z", + "fileChanged": "4", + "insertions": "297", + "deletions": "69", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-05-09T02:34:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-05-08T18:19:38.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-05-09T01:54:28.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-05-07T21:30:55.000Z", + "fileChanged": "8", + "insertions": "260", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-05-08T16:09:04.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-05-08T15:38:02.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-05-08T18:17:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "yangguo@chromium.org ", + "authorEmail": "yangguo@chromium.org", + "date": "2012-05-08T12:38:24.000Z", + "fileChanged": "3", + "insertions": "10", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-08T14:01:36.000Z", + "fileChanged": "3", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-07T21:19:16.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-07T21:17:17.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-07T20:49:10.000Z", + "fileChanged": "1", + "insertions": "50", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Kevin Gadd ", + "authorEmail": "kevin.gadd@gmail.com", + "date": "2012-04-25T07:11:06.000Z", + "fileChanged": "1", + "insertions": "39", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "James Koval ", + "authorEmail": "james.ross.koval@gmail.com", + "date": "2012-05-06T18:23:09.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-06T05:33:06.000Z", + "fileChanged": "294", + "insertions": "3778", + "deletions": "2820", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-06T02:27:42.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-05T22:07:58.000Z", + "fileChanged": "3", + "insertions": "53", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-05T22:05:14.000Z", + "fileChanged": "2", + "insertions": "58", + "deletions": "58", + "type": "Commit" + }, + { + "authorName": "Javier Hernández ", + "authorEmail": "jhernandez@emergya.com", + "date": "2012-05-04T22:06:24.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-05-05T14:10:36.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-05-05T13:47:24.000Z", + "fileChanged": "2", + "insertions": "99", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Mark Cavage ", + "authorEmail": "mark.cavage@joyent.com", + "date": "2011-12-19T00:13:51.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-05-05T03:22:01.000Z", + "fileChanged": "2", + "insertions": "78", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-05T01:29:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-05T01:29:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "J. Lee Coltrane ", + "authorEmail": "lee@projectmastermind.com", + "date": "2012-05-02T16:38:31.000Z", + "fileChanged": "6", + "insertions": "343", + "deletions": "20", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-05T00:24:30.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-05T00:14:09.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Brian Schroeder ", + "authorEmail": "bts@gmail.com", + "date": "2012-05-03T20:27:06.000Z", + "fileChanged": "3", + "insertions": "132", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Marcel Laverdet ", + "authorEmail": "marcel@laverdet.com", + "date": "2012-05-04T22:29:42.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "21", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-04T22:12:47.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-04T17:40:27.000Z", + "fileChanged": "1", + "insertions": "143", + "deletions": "123", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-04T17:32:42.000Z", + "fileChanged": "5", + "insertions": "27", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-03T17:39:16.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-03T17:16:25.000Z", + "fileChanged": "9", + "insertions": "469", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-03T17:20:20.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "vvo ", + "authorEmail": "v@fasterize.com", + "date": "2012-04-26T23:02:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-02T19:13:54.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-01T22:25:59.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-01T21:26:18.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-04T20:34:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-04T20:34:08.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-04T18:21:08.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-04T19:51:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-04T18:06:35.000Z", + "fileChanged": "191", + "insertions": "197", + "deletions": "201", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-04T18:00:39.000Z", + "fileChanged": "4", + "insertions": "28", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-04T17:57:33.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-04T17:54:24.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-04T17:40:27.000Z", + "fileChanged": "1", + "insertions": "128", + "deletions": "111", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-04T17:32:42.000Z", + "fileChanged": "5", + "insertions": "27", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "ANDO Takahiro ", + "authorEmail": "takahiro.ando@gmail.com", + "date": "2012-05-01T02:41:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-03T17:39:16.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-03T17:16:25.000Z", + "fileChanged": "9", + "insertions": "466", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-03T17:20:20.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-05-03T14:55:25.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "vvo ", + "authorEmail": "v@fasterize.com", + "date": "2012-04-26T23:02:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-21T05:13:25.000Z", + "fileChanged": "5", + "insertions": "89", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-04-19T18:58:35.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-02T23:03:08.000Z", + "fileChanged": "2", + "insertions": "81", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-02T23:03:08.000Z", + "fileChanged": "2", + "insertions": "89", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-02T02:24:38.000Z", + "fileChanged": "2", + "insertions": "71", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-02T22:53:45.000Z", + "fileChanged": "1", + "deletions": "8", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-02T19:13:54.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-02T16:03:23.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "105", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-05-02T05:30:23.000Z", + "fileChanged": "3", + "insertions": "19", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Yoshihiro Kikuchi ", + "authorEmail": "yknetg@gmail.com", + "date": "2012-05-01T02:32:20.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-01T22:51:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-01T22:25:59.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-01T21:26:18.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-05-01T20:53:30.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-05-01T20:31:26.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-05-01T18:59:59.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Yi, EungJun ", + "authorEmail": "semtlenori@gmail.com", + "date": "2012-04-02T16:31:21.000Z", + "fileChanged": "3", + "insertions": "26", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-04-21T05:58:15.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-01T12:55:51.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-05-01T12:52:00.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-05-01T00:49:19.000Z", + "fileChanged": "3", + "insertions": "72", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-05-01T01:51:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Garen Torikian ", + "authorEmail": "gjtorikian@gmail.com", + "date": "2012-03-23T02:03:18.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-04-21T17:55:14.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-03-30T06:17:41.000Z", + "fileChanged": "4", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-30T23:18:37.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Michael Thomas ", + "authorEmail": "aelmalinka@gmail.com", + "date": "2012-04-29T18:40:36.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-30T22:55:43.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-30T22:36:40.000Z", + "fileChanged": "3", + "insertions": "61", + "deletions": "14", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-30T20:15:40.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-27T21:33:15.000Z", + "fileChanged": "3", + "insertions": "33", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-30T17:30:05.000Z", + "fileChanged": "1", + "insertions": "36", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-30T15:37:53.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-27T22:01:31.000Z", + "fileChanged": "135", + "insertions": "779", + "deletions": "543", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-30T01:53:41.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-04-29T13:17:16.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-28T22:24:51.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-28T22:22:01.000Z", + "fileChanged": "67", + "insertions": "1965", + "deletions": "1327", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-28T22:17:23.000Z" + }, + { + "authorName": "ssuda ", + "authorEmail": "sambasivarao@gmail.com", + "date": "2012-03-20T15:39:49.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-28T21:36:47.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-04-28T12:24:17.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-27T21:10:35.000Z", + "fileChanged": "1", + "insertions": "127", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-27T20:13:00.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-27T20:06:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-27T20:00:44.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-27T19:28:56.000Z", + "fileChanged": "14", + "insertions": "287", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-27T18:29:35.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Marcel Laverdet ", + "authorEmail": "marcel@laverdet.com", + "date": "2012-04-11T00:27:38.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-27T14:58:38.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-26T03:08:30.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-26T03:10:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-25T11:10:31.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-04-24T21:04:39.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-24T08:32:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-24T08:24:13.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-24T08:34:17.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-04-23T17:03:36.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-24T02:01:28.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-24T01:45:30.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-24T01:41:49.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-04-23T04:37:37.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-23T13:58:32.000Z", + "fileChanged": "1", + "insertions": "45", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Malte-Thorben Bruns ", + "authorEmail": "skenqbx@googlemail.com", + "date": "2012-04-21T20:40:48.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-21T20:53:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-21T17:32:03.000Z", + "fileChanged": "1", + "insertions": "80", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-04-21T03:06:00.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-04-20T16:59:54.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-20T14:46:36.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-20T14:42:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-04-20T06:32:58.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2012-04-20T06:57:14.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-19T23:28:54.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-04-18T21:23:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-18T02:24:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-04-18T19:37:54.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-18T19:55:36.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Erik Dubbelboer ", + "authorEmail": "erik@dubbelboer.com", + "date": "2012-04-18T13:56:14.000Z", + "fileChanged": "1", + "insertions": "46", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Erik Dubbelboer ", + "authorEmail": "erik@dubbelboer.com", + "date": "2012-04-18T13:56:14.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-18T19:41:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Erik Dubbelboer ", + "authorEmail": "erik@dubbelboer.com", + "date": "2012-04-18T13:56:14.000Z", + "fileChanged": "4", + "insertions": "61", + "deletions": "18", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-18T19:25:32.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-18T19:24:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dane Springmeyer ", + "authorEmail": "dane@dbsgeo.com", + "date": "2012-04-18T17:32:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-18T18:57:54.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-18T18:17:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-18T18:17:15.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-18T00:17:44.000Z", + "fileChanged": "3", + "insertions": "48", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-18T02:24:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-18T01:16:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-18T01:16:27.000Z", + "fileChanged": "8", + "insertions": "89", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-18T00:14:25.000Z", + "fileChanged": "225", + "insertions": "952", + "deletions": "648", + "type": "Commit" + }, + { + "authorName": "Josh W ", + "authorEmail": "josher19@users.sf.net", + "date": "2012-04-16T19:03:30.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Josh W ", + "authorEmail": "josher19@users.sf.net", + "date": "2012-04-10T05:59:13.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-17T22:52:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-17T22:45:48.000Z", + "fileChanged": "4", + "insertions": "26", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-17T22:30:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2012-04-17T20:50:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-17T20:36:29.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-12T15:16:30.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-10T21:59:21.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-13T23:27:23.000Z", + "fileChanged": "3", + "insertions": "67", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-06T23:26:18.000Z", + "fileChanged": "11", + "insertions": "879", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-12T23:03:47.000Z", + "fileChanged": "15", + "insertions": "93", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-12T05:29:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-12T05:29:18.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-12T05:28:44.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-08T07:48:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-17T04:27:12.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-13T23:34:48.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-13T23:33:09.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-07T02:23:16.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-17T18:49:31.000Z", + "fileChanged": "2", + "insertions": "87", + "deletions": "87", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-17T18:44:54.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-17T18:35:11.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-17T18:34:37.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-17T18:31:07.000Z", + "fileChanged": "2", + "insertions": "104", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-17T18:17:54.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-04-17T05:15:51.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-04-16T21:52:44.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "domenic ", + "authorEmail": "domenic@domenicdenicola.com", + "date": "2012-04-09T05:46:55.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "ssuda ", + "authorEmail": "sambasivarao@gmail.com", + "date": "2012-04-08T15:24:53.000Z", + "fileChanged": "3", + "insertions": "71", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Zachary Scott ", + "authorEmail": "zachary@zacharyscott.net", + "date": "2012-04-16T20:43:02.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Zachary Scott ", + "authorEmail": "zachary@zacharyscott.net", + "date": "2012-04-08T16:07:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Zachary Scott ", + "authorEmail": "zachary@zacharyscott.net", + "date": "2012-04-07T15:10:22.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "fukayatsu ", + "authorEmail": "fukayatsu@gmail.com", + "date": "2012-04-16T18:37:32.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-04-13T07:45:38.000Z", + "fileChanged": "4", + "insertions": "76", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-16T15:57:41.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "ssuda ", + "authorEmail": "sambasivarao@gmail.com", + "date": "2012-04-13T23:35:28.000Z", + "fileChanged": "2", + "insertions": "89", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "lrn@chromium.org ", + "authorEmail": "lrn@chromium.org", + "date": "2011-10-03T10:31:01.000Z", + "fileChanged": "3", + "insertions": "39", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2012-02-08T00:50:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-02T23:37:59.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-16T15:27:16.000Z", + "fileChanged": "5", + "insertions": "36", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Kyle Robinson Young ", + "authorEmail": "kyle@dontkry.com", + "date": "2012-04-16T05:24:25.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-31T21:23:46.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-04-15T09:09:37.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-14T21:51:03.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Mustansir Golawala ", + "authorEmail": "mgolawala@gmail.com", + "date": "2012-04-12T08:29:15.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-14T21:12:36.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-13T23:53:51.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-13T12:46:35.000Z", + "fileChanged": "1", + "deletions": "17", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Zachary Scott ", + "authorEmail": "zachary@zacharyscott.net", + "date": "2012-04-13T00:24:35.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Aaron Jacobs ", + "authorEmail": "jacobsa@google.com", + "date": "2012-03-15T02:26:35.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-12T17:13:04.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-03-13T16:22:47.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-12T01:26:52.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-11T16:20:54.000Z", + "fileChanged": "3", + "insertions": "100", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-10T23:05:10.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "193", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-10T22:47:52.000Z", + "fileChanged": "2", + "insertions": "266", + "deletions": "244", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-10T21:41:34.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-10T14:04:49.000Z", + "fileChanged": "3", + "insertions": "544", + "deletions": "277", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-10T14:08:50.000Z", + "fileChanged": "3", + "insertions": "561", + "deletions": "277", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-10T13:57:21.000Z", + "fileChanged": "1552", + "insertions": "176509", + "deletions": "60760", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-10T18:01:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-11T22:59:38.000Z", + "fileChanged": "41", + "insertions": "795", + "deletions": "1250", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-11T20:02:12.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-11T18:16:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-11T18:16:11.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-11T01:29:25.000Z", + "fileChanged": "4", + "insertions": "94", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-11T01:22:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-11T01:29:25.000Z", + "fileChanged": "4", + "insertions": "94", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-11T01:22:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-10T21:39:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-10T21:36:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-10T21:26:28.000Z", + "fileChanged": "41", + "insertions": "1250", + "deletions": "795", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-09T17:34:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-09T17:34:32.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-07T23:59:54.000Z", + "fileChanged": "3", + "insertions": "26", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-09T15:39:13.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-09T15:39:13.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-09T05:31:28.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-07T23:53:18.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-29T23:01:27.000Z", + "fileChanged": "3", + "insertions": "36", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-07T23:29:37.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-07T23:20:42.000Z", + "fileChanged": "1", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-04T16:06:33.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-04T16:06:00.000Z", + "fileChanged": "2", + "insertions": "342", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-04-02T22:14:52.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-04-02T22:12:23.000Z", + "fileChanged": "1", + "insertions": "515", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-04-02T21:36:23.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-06T21:33:58.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-06T20:50:34.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-06T20:49:27.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-06T19:54:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-06T19:20:01.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Nathan Friedly ", + "authorEmail": "nathan@nfriedly.com", + "date": "2012-04-06T18:41:59.000Z", + "fileChanged": "2", + "insertions": "121", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-06T21:42:19.000Z", + "fileChanged": "259", + "insertions": "2026", + "deletions": "2774", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-06T21:16:09.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-04-06T01:15:10.000Z", + "fileChanged": "2", + "insertions": "58", + "deletions": "58", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-06T01:02:23.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-06T00:54:33.000Z", + "fileChanged": "2", + "insertions": "55", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-04-06T00:10:39.000Z", + "fileChanged": "13", + "insertions": "292", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Zachary Scott ", + "authorEmail": "zachary@zacharyscott.net", + "date": "2012-04-02T02:55:09.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-04-05T23:30:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-04-05T23:03:11.000Z", + "fileChanged": "2", + "insertions": "70", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-04T16:06:33.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-04T16:06:00.000Z", + "fileChanged": "2", + "insertions": "342", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-04-03T01:07:31.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-04-02T22:14:52.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-04-02T22:12:23.000Z", + "fileChanged": "1", + "insertions": "515", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-02T21:53:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-04-02T21:44:36.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-04-02T21:36:23.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-04-01T04:01:55.000Z", + "fileChanged": "3", + "insertions": "157", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2012-03-28T17:26:10.000Z", + "fileChanged": "7", + "insertions": "283", + "deletions": "95", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-31T23:50:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-14T01:31:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-31T23:15:17.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-31T21:23:46.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-31T20:27:42.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-31T01:21:50.000Z", + "fileChanged": "4", + "insertions": "1", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-31T00:36:58.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-30T20:54:13.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-30T19:24:46.000Z", + "fileChanged": "6", + "insertions": "32", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-03-30T19:50:15.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-30T14:00:39.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-30T13:54:06.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-29T01:04:35.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "82", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-28T00:21:56.000Z", + "fileChanged": "3", + "insertions": "178", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-27T13:42:51.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-26T14:05:13.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-26T14:04:06.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-26T14:02:00.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-26T13:57:28.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-26T13:55:08.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-26T12:55:30.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-26T12:45:23.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "61", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-30T18:54:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-30T18:54:08.000Z" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-03-30T17:25:07.000Z", + "fileChanged": "44", + "insertions": "902", + "deletions": "442", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-27T23:56:17.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-30T12:42:23.000Z", + "fileChanged": "1", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-30T12:41:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-30T12:32:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-30T12:49:40.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-30T12:52:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-29T23:03:17.000Z", + "fileChanged": "3", + "insertions": "51", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-30T03:17:25.000Z", + "fileChanged": "98", + "insertions": "100", + "deletions": "100", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-29T23:01:27.000Z", + "fileChanged": "3", + "insertions": "37", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-29T17:05:14.000Z", + "fileChanged": "2", + "insertions": "38", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-29T20:15:24.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-29T15:41:04.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-29T15:25:36.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "Yosef Dinerstein ", + "authorEmail": "yosefd@microsoft.com", + "date": "2012-03-28T09:20:37.000Z", + "fileChanged": "2", + "insertions": "78", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-29T15:12:23.000Z", + "fileChanged": "2", + "insertions": "70", + "deletions": "70", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-29T14:34:19.000Z", + "fileChanged": "1", + "deletions": "108", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "ssuda ", + "authorEmail": "sambasivarao@gmail.com", + "date": "2012-03-21T15:35:47.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-03-28T08:13:26.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-03-28T08:06:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-03-28T04:12:07.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-29T02:54:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-29T02:51:38.000Z", + "fileChanged": "199", + "insertions": "6023", + "deletions": "2240", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-29T02:40:54.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-29T02:36:44.000Z", + "fileChanged": "171", + "insertions": "2184", + "deletions": "3080", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-28T23:27:57.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Erik Lundin ", + "authorEmail": "mjor.himself@gmail.com", + "date": "2012-03-21T11:33:49.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-28T23:31:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Mikael Bourges-Sevenier ", + "authorEmail": "mikeseven@gmail.com", + "date": "2012-03-28T04:38:52.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-28T04:40:03.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "mstarzinger@chromium.org ", + "authorEmail": "mstarzinger@chromium.org", + "date": "2012-03-12T12:17:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-28T01:00:59.000Z", + "fileChanged": "5", + "insertions": "22", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-28T00:49:10.000Z", + "fileChanged": "1", + "insertions": "66", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-28T00:39:14.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-28T00:35:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-28T00:34:55.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-27T19:41:42.000Z", + "fileChanged": "5", + "insertions": "96", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-03-27T18:40:45.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-03-27T18:37:54.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-27T02:05:32.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-26T22:21:25.000Z", + "fileChanged": "8", + "insertions": "657", + "deletions": "429", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2012-03-23T18:24:06.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-03-25T05:28:39.000Z", + "fileChanged": "1", + "insertions": "86", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Zachary Scott ", + "authorEmail": "zachary@zacharyscott.net", + "date": "2012-03-24T21:32:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-03-24T16:25:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-24T08:39:39.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-23T18:17:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-23T18:16:31.000Z" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-03-23T09:21:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-03-23T06:16:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-03-23T06:10:48.000Z", + "fileChanged": "1", + "insertions": "53", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-03-23T04:04:10.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-23T00:32:11.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-16T15:19:18.000Z", + "fileChanged": "5", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-16T15:13:41.000Z", + "fileChanged": "6", + "insertions": "16", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-03-20T07:21:38.000Z", + "fileChanged": "2", + "insertions": "52", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "ssuda ", + "authorEmail": "sambasivarao@gmail.com", + "date": "2012-03-21T16:47:16.000Z", + "fileChanged": "12", + "insertions": "62", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-22T23:44:04.000Z", + "fileChanged": "5", + "insertions": "21", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-22T23:43:28.000Z", + "fileChanged": "5", + "deletions": "285", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-22T23:38:58.000Z", + "fileChanged": "126", + "insertions": "506", + "deletions": "279", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-03-22T02:50:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bryan Cantrill ", + "authorEmail": "bryan@joyent.com", + "date": "2012-03-22T23:06:35.000Z", + "fileChanged": "2", + "insertions": "45", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Lal Jérémy ", + "authorEmail": "kapouer@melix.org", + "date": "2012-03-22T18:41:46.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-22T14:52:12.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-21T07:05:25.000Z", + "fileChanged": "3", + "insertions": "56", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-21T02:48:07.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-21T02:46:36.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-21T02:42:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Erik Lundin ", + "authorEmail": "mjor.himself@gmail.com", + "date": "2012-03-20T17:07:08.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Erik Lundin ", + "authorEmail": "mjor.himself@gmail.com", + "date": "2012-03-20T16:21:32.000Z", + "fileChanged": "1", + "insertions": "91", + "deletions": "73", + "type": "Commit" + }, + { + "authorName": "Johannes Wüller ", + "authorEmail": "johanneswueller@gmail.com", + "date": "2012-03-21T00:14:44.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2012-03-20T22:14:40.000Z", + "fileChanged": "3", + "insertions": "100", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-20T22:04:18.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "78", + "type": "Commit" + }, + { + "authorName": "ssuda ", + "authorEmail": "sambasivarao@gmail.com", + "date": "2012-03-20T15:39:49.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Alex Kocharin ", + "authorEmail": "alex@kocharin.ru", + "date": "2012-03-20T01:44:22.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-12-18T14:55:40.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2011-12-02T01:17:19.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-19T20:34:12.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-03-11T13:19:02.000Z", + "fileChanged": "2", + "insertions": "111", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-03-10T15:30:06.000Z", + "fileChanged": "4", + "insertions": "426", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-01-31T18:51:01.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-19T16:59:51.000Z", + "fileChanged": "100", + "insertions": "109", + "deletions": "102", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-03-18T10:54:07.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-03-19T16:08:25.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-03-18T10:20:41.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-19T16:12:49.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Your Name ", + "authorEmail": "FaridN_SOAD@yahoo.com", + "date": "2012-03-18T09:44:52.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-17T19:57:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-17T18:07:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-17T18:00:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-17T18:07:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-17T18:00:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-03-17T15:50:47.000Z", + "fileChanged": "1", + "insertions": "46", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-17T14:50:43.000Z", + "fileChanged": "3", + "insertions": "58", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Alex Xu ", + "authorEmail": "alex_y_xu@yahoo.ca", + "date": "2012-03-16T23:01:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-16T15:19:18.000Z", + "fileChanged": "5", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-16T15:13:41.000Z", + "fileChanged": "6", + "insertions": "16", + "deletions": "13", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-16T15:06:54.000Z" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-03-15T14:44:00.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2012-03-16T02:43:00.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2012-03-16T02:43:00.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-16T00:09:47.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-14T04:04:24.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-16T00:15:18.000Z", + "fileChanged": "3", + "insertions": "87", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-14T15:34:44.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-14T01:31:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Charlie McConnell ", + "authorEmail": "charlie@charlieistheman.com", + "date": "2012-03-13T23:04:00.000Z", + "fileChanged": "4", + "insertions": "27", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-15T23:58:13.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-15T23:25:41.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-15T23:18:50.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-15T23:15:41.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-15T22:17:25.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-15T22:10:32.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-15T21:53:17.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-11T22:30:24.000Z", + "fileChanged": "2", + "insertions": "103", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-03-05T18:41:09.000Z", + "fileChanged": "1", + "insertions": "46", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-03-05T18:28:34.000Z", + "fileChanged": "1", + "insertions": "40", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2012-03-05T17:53:15.000Z", + "fileChanged": "3", + "insertions": "56", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Matt Ezell ", + "authorEmail": "ezell.matt@gmail.com", + "date": "2012-03-07T18:37:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-15T17:33:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-15T17:32:58.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-15T00:07:24.000Z", + "fileChanged": "7", + "insertions": "39", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-15T15:22:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-15T15:14:22.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-14T23:39:15.000Z", + "fileChanged": "228", + "insertions": "27565", + "deletions": "344", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-14T23:30:35.000Z", + "fileChanged": "21", + "insertions": "447", + "deletions": "148", + "type": "Commit" + }, + { + "authorName": "Artur Adib ", + "authorEmail": "arturadib@gmail.com", + "date": "2012-03-09T14:35:39.000Z", + "fileChanged": "3", + "insertions": "2", + "deletions": "556", + "type": "Commit" + }, + { + "authorName": "Rod Vagg ", + "authorEmail": "rod@vagg.org", + "date": "2012-03-14T03:53:27.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-03-14T02:21:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-13T23:04:17.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-13T21:03:51.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-13T21:03:07.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-13T16:12:53.000Z", + "fileChanged": "7", + "insertions": "68", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-13T17:00:25.000Z", + "fileChanged": "141", + "insertions": "122", + "deletions": "100", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-13T18:50:28.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-13T18:53:49.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-13T01:05:16.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-13T00:58:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-13T00:29:21.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-13T00:28:31.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-13T00:25:51.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-13T00:24:39.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-13T16:45:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2012-03-07T01:02:25.000Z", + "fileChanged": "1", + "insertions": "31", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Artur Adib ", + "authorEmail": "arturadib@gmail.com", + "date": "2012-03-09T14:35:39.000Z", + "fileChanged": "3", + "insertions": "2", + "deletions": "556", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-13T16:16:39.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Christian Ress ", + "authorEmail": "christian@ressonline.de", + "date": "2012-01-30T02:33:08.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-13T04:50:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-13T04:46:36.000Z", + "fileChanged": "194", + "insertions": "11152", + "deletions": "4857", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-13T04:10:40.000Z", + "fileChanged": "234", + "insertions": "27247", + "deletions": "307", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-08T18:56:59.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-12T22:13:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Łukasz Walukiewicz ", + "authorEmail": "lukasz@walukiewicz.eu", + "date": "2012-03-12T18:59:43.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-12T17:18:29.000Z", + "fileChanged": "2", + "insertions": "66", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Yoshihiro Kikuchi ", + "authorEmail": "yknetg@gmail.com", + "date": "2012-03-12T08:27:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nao Iizuka ", + "authorEmail": "iizuka@kyu-mu.net", + "date": "2012-03-11T00:48:08.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-12T01:23:34.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "78", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-12T00:57:15.000Z", + "fileChanged": "5", + "insertions": "120", + "deletions": "106", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-12T00:37:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "ssuda ", + "authorEmail": "sambasivarao@gmail.com", + "date": "2012-03-03T09:46:45.000Z", + "fileChanged": "3", + "insertions": "88", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-08T20:25:40.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-09T23:11:11.000Z", + "fileChanged": "43", + "insertions": "129", + "deletions": "129", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-09T14:35:50.000Z", + "fileChanged": "4", + "insertions": "46", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-09T14:01:40.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-09T17:20:36.000Z", + "fileChanged": "4", + "insertions": "93", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-09T17:20:29.000Z", + "fileChanged": "31", + "insertions": "808", + "deletions": "181", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-03-08T19:39:39.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-03-08T02:14:48.000Z" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-03-07T23:13:44.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-03-08T01:57:37.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-03-07T08:40:42.000Z", + "fileChanged": "2", + "insertions": "87", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Yoshihiro Kikuchi ", + "authorEmail": "yknetg@gmail.com", + "date": "2012-03-07T06:58:21.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Shea Levy ", + "authorEmail": "shea@shealevy.com", + "date": "2012-02-13T00:50:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Colton Baker ", + "authorEmail": "github@netrefuge.net", + "date": "2012-03-06T06:22:51.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-03-07T03:51:55.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-07T03:31:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-07T02:19:11.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-07T02:18:53.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-07T02:18:35.000Z", + "fileChanged": "1", + "insertions": "81", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "ssuda ", + "authorEmail": "sambasivarao@gmail.com", + "date": "2012-03-05T14:32:20.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ming Liu ", + "authorEmail": "vmliu1@gmail.com", + "date": "2012-03-06T19:19:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-05T16:51:58.000Z", + "fileChanged": "3", + "insertions": "92", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-06T17:11:50.000Z", + "fileChanged": "1", + "insertions": "109", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rlidwka ", + "authorEmail": "rlidwka@kocharin.ru", + "date": "2012-03-05T15:55:08.000Z", + "fileChanged": "1", + "insertions": "78", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Dmitry Nizovtsev ", + "authorEmail": "dmitry@ukrteam.com", + "date": "2012-02-23T15:37:49.000Z", + "fileChanged": "8", + "insertions": "186", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-03-06T00:50:21.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-02-26T12:26:09.000Z", + "fileChanged": "3", + "insertions": "71", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-05T20:21:16.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-03-05T20:38:31.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-03-05T21:20:13.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-05T18:59:14.000Z", + "fileChanged": "5", + "insertions": "86", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-05T18:28:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-05T16:01:59.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-05T15:55:24.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Sadique Ali ", + "authorEmail": "sadiqalikm@gmail.com", + "date": "2012-02-27T22:56:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-05T15:41:51.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-05T14:38:43.000Z", + "fileChanged": "10", + "insertions": "110", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-04T07:48:57.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-04T07:38:52.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-04T06:58:47.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-04T06:58:29.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-04T06:12:35.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-04T01:14:06.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-04T01:08:46.000Z", + "fileChanged": "5", + "insertions": "14", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-04T00:23:31.000Z", + "fileChanged": "1", + "insertions": "36", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-04T00:23:15.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-03T23:51:14.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-03T23:50:33.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-02T23:14:03.000Z", + "fileChanged": "26", + "insertions": "52", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-03T22:39:17.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-03-03T22:35:21.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "ssuda ", + "authorEmail": "sambasivarao@gmail.com", + "date": "2012-03-02T16:21:26.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-03-03T03:18:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-03-03T03:18:24.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Jimb Esser ", + "authorEmail": "jimb@railgun3d.com", + "date": "2012-02-29T01:14:40.000Z", + "fileChanged": "2", + "insertions": "92", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-02T21:08:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-02T21:09:00.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-02T18:29:03.000Z", + "fileChanged": "6", + "insertions": "54", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-02T20:35:58.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2012-02-08T00:50:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-02T23:37:59.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-02T19:23:12.000Z", + "fileChanged": "10", + "insertions": "75", + "deletions": "85", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-02T17:48:25.000Z", + "fileChanged": "100", + "insertions": "105", + "deletions": "103", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-02T17:31:24.000Z", + "fileChanged": "220", + "insertions": "1183", + "deletions": "375", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2012-03-01T17:19:51.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-02T01:14:27.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-23T04:19:12.000Z", + "fileChanged": "1", + "insertions": "46", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-02T15:24:34.000Z", + "fileChanged": "1", + "deletions": "26", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-03-01T22:40:04.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-03-01T22:12:19.000Z", + "fileChanged": "4", + "insertions": "36", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-03-01T21:49:23.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-03-01T16:00:33.000Z", + "fileChanged": "4", + "insertions": "44", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Vincent Ollivier ", + "authorEmail": "contact@vincentollivier.com", + "date": "2012-02-28T19:19:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-03-01T00:05:18.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:44:36.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:44:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:37:26.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:18:10.000Z", + "fileChanged": "8", + "insertions": "191", + "deletions": "189", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:12:35.000Z", + "fileChanged": "7", + "insertions": "652", + "deletions": "653", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:35.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:35.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:35.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:35.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:35.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:35.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "51", + "deletions": "71", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "93", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:33.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:33.000Z", + "fileChanged": "1", + "insertions": "57", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:33.000Z", + "fileChanged": "1", + "insertions": "89", + "deletions": "86", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:33.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:08:41.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:08:27.000Z", + "fileChanged": "1", + "insertions": "53", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:08:17.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:08:02.000Z", + "fileChanged": "1", + "insertions": "56", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:07:49.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:07:25.000Z", + "fileChanged": "1", + "insertions": "177", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:07:12.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:06:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:06:31.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:06:14.000Z", + "fileChanged": "3", + "insertions": "61", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:04:08.000Z", + "fileChanged": "5", + "insertions": "381", + "deletions": "280", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:02:07.000Z", + "fileChanged": "3", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:01:53.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:01:33.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T18:59:51.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T18:59:35.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "1602", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-13T22:47:50.000Z", + "fileChanged": "90", + "insertions": "616", + "deletions": "635", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T18:59:01.000Z", + "fileChanged": "15", + "insertions": "1892", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-29T15:16:13.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-29T13:26:04.000Z", + "fileChanged": "1", + "deletions": "8", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Blake Miner ", + "authorEmail": "miner.blake@gmail.com", + "date": "2012-02-10T05:58:58.000Z", + "fileChanged": "3", + "insertions": "28", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Joshua Holbrook ", + "authorEmail": "josh.holbrook@gmail.com", + "date": "2012-02-26T19:38:36.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Joshua Holbrook ", + "authorEmail": "josh.holbrook@gmail.com", + "date": "2012-02-26T19:38:36.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-28T17:11:48.000Z", + "fileChanged": "24", + "insertions": "1007", + "deletions": "740", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-02-28T16:09:24.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-02-26T19:13:08.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-02-26T19:13:08.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-28T01:19:12.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-28T00:41:30.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T23:53:20.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "AJ ONeal ", + "authorEmail": "coolaj86@gmail.com", + "date": "2012-02-18T01:53:57.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "AJ ONeal ", + "authorEmail": "coolaj86@gmail.com", + "date": "2012-02-18T01:53:57.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-02-27T21:54:30.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2012-02-24T15:05:10.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2012-02-24T15:05:10.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T21:55:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-06T23:22:52.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T21:43:31.000Z", + "fileChanged": "81", + "insertions": "6248", + "deletions": "824", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-02-27T21:16:06.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T21:08:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-06T23:22:52.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-24T00:35:46.000Z", + "fileChanged": "179", + "insertions": "7422", + "deletions": "2793", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-02-27T11:32:13.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "7", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T20:00:27.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:44:36.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:44:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:37:26.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:18:10.000Z", + "fileChanged": "8", + "insertions": "191", + "deletions": "189", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:12:35.000Z", + "fileChanged": "7", + "insertions": "652", + "deletions": "652", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:35.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:35.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:35.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:35.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:35.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:35.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "56", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "93", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:34.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:33.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:33.000Z", + "fileChanged": "1", + "insertions": "54", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:33.000Z", + "fileChanged": "1", + "insertions": "93", + "deletions": "90", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:09:33.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:08:41.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:08:27.000Z", + "fileChanged": "1", + "insertions": "53", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:08:17.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:08:02.000Z", + "fileChanged": "1", + "insertions": "57", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:07:49.000Z", + "fileChanged": "1", + "insertions": "120", + "deletions": "54", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:07:25.000Z", + "fileChanged": "1", + "insertions": "177", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:07:12.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:06:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:06:31.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:06:14.000Z", + "fileChanged": "3", + "insertions": "61", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:04:08.000Z", + "fileChanged": "5", + "insertions": "403", + "deletions": "302", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:02:07.000Z", + "fileChanged": "3", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:01:53.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T19:01:33.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T18:59:51.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T18:59:35.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "1602", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-27T18:59:01.000Z", + "fileChanged": "15", + "insertions": "1892", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "tedsuo ", + "authorEmail": "ted@radicaldesigns.org", + "date": "2011-12-15T00:44:59.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-27T02:57:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-02-25T19:18:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-02-26T21:23:42.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "T.C. Hollingsworth ", + "authorEmail": "tchollingsworth@gmail.com", + "date": "2012-02-26T23:02:21.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-02-26T02:51:30.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "T.C. Hollingsworth ", + "authorEmail": "tchollingsworth@gmail.com", + "date": "2012-02-24T16:37:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-02-25T14:17:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-02-25T14:07:30.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Roly Fentanes ", + "authorEmail": "roly426@gmail.com", + "date": "2012-02-24T21:28:46.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-25T02:52:17.000Z", + "fileChanged": "133", + "insertions": "1862", + "deletions": "509", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-25T02:51:22.000Z", + "fileChanged": "133", + "insertions": "1862", + "deletions": "509", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-02-24T02:18:32.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-02-24T02:07:26.000Z", + "fileChanged": "1", + "insertions": "43", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-02-23T22:32:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-23T22:52:18.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-23T22:41:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-23T22:39:58.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-23T00:48:25.000Z", + "fileChanged": "7", + "insertions": "53", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-23T22:11:28.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-02-23T12:25:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-02-23T11:57:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-01-18T10:18:13.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-01-18T09:37:02.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-23T12:11:07.000Z", + "fileChanged": "3", + "insertions": "1", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-23T08:18:17.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-23T01:04:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-23T00:09:42.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-23T04:57:01.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-23T04:19:12.000Z", + "fileChanged": "1", + "insertions": "46", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-23T00:52:45.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-23T00:51:27.000Z", + "fileChanged": "3", + "insertions": "60", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Colton Baker ", + "authorEmail": "github@netrefuge.net", + "date": "2012-02-17T13:53:24.000Z", + "fileChanged": "3", + "insertions": "10", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Colton Baker ", + "authorEmail": "github@netrefuge.net", + "date": "2012-02-17T13:52:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-22T19:48:43.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-02-22T22:03:22.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Cam Pedersen ", + "authorEmail": "diffference@gmail.com", + "date": "2012-02-21T22:32:19.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-02-22T20:04:39.000Z", + "fileChanged": "3", + "insertions": "61", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "T.C. Hollingsworth ", + "authorEmail": "tchollingsworth@gmail.com", + "date": "2012-02-22T11:57:32.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Myles Byrne ", + "authorEmail": "myles@myles.id.au", + "date": "2012-02-19T21:27:09.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-21T23:26:35.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-21T23:26:35.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2012-02-21T19:08:13.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-21T20:03:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-21T20:03:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-21T20:02:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-02-21T14:42:15.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-02-21T14:42:15.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-21T12:57:38.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-02-18T17:26:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Tomasz Buchert ", + "authorEmail": "tomek.buchert@gmail.com", + "date": "2012-01-22T18:24:37.000Z", + "fileChanged": "5", + "insertions": "544", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-02-20T20:27:07.000Z", + "fileChanged": "1", + "insertions": "31", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-02-20T19:32:10.000Z", + "fileChanged": "3", + "insertions": "22", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-02-20T17:59:56.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-02-20T18:55:37.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-20T16:24:13.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-17T17:08:48.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-02-20T16:03:14.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-17T22:45:50.000Z", + "fileChanged": "3", + "insertions": "75", + "deletions": "68", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-20T15:12:33.000Z", + "fileChanged": "7", + "insertions": "1782", + "deletions": "602", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-02-19T20:16:50.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-02-18T15:45:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-02-18T15:32:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brandon Benvie ", + "authorEmail": "brandon@bbenvie.com", + "date": "2011-12-25T04:39:57.000Z", + "fileChanged": "2", + "insertions": "91", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Luke Gallagher ", + "authorEmail": "notfornoone@gmail.com", + "date": "2012-02-18T05:28:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-20T12:24:21.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-20T12:22:12.000Z", + "fileChanged": "36", + "insertions": "39", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-02-18T20:06:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-02-18T20:03:47.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-02-18T20:02:53.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-20T10:47:03.000Z", + "fileChanged": "130", + "insertions": "3936", + "deletions": "1529", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-02-18T09:13:17.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2012-02-16T19:52:47.000Z", + "fileChanged": "4", + "insertions": "11", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-19T00:04:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-18T23:01:35.000Z", + "fileChanged": "61", + "insertions": "750", + "deletions": "543", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-18T21:36:34.000Z", + "fileChanged": "1", + "insertions": "103", + "deletions": "44", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-18T17:46:58.000Z" + }, + { + "authorName": "Paul Vorbach ", + "authorEmail": "paul@vorb.de", + "date": "2012-02-18T00:40:26.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-02-17T20:41:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2012-02-08T01:21:51.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-17T22:58:42.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "30", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-17T21:35:52.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-17T21:33:58.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-17T00:04:34.000Z", + "fileChanged": "8", + "insertions": "62", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-17T18:10:02.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "210", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-17T18:08:40.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-02-17T18:35:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-02-17T18:18:11.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Shannen Saez ", + "authorEmail": "shannenlaptop@gmail.com", + "date": "2012-02-16T06:47:23.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Shannen Saez ", + "authorEmail": "shannenlaptop@gmail.com", + "date": "2012-02-16T06:38:05.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-02-17T00:33:40.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-16T22:52:03.000Z", + "fileChanged": "5", + "insertions": "53", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-10T19:26:56.000Z", + "fileChanged": "4", + "insertions": "210", + "deletions": "83", + "type": "Commit" + }, + { + "authorName": "einaros ", + "authorEmail": "einaros@gmail.com", + "date": "2012-02-16T09:42:13.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-14T23:20:54.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-02-16T21:19:48.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-02-16T19:20:07.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-02-16T19:05:18.000Z", + "fileChanged": "1", + "deletions": "28", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-15T18:26:43.000Z", + "fileChanged": "5", + "insertions": "191", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-02-16T17:02:02.000Z", + "fileChanged": "1", + "deletions": "11", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Colton Baker ", + "authorEmail": "github@netrefuge.net", + "date": "2012-02-15T14:08:26.000Z", + "fileChanged": "3", + "insertions": "128", + "deletions": "67", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-02-16T03:21:16.000Z", + "fileChanged": "1", + "deletions": "33", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-02-15T22:50:04.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "76", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-02-15T22:34:18.000Z", + "fileChanged": "1", + "insertions": "94", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-02-15T19:50:51.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Mark Nottingham ", + "authorEmail": "mnot@mnot.net", + "date": "2012-02-14T20:38:24.000Z", + "fileChanged": "5", + "insertions": "69", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-15T19:37:48.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-15T19:37:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-14T23:20:54.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-15T15:45:02.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-14T22:31:00.000Z", + "fileChanged": "9", + "insertions": "44", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-14T22:34:37.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-02-14T08:03:13.000Z", + "fileChanged": "1", + "insertions": "156", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-09T01:28:49.000Z", + "fileChanged": "3", + "insertions": "68", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Seth Fitzsimmons ", + "authorEmail": "seth@mojodna.net", + "date": "2012-02-14T03:30:09.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-13T23:06:55.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-11T08:16:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-13T22:47:50.000Z", + "fileChanged": "90", + "insertions": "616", + "deletions": "635", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-02-13T20:36:08.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-02-13T19:55:29.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-13T19:10:12.000Z", + "fileChanged": "4", + "insertions": "48", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-13T18:11:28.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-13T18:04:53.000Z", + "fileChanged": "112", + "insertions": "3880", + "deletions": "2281", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2012-02-13T13:28:43.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-02-12T20:07:31.000Z", + "fileChanged": "1", + "insertions": "89", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-02-12T20:04:03.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-02-12T15:53:43.000Z", + "fileChanged": "4", + "insertions": "46", + "deletions": "6", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-12T15:12:26.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-12T15:12:04.000Z", + "fileChanged": "22", + "insertions": "270", + "deletions": "385", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-02-11T17:05:30.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-11T13:24:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-11T04:55:21.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-11T03:38:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-02-10T09:35:35.000Z", + "fileChanged": "3", + "insertions": "23", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-02-10T19:27:12.000Z", + "fileChanged": "13", + "insertions": "150", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-10T17:51:31.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-09T16:14:39.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-02-09T03:47:31.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-09T05:22:50.000Z", + "fileChanged": "1", + "insertions": "77", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-08T20:36:20.000Z", + "fileChanged": "206", + "insertions": "474", + "deletions": "421", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-02-07T20:10:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2012-02-08T00:50:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-08T17:59:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Marcel Laverdet ", + "authorEmail": "marcel@laverdet.com", + "date": "2012-02-08T00:10:22.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-08T00:44:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-07T23:42:33.000Z", + "fileChanged": "7", + "insertions": "32", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-07T23:41:21.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-07T22:42:38.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-07T22:11:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-02-07T06:53:39.000Z", + "fileChanged": "8", + "insertions": "577", + "deletions": "297", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-07T07:01:17.000Z", + "fileChanged": "1", + "deletions": "16", + "insertions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-06T23:43:21.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-06T23:22:52.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-06T23:21:49.000Z", + "fileChanged": "130", + "insertions": "4435", + "deletions": "1705", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-02-01T16:27:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-02-01T16:23:25.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-02-01T16:16:15.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-01-06T23:48:23.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-02-06T17:24:50.000Z", + "fileChanged": "2", + "insertions": "90", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-06T16:47:09.000Z", + "fileChanged": "1", + "deletions": "61", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-02-06T14:37:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-03T15:32:00.000Z", + "fileChanged": "45", + "insertions": "413", + "deletions": "2257", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-05T22:30:14.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-02-05T10:11:54.000Z", + "fileChanged": "3", + "insertions": "23", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-02-03T11:09:30.000Z", + "fileChanged": "2", + "insertions": "61", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Marcel Laverdet ", + "authorEmail": "marcel@laverdet.com", + "date": "2011-08-10T21:39:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Christopher Jeffrey ", + "authorEmail": "chjjeffrey@gmail.com", + "date": "2012-02-02T06:44:22.000Z", + "fileChanged": "2", + "insertions": "45", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Stefan Rusu ", + "authorEmail": "saltwaterc@gmail.com", + "date": "2012-02-03T16:29:58.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Stefan Rusu ", + "authorEmail": "saltwaterc@gmail.com", + "date": "2012-02-03T16:27:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-02-03T14:37:46.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2012-02-03T01:02:09.000Z", + "fileChanged": "1", + "insertions": "189", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-03T01:19:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-03T00:04:47.000Z", + "fileChanged": "7", + "insertions": "40", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-03T00:56:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-02T23:37:59.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-02T23:35:14.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-02T22:57:12.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-01T21:37:26.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-01T21:07:42.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-02-02T16:42:08.000Z", + "fileChanged": "5", + "insertions": "57", + "deletions": "159", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-02-02T15:57:45.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-02-02T15:56:58.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Philip Tellis ", + "authorEmail": "philip.tellis@gmail.com", + "date": "2011-12-02T18:42:32.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-01T21:25:55.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-02-01T21:25:55.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-01T21:05:04.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-01T02:43:23.000Z", + "fileChanged": "7", + "insertions": "45", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-01T02:35:04.000Z", + "fileChanged": "91", + "insertions": "2226", + "deletions": "1185", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-01T02:22:10.000Z" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-02-01T02:18:00.000Z" + }, + { + "authorName": "Paddy Byers ", + "authorEmail": "paddy.byers@gmail.com", + "date": "2011-11-22T23:49:18.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Paddy Byers ", + "authorEmail": "paddy.byers@gmail.com", + "date": "2011-11-22T23:46:01.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-01-20T00:52:23.000Z", + "fileChanged": "4", + "insertions": "165", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Dan VerWeire ", + "authorEmail": "dverweire@gmail.com", + "date": "2012-01-30T15:04:20.000Z", + "fileChanged": "2", + "insertions": "71", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-01-31T16:14:42.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-01-31T16:41:46.000Z", + "fileChanged": "10", + "insertions": "223", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-01-31T15:46:14.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-19T15:18:37.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-01-31T13:46:23.000Z", + "fileChanged": "1", + "insertions": "105", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-31T00:36:57.000Z", + "fileChanged": "3", + "insertions": "58", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-30T23:54:40.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Łukasz Walukiewicz ", + "authorEmail": "lukasz@walukiewicz.eu", + "date": "2012-01-25T23:12:00.000Z", + "fileChanged": "2", + "insertions": "114", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Tj Holowaychuk ", + "authorEmail": "tj@vision-media.ca", + "date": "2012-01-31T00:41:32.000Z", + "fileChanged": "1", + "insertions": "68", + "deletions": "64", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-01-30T23:57:08.000Z", + "fileChanged": "16", + "insertions": "165", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Roman Shtylman ", + "authorEmail": "shtylman@gmail.com", + "date": "2012-01-30T16:58:08.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-01-30T15:35:05.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-30T15:16:01.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-29T22:30:13.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brandon Benvie ", + "authorEmail": "brandon@bbenvie.com", + "date": "2012-01-30T07:41:40.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Brandon Benvie ", + "authorEmail": "brandon@bbenvie.com", + "date": "2012-01-29T04:13:42.000Z", + "fileChanged": "5", + "insertions": "32", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Brandon Benvie ", + "authorEmail": "brandon@bbenvie.com", + "date": "2012-01-29T04:39:38.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dan VerWeire ", + "authorEmail": "dverweire@gmail.com", + "date": "2012-01-27T23:49:07.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-28T01:07:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-28T00:54:40.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-27T21:33:01.000Z", + "fileChanged": "8", + "insertions": "38", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-28T00:30:46.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-27T23:17:01.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-27T21:42:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-27T21:25:04.000Z", + "fileChanged": "14", + "insertions": "294", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-27T21:16:47.000Z", + "fileChanged": "3", + "insertions": "141", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-27T21:12:07.000Z", + "fileChanged": "3", + "insertions": "52", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-27T14:23:32.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-27T01:14:16.000Z", + "fileChanged": "3", + "insertions": "100", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Dan VerWeire ", + "authorEmail": "dverweire@gmail.com", + "date": "2012-01-25T17:46:45.000Z", + "fileChanged": "2", + "insertions": "73", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-26T20:25:51.000Z", + "fileChanged": "95", + "insertions": "97", + "deletions": "97", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-26T23:53:37.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-26T22:45:16.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-25T17:35:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-24T16:45:34.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-24T16:45:34.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-24T14:49:32.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "11", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-24T08:11:59.000Z" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-24T04:57:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-24T01:27:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-23T23:55:15.000Z", + "fileChanged": "5", + "insertions": "32", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-24T00:16:42.000Z", + "fileChanged": "142", + "insertions": "2237", + "deletions": "3959", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-23T23:44:53.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-23T22:52:08.000Z", + "fileChanged": "3", + "insertions": "27", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-23T22:38:25.000Z", + "fileChanged": "3", + "insertions": "33", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-23T21:39:49.000Z", + "fileChanged": "8", + "insertions": "122", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-23T21:38:22.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-23T21:39:07.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-23T23:04:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-23T20:36:48.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-23T20:28:30.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-23T20:09:56.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-23T21:53:11.000Z", + "fileChanged": "5", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-23T21:50:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-23T10:12:20.000Z", + "fileChanged": "9", + "insertions": "321", + "deletions": "176", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-23T10:07:59.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-23T10:07:15.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-22T22:06:17.000Z", + "fileChanged": "13", + "insertions": "0", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Matthew Fitzsimmons ", + "authorEmail": "matt@joyent.com", + "date": "2012-01-22T04:02:16.000Z", + "fileChanged": "9", + "insertions": "737", + "deletions": "201", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-23T18:30:28.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-23T12:35:36.000Z", + "fileChanged": "22", + "insertions": "188", + "deletions": "161", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-01-23T09:30:56.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-01-23T09:34:05.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-01-22T19:46:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-22T17:19:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-22T14:23:04.000Z", + "fileChanged": "1", + "insertions": "48", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-22T08:35:28.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brandon Benvie ", + "authorEmail": "brandon@brandonbenvie.com", + "date": "2011-11-14T20:42:14.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-22T05:55:41.000Z", + "fileChanged": "2", + "insertions": "72", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-01-21T22:35:25.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-01-21T01:37:57.000Z", + "fileChanged": "7", + "insertions": "79", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-21T13:31:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dan VerWeire ", + "authorEmail": "dverweire@gmail.com", + "date": "2011-11-22T21:04:40.000Z", + "fileChanged": "3", + "insertions": "62", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dan VerWeire ", + "authorEmail": "dverweire@gmail.com", + "date": "2011-10-27T14:48:38.000Z", + "fileChanged": "3", + "insertions": "181", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Roman Shtylman ", + "authorEmail": "shtylman@gmail.com", + "date": "2011-10-12T17:55:15.000Z", + "fileChanged": "3", + "insertions": "217", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-21T02:13:58.000Z", + "fileChanged": "18", + "insertions": "353", + "deletions": "136", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-01-20T02:56:23.000Z", + "fileChanged": "5", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-20T12:54:34.000Z", + "fileChanged": "2", + "insertions": "73", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nicolas LaCasse ", + "authorEmail": "nlacasse@borderstylo.com", + "date": "2012-01-20T14:36:28.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-01-05T19:09:43.000Z", + "fileChanged": "5", + "insertions": "294", + "deletions": "114", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-20T05:15:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-20T15:00:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-20T14:55:38.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2011-11-08T15:27:52.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-20T05:15:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-20T01:23:56.000Z", + "fileChanged": "6", + "insertions": "40", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-20T02:07:12.000Z", + "fileChanged": "27", + "insertions": "586", + "deletions": "834", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-19T23:05:04.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-19T22:46:20.000Z", + "fileChanged": "1", + "insertions": "126", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-19T15:44:59.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Artur Adib ", + "authorEmail": "arturadib@gmail.com", + "date": "2012-01-19T15:18:15.000Z", + "fileChanged": "1", + "insertions": "542", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ingmar Runge ", + "authorEmail": "ingmar@irsoft.de", + "date": "2011-12-02T20:04:13.000Z", + "fileChanged": "3", + "insertions": "188", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Brandon Benvie ", + "authorEmail": "brandon@bbenvie.com", + "date": "2011-12-29T07:39:56.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-01-18T14:09:42.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-18T01:00:43.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-17T23:10:22.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Dan Williams ", + "authorEmail": "dan@igniter.com", + "date": "2012-01-17T04:36:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dan Williams ", + "authorEmail": "dan@igniter.com", + "date": "2012-01-17T04:36:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-17T22:02:15.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-01-17T19:37:11.000Z", + "fileChanged": "1", + "insertions": "61", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-17T19:32:58.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-01-17T19:16:49.000Z", + "fileChanged": "8", + "insertions": "87", + "deletions": "69", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-01-17T18:43:34.000Z", + "fileChanged": "38", + "insertions": "251", + "deletions": "216", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2011-12-27T12:08:41.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-01-17T07:04:50.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-17T16:20:28.000Z", + "fileChanged": "36", + "insertions": "684", + "deletions": "348", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-17T08:34:53.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-17T15:20:37.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-17T07:28:25.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-17T05:48:50.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-17T03:45:39.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-17T01:19:17.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-17T02:52:36.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-17T02:40:12.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-01-17T01:24:53.000Z", + "fileChanged": "7", + "insertions": "63", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-12-16T02:42:03.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-16T23:20:26.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-16T23:15:34.000Z", + "fileChanged": "17", + "insertions": "377", + "deletions": "152", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-16T23:06:16.000Z", + "fileChanged": "142", + "insertions": "1824", + "deletions": "798", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-01-16T22:26:58.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-16T22:37:57.000Z", + "fileChanged": "177", + "insertions": "3329", + "deletions": "1703", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-16T22:06:55.000Z", + "fileChanged": "4", + "insertions": "34", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-16T18:17:45.000Z", + "fileChanged": "4", + "insertions": "48", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-01-16T16:50:18.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-16T14:18:37.000Z", + "fileChanged": "14", + "insertions": "97", + "deletions": "230", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-16T13:33:16.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-01-16T12:54:35.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-16T10:13:43.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-16T10:11:29.000Z", + "fileChanged": "2", + "insertions": "105", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-16T00:41:26.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-15T19:45:31.000Z", + "fileChanged": "5", + "insertions": "49", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-15T15:50:58.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-14T17:51:53.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-14T17:48:56.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-14T01:13:22.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Guillermo Rauch ", + "authorEmail": "rauchg@gmail.com", + "date": "2012-01-12T22:08:08.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "mrb ", + "authorEmail": "michaelrbernstein@gmail.com", + "date": "2012-01-12T04:42:24.000Z", + "fileChanged": "1", + "insertions": "59", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-01-11T22:44:39.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2012-01-11T22:36:27.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-12T13:41:04.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-12T05:16:03.000Z", + "fileChanged": "3", + "insertions": "35", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2012-01-12T03:34:56.000Z", + "fileChanged": "3", + "insertions": "77", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-11T21:12:13.000Z", + "fileChanged": "3", + "insertions": "93", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-11T21:11:31.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "13", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-11T20:17:44.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-11T17:46:10.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2012-01-03T09:14:02.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-01-10T22:29:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-01-11T08:02:51.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-10T20:07:30.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-10T20:13:48.000Z", + "fileChanged": "5", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2012-01-10T22:07:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-10T20:04:16.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-10T19:54:40.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-01-10T19:51:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-10T19:47:32.000Z", + "fileChanged": "5", + "insertions": "79", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-09T23:29:15.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-10T14:56:30.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-10T15:46:06.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-06T18:28:20.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-06T18:27:55.000Z", + "fileChanged": "5", + "insertions": "288", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-06T18:26:53.000Z", + "fileChanged": "2", + "deletions": "29", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2012-01-06T18:24:41.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-10T01:08:42.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-01-04T14:28:13.000Z", + "fileChanged": "1", + "insertions": "61", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-09T20:59:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-09T19:42:11.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-09T19:39:06.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-09T19:20:22.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-09T14:45:51.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryunosuke SATO ", + "authorEmail": "tricknotes.rs@gmail.com", + "date": "2012-01-08T15:53:17.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-09T02:51:06.000Z", + "fileChanged": "3", + "insertions": "223", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-09T01:28:49.000Z", + "fileChanged": "3", + "insertions": "67", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-09T01:18:39.000Z", + "fileChanged": "3", + "insertions": "150", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-08T23:45:19.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-08T20:17:28.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-11-02T00:27:50.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-11-01T15:28:04.000Z", + "fileChanged": "14", + "insertions": "29", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-11-01T15:27:42.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-11-01T15:23:30.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-07T06:51:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-07T05:44:35.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-07T01:36:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-05T23:44:04.000Z", + "fileChanged": "6", + "insertions": "61", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-07T00:30:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-07T00:20:45.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-06T21:03:06.000Z", + "fileChanged": "47", + "insertions": "866", + "deletions": "271", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-06T20:00:36.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-06T18:22:18.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2012-01-06T16:02:01.000Z", + "fileChanged": "23", + "insertions": "446", + "deletions": "162", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-05T11:50:03.000Z", + "fileChanged": "3", + "insertions": "37", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-05T23:42:10.000Z", + "fileChanged": "2", + "insertions": "70", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-05T00:12:48.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "57", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-05T00:02:59.000Z", + "fileChanged": "6", + "insertions": "382", + "deletions": "113", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-03T14:15:54.000Z", + "fileChanged": "9", + "insertions": "216", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Emerson Macedo ", + "authorEmail": "emerleite@gmail.com", + "date": "2011-11-02T18:06:16.000Z", + "fileChanged": "4", + "insertions": "278", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Mikael Bourges-Sevenier ", + "authorEmail": "msevenier@motorola.com", + "date": "2011-12-31T08:30:42.000Z", + "fileChanged": "3", + "insertions": "238", + "deletions": "64", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2012-01-04T23:09:13.000Z", + "fileChanged": "204", + "insertions": "835", + "deletions": "326", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-01-05T12:25:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2012-01-05T12:01:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-05T15:44:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2012-01-05T08:43:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2012-01-05T07:57:54.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2011-12-20T09:42:48.000Z", + "fileChanged": "11", + "insertions": "928", + "deletions": "165", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-04T19:20:50.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-04T15:36:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-30T00:06:14.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-04T01:14:58.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2012-01-03T19:46:53.000Z", + "fileChanged": "18", + "insertions": "301", + "deletions": "60", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-02T11:29:39.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-02T11:02:05.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-02T09:48:33.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-02T09:43:10.000Z", + "fileChanged": "10", + "insertions": "223", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2012-01-01T22:36:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-11-08T00:10:21.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-31T02:16:04.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-30T01:03:08.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-29T21:36:13.000Z", + "fileChanged": "1", + "insertions": "72", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-29T19:57:40.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-29T18:30:07.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-29T13:57:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Damon Oehlman ", + "authorEmail": "damon.oehlman@sidelab.com", + "date": "2011-12-29T02:15:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremy Martin ", + "authorEmail": "jmar777@gmail.com", + "date": "2011-12-28T20:14:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-29T00:56:58.000Z" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-29T00:49:10.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-28T23:40:40.000Z", + "fileChanged": "2", + "insertions": "107", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-28T23:18:23.000Z", + "fileChanged": "5", + "insertions": "150", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-28T22:56:53.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-28T02:11:32.000Z", + "fileChanged": "3", + "insertions": "26", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-27T21:06:25.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-23T22:06:32.000Z", + "fileChanged": "6", + "insertions": "130", + "deletions": "91", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-22T21:40:26.000Z", + "fileChanged": "15", + "insertions": "93", + "deletions": "82", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-22T16:09:00.000Z", + "fileChanged": "9", + "insertions": "182", + "deletions": "186", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-21T21:55:05.000Z", + "fileChanged": "3", + "insertions": "81", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-21T22:02:52.000Z", + "fileChanged": "15", + "insertions": "14", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-19T07:39:49.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-19T06:49:20.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-18T18:56:48.000Z", + "fileChanged": "4", + "insertions": "107", + "deletions": "82", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-17T07:23:34.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-15T22:20:27.000Z", + "fileChanged": "3", + "insertions": "45", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-13T22:48:36.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-13T19:49:32.000Z", + "fileChanged": "3", + "insertions": "29", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-12T14:47:00.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "747", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-09T20:49:10.000Z", + "fileChanged": "1", + "insertions": "103", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-09T20:14:00.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-09T20:12:48.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-09T18:02:33.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-09T17:49:17.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-09T06:44:10.000Z", + "fileChanged": "4", + "insertions": "30", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-23T20:46:22.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-29T16:35:19.000Z", + "fileChanged": "3", + "insertions": "102", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-29T15:41:41.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-23T19:50:28.000Z", + "fileChanged": "4", + "insertions": "793", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-22T16:10:09.000Z", + "fileChanged": "17", + "insertions": "198", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-22T15:07:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-29T00:49:10.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-29T00:42:18.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-28T23:40:40.000Z", + "fileChanged": "2", + "insertions": "107", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-28T23:18:23.000Z", + "fileChanged": "5", + "insertions": "150", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-28T22:56:53.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-28T22:13:50.000Z", + "fileChanged": "28", + "insertions": "270", + "deletions": "87", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-28T22:08:19.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2011-12-28T16:13:28.000Z", + "fileChanged": "1", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-12-28T06:18:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-12-28T06:13:57.000Z", + "fileChanged": "2", + "insertions": "59", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-28T02:11:32.000Z", + "fileChanged": "3", + "insertions": "26", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-27T21:06:25.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-23T22:06:32.000Z", + "fileChanged": "6", + "insertions": "130", + "deletions": "91", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-22T21:40:26.000Z", + "fileChanged": "15", + "insertions": "93", + "deletions": "82", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-22T16:09:00.000Z", + "fileChanged": "9", + "insertions": "182", + "deletions": "186", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-21T21:55:05.000Z", + "fileChanged": "3", + "insertions": "81", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-21T22:02:52.000Z", + "fileChanged": "15", + "insertions": "14", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-19T07:39:49.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-19T06:49:20.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-18T18:56:48.000Z", + "fileChanged": "4", + "insertions": "107", + "deletions": "82", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-17T07:23:34.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-15T22:20:27.000Z", + "fileChanged": "3", + "insertions": "45", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-13T22:48:36.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-13T19:49:32.000Z", + "fileChanged": "3", + "insertions": "29", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-12T14:47:00.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "747", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-09T20:49:10.000Z", + "fileChanged": "1", + "insertions": "103", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-09T20:14:00.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-09T20:12:48.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-09T18:02:33.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-09T17:49:17.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-09T06:44:10.000Z", + "fileChanged": "4", + "insertions": "30", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-23T20:46:22.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-29T16:35:19.000Z", + "fileChanged": "3", + "insertions": "102", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-29T15:41:41.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-23T19:50:28.000Z", + "fileChanged": "4", + "insertions": "793", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-22T16:10:09.000Z", + "fileChanged": "17", + "insertions": "198", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-22T15:07:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-12-27T08:43:58.000Z", + "fileChanged": "13", + "insertions": "177", + "deletions": "146", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-12-27T08:42:37.000Z", + "fileChanged": "2", + "insertions": "73", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-12-27T08:33:23.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-26T22:30:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-12-26T15:14:47.000Z", + "fileChanged": "2", + "insertions": "121", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-11-29T11:55:05.000Z", + "fileChanged": "4", + "insertions": "41", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-26T02:27:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-26T02:23:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-24T01:42:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-23T23:58:11.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-23T23:57:10.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-23T23:10:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-23T22:24:50.000Z", + "fileChanged": "4", + "insertions": "9", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-12-23T02:09:36.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Phil Sung ", + "authorEmail": "psung@dnanexus.com", + "date": "2011-12-22T01:38:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-22T16:28:23.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ju-yeong Park ", + "authorEmail": "interruptz@gmail.com", + "date": "2011-12-22T02:32:27.000Z", + "fileChanged": "2", + "insertions": "45", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Dave Irvine ", + "authorEmail": "davman99@gmail.com", + "date": "2011-12-22T14:39:53.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-22T13:42:20.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Seong-Rak Choi ", + "authorEmail": "ragiragi@hanmail.net", + "date": "2011-12-21T04:25:56.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Shannen ", + "authorEmail": "shannenlaptop@gmail.com", + "date": "2011-12-20T04:57:45.000Z", + "fileChanged": "4", + "insertions": "33", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-21T22:18:56.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-21T20:39:36.000Z", + "fileChanged": "15", + "insertions": "399", + "deletions": "95", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-21T20:38:07.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-21T20:17:23.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-21T20:01:39.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-21T18:54:24.000Z", + "fileChanged": "25", + "insertions": "296", + "deletions": "108", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-12-17T17:09:16.000Z", + "fileChanged": "4", + "insertions": "147", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-21T17:28:34.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-20T19:55:14.000Z", + "fileChanged": "11", + "insertions": "96", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-21T14:01:07.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-21T06:03:32.000Z", + "fileChanged": "5", + "insertions": "72", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-21T06:02:47.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-21T04:26:13.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-12-20T17:15:22.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-20T02:06:19.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "James Hartig ", + "authorEmail": "james.hartig@grooveshark.com", + "date": "2011-12-02T08:27:35.000Z", + "fileChanged": "3", + "insertions": "53", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-19T23:30:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "jbergstroem ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2011-12-18T22:53:07.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "jbergstroem ", + "authorEmail": "bugs@bergstroem.nu", + "date": "2011-12-18T22:48:27.000Z", + "fileChanged": "1", + "deletions": "88", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-12-19T22:28:42.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Pedro Teixeira ", + "authorEmail": "pedro.teixeira@gmail.com", + "date": "2011-02-02T11:09:02.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-19T22:24:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-19T21:55:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-19T21:41:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-12-09T08:41:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-12-19T21:09:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2011-12-19T21:08:52.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-19T21:06:19.000Z", + "fileChanged": "57", + "insertions": "1675", + "deletions": "1116", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2011-12-19T19:48:03.000Z", + "fileChanged": "3", + "insertions": "94", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-12-17T06:02:51.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-12-14T12:33:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-12-14T07:53:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-12-10T16:52:07.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-12-10T16:34:50.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-12-09T09:24:15.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-12-09T08:41:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-12-18T21:33:48.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-12-18T21:31:16.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-12-18T21:22:10.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-19T06:54:15.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-18T23:10:01.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Avi Flax ", + "authorEmail": "avi@aviflax.com", + "date": "2011-12-18T16:29:37.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-18T21:27:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-18T21:28:30.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-12-18T12:35:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Yoshihiro Kikuchi ", + "authorEmail": "yknetg@gmail.com", + "date": "2011-12-18T00:22:22.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-18T00:26:00.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2011-12-17T10:52:40.000Z", + "fileChanged": "3", + "insertions": "82", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-17T11:23:17.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Adam Malcontenti-Wilson ", + "authorEmail": "adman.com@gmail.com", + "date": "2011-12-14T13:53:31.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-12-17T08:09:14.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-17T02:04:39.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-17T01:24:25.000Z", + "fileChanged": "107", + "insertions": "361", + "deletions": "239", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-16T23:00:23.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-16T22:06:29.000Z", + "fileChanged": "16", + "insertions": "1214", + "deletions": "1104", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-16T21:57:36.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-16T21:46:42.000Z", + "fileChanged": "1", + "deletions": "189", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-16T21:35:08.000Z", + "fileChanged": "11", + "insertions": "863", + "deletions": "146", + "type": "Commit" + }, + { + "authorName": "Andreas Madsen ", + "authorEmail": "amwebdk@gmail.com", + "date": "2011-12-09T12:00:40.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2011-12-16T00:51:33.000Z", + "fileChanged": "3", + "insertions": "737", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-12-16T19:01:06.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-16T14:56:41.000Z", + "fileChanged": "22", + "insertions": "427", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-12-16T09:20:27.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Roman Shtylman ", + "authorEmail": "shtylman@gmail.com", + "date": "2011-12-01T05:41:06.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-12-16T02:42:03.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-12-15T20:36:05.000Z", + "fileChanged": "18", + "insertions": "130", + "deletions": "1952", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-15T16:39:11.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-12-16T01:18:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-12-15T23:56:42.000Z", + "fileChanged": "37", + "insertions": "1887", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-15T21:19:36.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-15T20:50:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-15T19:08:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-15T00:59:37.000Z", + "fileChanged": "6", + "insertions": "44", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-15T16:32:07.000Z", + "fileChanged": "115", + "insertions": "399", + "deletions": "98", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-15T02:18:47.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Robert Mustacchi ", + "authorEmail": "rm@joyent.com", + "date": "2011-12-15T01:02:15.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-15T00:33:07.000Z", + "fileChanged": "14", + "insertions": "383", + "deletions": "79", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-15T00:27:01.000Z", + "fileChanged": "95", + "insertions": "122", + "deletions": "110", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-14T23:19:03.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-14T23:02:32.000Z", + "fileChanged": "143", + "insertions": "5935", + "deletions": "2513", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-12-14T13:00:10.000Z", + "fileChanged": "2", + "insertions": "115", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-14T02:53:02.000Z", + "fileChanged": "163", + "insertions": "1049", + "deletions": "718", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-13T19:11:14.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-14T19:11:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-14T12:28:51.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-14T02:39:20.000Z", + "fileChanged": "2", + "insertions": "93", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-14T02:38:41.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-14T01:56:23.000Z", + "fileChanged": "1", + "insertions": "177", + "deletions": "211", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-14T01:49:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-14T01:32:07.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-13T20:22:15.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-13T17:08:18.000Z", + "fileChanged": "2", + "insertions": "75", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-13T15:30:53.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-13T15:02:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-12T22:40:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-12T22:34:37.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-12T22:20:27.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-12T22:19:14.000Z", + "fileChanged": "6", + "insertions": "177", + "deletions": "157", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-12T21:45:39.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-12T17:19:30.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-12T06:25:42.000Z", + "fileChanged": "18", + "insertions": "736", + "deletions": "277", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-12-10T00:46:21.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-12-10T00:42:15.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-10T01:14:07.000Z", + "fileChanged": "5", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-08T23:58:29.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-08T23:10:26.000Z", + "fileChanged": "1", + "deletions": "1021", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-08T23:09:47.000Z", + "fileChanged": "4", + "insertions": "27", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-12-08T23:00:48.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Tim Oxley ", + "authorEmail": "secoif@gmail.com", + "date": "2011-12-08T01:15:40.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-08T02:03:18.000Z", + "fileChanged": "7", + "insertions": "48", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-08T00:01:46.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-07T23:44:33.000Z", + "fileChanged": "4", + "insertions": "84", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-07T22:19:57.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-07T21:31:55.000Z", + "fileChanged": "2", + "insertions": "110", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-12-07T13:47:06.000Z", + "fileChanged": "5", + "insertions": "207", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-07T13:33:17.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-07T01:06:36.000Z", + "fileChanged": "6", + "insertions": "195", + "deletions": "78", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-07T01:04:51.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-07T01:00:33.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-06T20:59:25.000Z", + "fileChanged": "36", + "insertions": "755", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-06T20:53:52.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-06T20:47:30.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-06T17:09:43.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-06T19:50:54.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-06T01:52:22.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-12-02T07:53:56.000Z", + "fileChanged": "4", + "insertions": "144", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-12-04T00:58:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-12-04T00:23:59.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-05T23:36:45.000Z", + "fileChanged": "7", + "insertions": "78", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-06T00:29:01.000Z", + "fileChanged": "427", + "insertions": "69841", + "deletions": "34373", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-06T00:25:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-02T02:19:17.000Z", + "fileChanged": "5", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-05T21:42:05.000Z", + "fileChanged": "2", + "insertions": "38", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-05T19:17:57.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-05T07:42:11.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-05T05:37:18.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-04T12:22:21.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-04T08:59:16.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-04T07:18:35.000Z", + "fileChanged": "4", + "insertions": "18", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-04T08:09:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-04T07:30:56.000Z", + "fileChanged": "4", + "insertions": "11", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-03T20:26:50.000Z", + "fileChanged": "527", + "insertions": "20547", + "deletions": "334", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-12-03T01:06:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-02T19:11:25.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-02T15:34:33.000Z" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-12-02T15:21:55.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-02T02:15:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-02T01:31:41.000Z", + "fileChanged": "3", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-12-02T01:14:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-12-01T23:25:24.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-12-01T23:24:44.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-12-01T23:02:51.000Z", + "fileChanged": "3", + "insertions": "88", + "deletions": "87", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-01T23:01:01.000Z", + "fileChanged": "95", + "insertions": "99", + "deletions": "97", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-12-01T21:24:28.000Z", + "fileChanged": "3", + "insertions": "36", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-12-01T21:56:04.000Z", + "fileChanged": "4", + "insertions": "41", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-12-01T21:50:09.000Z", + "fileChanged": "31", + "insertions": "246", + "deletions": "49", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-01T21:24:40.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-01T20:23:43.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-12-01T07:53:35.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-01T18:49:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-12-01T00:45:26.000Z", + "fileChanged": "253", + "insertions": "724", + "deletions": "968", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-01T20:00:46.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-01T16:21:00.000Z", + "fileChanged": "3", + "insertions": "28", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-12-01T13:51:53.000Z", + "fileChanged": "2", + "insertions": "46", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-30T14:49:42.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2011-11-30T08:54:20.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2011-11-30T08:44:00.000Z", + "fileChanged": "1", + "insertions": "48", + "deletions": "98", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-30T13:27:12.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-11-30T02:21:10.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-30T01:28:10.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Russ Bradberry ", + "authorEmail": "rbradberry@gmail.com", + "date": "2011-11-29T22:28:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ingmar Runge ", + "authorEmail": "ingmar@irsoft.de", + "date": "2011-11-03T04:15:09.000Z", + "fileChanged": "2", + "insertions": "84", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "eddy_me08@yahoo.com ", + "authorEmail": "eddy_me08@yahoo.com", + "date": "2011-11-29T14:31:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-29T18:21:41.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-29T15:27:52.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-29T11:45:39.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "seebees ", + "authorEmail": "seebees@gmail.com", + "date": "2011-11-28T17:36:54.000Z", + "fileChanged": "2", + "insertions": "66", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Roman Shtylman ", + "authorEmail": "shtylman@gmail.com", + "date": "2011-11-28T19:44:23.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Thomas Shinnick ", + "authorEmail": "tshinnic@gmail.com", + "date": "2011-11-28T19:30:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-28T13:13:55.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-27T21:38:54.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-11-26T17:21:03.000Z", + "fileChanged": "218", + "insertions": "23739", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Tim Oxley ", + "authorEmail": "secoif@gmail.com", + "date": "2011-11-26T13:23:06.000Z", + "fileChanged": "2", + "insertions": "0", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-11-26T15:43:57.000Z", + "fileChanged": "2", + "insertions": "101", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-27T01:09:15.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-11-26T17:05:24.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "kyle@dontkry.com ", + "authorEmail": "kyle@dontkry.com", + "date": "2011-11-26T02:26:11.000Z", + "fileChanged": "7", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-25T15:49:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-25T11:43:44.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-25T11:34:29.000Z" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-25T10:23:28.000Z", + "fileChanged": "4", + "insertions": "38", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-25T10:07:57.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-25T09:27:30.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-25T09:16:43.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-25T08:30:50.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Author: Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-25T08:29:06.000Z", + "fileChanged": "5", + "insertions": "173", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-25T03:45:35.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "piscisaureus@Berts-MacBook-Pro.local", + "date": "2011-11-25T02:08:27.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-25T01:13:37.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-25T00:25:38.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-25T00:01:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-24T23:55:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-24T18:57:17.000Z", + "fileChanged": "5", + "insertions": "37", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-24T18:56:41.000Z", + "fileChanged": "1", + "insertions": "81", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-24T16:00:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-24T01:38:34.000Z", + "fileChanged": "2", + "insertions": "86", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-24T01:19:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-23T12:19:19.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-23T11:55:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-23T11:54:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-23T03:23:41.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-23T02:17:12.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-23T00:10:32.000Z", + "fileChanged": "4", + "insertions": "14", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-11-23T00:56:59.000Z", + "fileChanged": "139", + "insertions": "1664", + "deletions": "6853", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-11-22T21:10:57.000Z", + "fileChanged": "2", + "insertions": "86", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-11-22T20:54:17.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-17T15:30:37.000Z", + "fileChanged": "1", + "insertions": "75", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-22T21:01:10.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-22T20:54:12.000Z", + "fileChanged": "6", + "insertions": "81", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-22T20:43:55.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-22T20:38:48.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-22T18:22:53.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-11-21T21:57:33.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-11-18T22:38:18.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-22T15:01:07.000Z", + "fileChanged": "4", + "insertions": "86", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-21T17:48:45.000Z", + "fileChanged": "449", + "insertions": "33131", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-21T12:58:30.000Z", + "fileChanged": "1", + "insertions": "74", + "deletions": "54", + "type": "Commit" + }, + { + "authorName": "Roman Shtylman ", + "authorEmail": "shtylman@gmail.com", + "date": "2011-11-20T23:09:07.000Z", + "fileChanged": "1", + "insertions": "48", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-10-24T23:57:43.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-21T03:22:30.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-18T23:22:13.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-18T21:09:59.000Z", + "fileChanged": "4", + "insertions": "35", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-11-18T22:38:18.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-18T12:47:54.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-18T13:05:35.000Z", + "fileChanged": "6", + "insertions": "49", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-18T20:03:35.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-18T13:16:06.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-14T21:27:57.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-18T12:07:01.000Z", + "fileChanged": "19", + "insertions": "722", + "deletions": "106", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-17T13:14:43.000Z", + "fileChanged": "9", + "insertions": "101", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-18T01:18:29.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trevor Burnham ", + "authorEmail": "trevorburnham@gmail.com", + "date": "2011-11-16T23:19:46.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Paddy Byers ", + "authorEmail": "paddy.byers@gmail.com", + "date": "2011-11-15T23:52:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-17T22:48:40.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-17T21:58:13.000Z", + "fileChanged": "4", + "insertions": "62", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-17T19:46:40.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "E. Azer Koçulu ", + "authorEmail": "azer@kodfabrik.com", + "date": "2011-11-17T07:20:06.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-17T19:46:40.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-17T20:06:50.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-17T19:39:14.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "E. Azer Koçulu ", + "authorEmail": "azer@kodfabrik.com", + "date": "2011-11-17T07:20:06.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-02T14:39:44.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-02T14:39:04.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-17T15:30:37.000Z", + "fileChanged": "1", + "insertions": "75", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-17T12:36:29.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Artur Adib ", + "authorEmail": "arturadib@gmail.com", + "date": "2011-11-09T02:13:59.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-16T23:54:42.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-16T23:10:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-16T22:54:43.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-16T21:38:04.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-16T21:37:20.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-16T21:05:35.000Z", + "fileChanged": "10", + "insertions": "27", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Łukasz Walukiewicz ", + "authorEmail": "lukasz@walukiewicz.eu", + "date": "2011-11-16T12:38:09.000Z", + "fileChanged": "2", + "insertions": "78", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Łukasz Walukiewicz ", + "authorEmail": "lukasz@walukiewicz.eu", + "date": "2011-11-16T12:38:09.000Z", + "fileChanged": "2", + "insertions": "78", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-15T21:56:11.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-15T16:17:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-15T03:02:44.000Z", + "fileChanged": "186", + "insertions": "445", + "deletions": "47961", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-15T01:17:23.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-14T20:03:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2011-11-14T18:58:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "seebees ", + "authorEmail": "seebees@gmail.com", + "date": "2011-11-13T01:57:42.000Z", + "fileChanged": "2", + "insertions": "106", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Mathias Bynens ", + "authorEmail": "mathias@qiwi.be", + "date": "2011-11-13T09:39:24.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "seebees ", + "authorEmail": "seebees@gmail.com", + "date": "2011-11-12T01:44:39.000Z", + "fileChanged": "3", + "insertions": "237", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "seebees ", + "authorEmail": "seebees@gmail.com", + "date": "2011-11-12T01:24:47.000Z", + "fileChanged": "1", + "insertions": "92", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-12T12:31:26.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-11T23:35:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-11T21:39:40.000Z", + "fileChanged": "5", + "insertions": "46", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-11T22:31:15.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-11T22:02:42.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-11T20:40:47.000Z", + "fileChanged": "3", + "insertions": "36", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-11T20:38:55.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-11T20:08:24.000Z", + "fileChanged": "4", + "insertions": "18", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2011-11-11T06:37:34.000Z", + "fileChanged": "3", + "insertions": "212", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-11T17:18:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-11T10:33:12.000Z", + "fileChanged": "1", + "insertions": "123", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-11T15:57:05.000Z", + "fileChanged": "2", + "insertions": "562", + "deletions": "220", + "type": "Commit" + }, + { + "authorName": "Yoji SHIDARA ", + "authorEmail": "dara@shidara.net", + "date": "2011-11-10T09:10:03.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-11T07:35:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-11T02:16:51.000Z", + "fileChanged": "8", + "insertions": "33", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-11T02:40:49.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-10T22:51:16.000Z", + "fileChanged": "3", + "insertions": "19", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-10T21:04:34.000Z", + "fileChanged": "12", + "insertions": "191", + "deletions": "128", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-10T20:11:19.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-10T19:10:54.000Z", + "fileChanged": "3", + "insertions": "44", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-10T16:40:56.000Z", + "fileChanged": "10", + "insertions": "223", + "deletions": "247", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-10T12:17:49.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-09T23:04:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-09T21:51:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-09T16:32:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-09T15:33:50.000Z", + "fileChanged": "16", + "insertions": "16", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-09T01:07:49.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-09T01:03:29.000Z", + "fileChanged": "2", + "insertions": "88", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-09T00:59:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-09T00:58:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-09T00:52:45.000Z", + "fileChanged": "6", + "insertions": "31", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-08T21:36:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-08T16:57:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-08T19:19:50.000Z", + "fileChanged": "8", + "insertions": "180", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-08T16:57:21.000Z", + "fileChanged": "1", + "insertions": "74", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-08T18:00:12.000Z", + "fileChanged": "4", + "insertions": "44", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Scott Anderson ", + "authorEmail": "sanderson7@gmail.com", + "date": "2011-11-07T21:54:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-08T12:03:25.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Benjamin Pasero ", + "authorEmail": "benjamin.pasero@gmail.com", + "date": "2011-11-08T10:17:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-08T11:44:36.000Z", + "fileChanged": "2", + "insertions": "85", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-08T07:29:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Eric Lovett ", + "authorEmail": "etlovett@gmail.com", + "date": "2011-11-07T19:37:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-07T23:25:51.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-07T18:43:48.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-07T18:41:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-07T05:46:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-11-05T16:23:33.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-11-05T07:47:21.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Eric Lovett ", + "authorEmail": "etlovett@gmail.com", + "date": "2011-11-05T10:08:15.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-05T09:44:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Eric Lovett ", + "authorEmail": "etlovett@gmail.com", + "date": "2011-11-05T09:36:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-05T08:55:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-04T23:40:14.000Z", + "fileChanged": "5", + "insertions": "70", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-11-05T03:35:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-05T02:13:55.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-05T00:48:24.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-05T01:04:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-05T00:55:12.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-05T00:50:05.000Z", + "fileChanged": "13", + "insertions": "70", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-04T22:55:06.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Jacob H.C. Kragh ", + "authorEmail": "jhckragh@gmail.com", + "date": "2011-11-04T22:07:10.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-04T22:31:39.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-04T22:33:49.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-04T22:19:46.000Z", + "fileChanged": "5", + "insertions": "100", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-04T22:14:26.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-04T22:11:19.000Z", + "fileChanged": "4", + "insertions": "95", + "deletions": "68", + "type": "Commit" + }, + { + "authorName": "Jacob H.C. Kragh ", + "authorEmail": "jhckragh@gmail.com", + "date": "2011-11-04T18:11:50.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Matt Robenolt ", + "authorEmail": "matt@ydekproductions.com", + "date": "2011-10-24T16:29:24.000Z", + "fileChanged": "3", + "insertions": "176", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-11-04T16:56:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-11-04T16:20:53.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-04T15:23:02.000Z", + "fileChanged": "3", + "insertions": "199", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-04T15:11:39.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-04T15:10:48.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "233", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-11-04T15:06:48.000Z", + "fileChanged": "10", + "insertions": "39", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Jordan Sissel ", + "authorEmail": "jls@semicomplete.com", + "date": "2011-11-04T12:22:18.000Z", + "fileChanged": "2", + "insertions": "77", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-04T12:10:07.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-04T04:28:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-03T23:30:58.000Z", + "fileChanged": "13", + "insertions": "86", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-11-03T21:09:07.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-03T20:27:26.000Z", + "fileChanged": "3", + "insertions": "73", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-03T19:34:23.000Z", + "fileChanged": "2", + "insertions": "68", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-01T22:42:45.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-11-03T14:13:22.000Z", + "fileChanged": "1", + "insertions": "83", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-03T17:46:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-03T17:34:22.000Z", + "fileChanged": "308", + "insertions": "17165", + "deletions": "32415", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-11-03T11:04:22.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-03T08:35:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-03T02:25:11.000Z", + "fileChanged": "4", + "insertions": "38", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-03T02:23:59.000Z", + "fileChanged": "1", + "insertions": "95", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-03T01:27:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-02T22:06:48.000Z", + "fileChanged": "4", + "insertions": "38", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-03T00:20:54.000Z", + "fileChanged": "2", + "insertions": "46", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-02T23:51:26.000Z", + "fileChanged": "14", + "insertions": "156", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-02T23:26:43.000Z", + "fileChanged": "110", + "insertions": "112", + "deletions": "332", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-02T23:21:25.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-11-02T22:38:38.000Z", + "fileChanged": "3", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-02T17:37:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-11-02T16:52:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-11-02T17:00:57.000Z", + "fileChanged": "15", + "insertions": "315", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-02T16:24:53.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-02T15:58:08.000Z", + "fileChanged": "226", + "insertions": "7082", + "deletions": "14108", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-01T23:30:42.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-11-01T19:52:35.000Z", + "fileChanged": "11", + "insertions": "32", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-11-01T08:35:48.000Z", + "fileChanged": "3", + "insertions": "48", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-01T21:11:58.000Z", + "fileChanged": "9", + "insertions": "158", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-01T16:23:17.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-11-01T14:16:16.000Z", + "fileChanged": "1", + "deletions": "40", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-11-01T15:30:41.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-11-01T10:30:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-10-31T23:31:37.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-31T21:31:12.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-31T20:58:22.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-26T17:34:56.000Z", + "fileChanged": "9", + "insertions": "135", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-30T20:22:46.000Z", + "fileChanged": "1", + "deletions": "10", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-30T16:33:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-30T16:15:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-30T15:49:20.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-30T02:40:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-30T01:56:51.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Siddharth Mahendraker ", + "authorEmail": "siddharth_mahen@me.com", + "date": "2011-10-23T11:19:45.000Z", + "fileChanged": "2", + "insertions": "44", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-10-29T01:30:03.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-28T23:33:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-28T10:08:36.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-28T09:31:34.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-28T10:05:09.000Z", + "fileChanged": "1", + "insertions": "53", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-28T23:06:09.000Z", + "fileChanged": "21", + "insertions": "697", + "deletions": "205", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-28T10:10:24.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-28T09:34:53.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-28T09:31:43.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-28T14:08:07.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-10-28T22:57:39.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-10-28T22:34:24.000Z", + "fileChanged": "5", + "insertions": "244", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-28T21:29:56.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-28T20:36:55.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Zachary Scott ", + "authorEmail": "zachary@zacharyscott.net", + "date": "2011-10-28T18:07:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-28T16:22:39.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-28T15:27:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-10-27T23:47:37.000Z", + "fileChanged": "5", + "deletions": "244", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-26T06:10:42.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-27T11:19:51.000Z", + "fileChanged": "1", + "insertions": "126", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-27T07:48:23.000Z", + "fileChanged": "228", + "insertions": "14124", + "deletions": "7208", + "type": "Commit" + }, + { + "authorName": "Tj Holowaychuk ", + "authorEmail": "tj@vision-media.ca", + "date": "2011-10-26T23:21:08.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-26T20:41:31.000Z", + "fileChanged": "4", + "insertions": "50", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-10-26T19:45:51.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-10-26T06:56:07.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-10-26T18:22:16.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-10-26T04:42:23.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-26T19:27:31.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-10-26T18:10:23.000Z", + "fileChanged": "1", + "insertions": "56", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-10-26T18:10:15.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-10-26T18:09:01.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-26T18:31:12.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Zachary Scott ", + "authorEmail": "zachary@zacharyscott.net", + "date": "2011-10-26T17:40:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Zachary Scott ", + "authorEmail": "zachary@zacharyscott.net", + "date": "2011-10-26T17:07:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-26T12:12:23.000Z", + "fileChanged": "3", + "insertions": "95", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-25T09:57:06.000Z", + "fileChanged": "2", + "insertions": "100", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-26T05:11:20.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-26T05:09:18.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-26T04:59:31.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-25T22:05:24.000Z", + "fileChanged": "7", + "insertions": "102", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-10-25T20:47:21.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-25T19:18:41.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-25T00:23:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-10-24T21:52:10.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-24T18:55:02.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-10-24T19:48:58.000Z", + "fileChanged": "2", + "insertions": "146", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-10-23T09:20:03.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-22T14:40:15.000Z", + "fileChanged": "4", + "insertions": "52", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "seebees ", + "authorEmail": "seebees@gmail.com", + "date": "2011-10-19T23:28:44.000Z", + "fileChanged": "11", + "insertions": "37", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "seebees ", + "authorEmail": "seebees@gmail.com", + "date": "2011-10-19T22:06:49.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "seebees ", + "authorEmail": "seebees@gmail.com", + "date": "2011-10-15T00:13:16.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "seebees ", + "authorEmail": "seebees@gmail.com", + "date": "2011-10-15T00:10:49.000Z", + "fileChanged": "10", + "insertions": "453", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "seebees ", + "authorEmail": "seebees@gmail.com", + "date": "2011-09-13T20:55:18.000Z", + "fileChanged": "2", + "insertions": "294", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-22T05:00:42.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-10-19T20:46:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-22T04:53:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-22T02:16:06.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-22T00:02:11.000Z", + "fileChanged": "5", + "insertions": "63", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-22T01:44:06.000Z", + "fileChanged": "5", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-22T00:07:11.000Z", + "fileChanged": "3", + "insertions": "38", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-22T00:08:12.000Z", + "fileChanged": "9", + "insertions": "185", + "deletions": "14", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-22T00:58:04.000Z" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-10-22T00:08:50.000Z", + "fileChanged": "1", + "insertions": "59", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-10-21T22:32:12.000Z", + "fileChanged": "2", + "insertions": "61", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-21T22:19:49.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-21T21:54:11.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-21T20:43:49.000Z", + "fileChanged": "2", + "insertions": "112", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-21T20:44:30.000Z", + "fileChanged": "16", + "insertions": "228", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-21T20:07:48.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-10-20T17:00:15.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-10-20T15:54:50.000Z", + "fileChanged": "3", + "insertions": "104", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-21T19:46:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-10-21T16:08:19.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-21T17:21:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-27T15:07:56.000Z", + "fileChanged": "3", + "insertions": "829", + "deletions": "172", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-21T00:52:50.000Z", + "fileChanged": "3", + "insertions": "48", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-21T00:52:32.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-20T22:40:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-20T22:25:57.000Z", + "fileChanged": "21", + "insertions": "1030", + "deletions": "130", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-20T22:06:53.000Z", + "fileChanged": "2", + "insertions": "130", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-10-19T20:46:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-10-20T05:07:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-20T01:20:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-19T23:53:07.000Z", + "fileChanged": "11", + "insertions": "80", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-19T23:28:52.000Z", + "fileChanged": "1", + "deletions": "18", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-19T23:23:26.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "356", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-19T18:01:08.000Z", + "fileChanged": "7", + "insertions": "171", + "deletions": "54", + "type": "Commit" + }, + { + "authorName": "Thomas Parslow ", + "authorEmail": "tom@almostobsolete.net", + "date": "2011-10-18T13:15:58.000Z", + "fileChanged": "2", + "insertions": "71", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-17T13:13:18.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-10-18T01:24:12.000Z", + "fileChanged": "3", + "insertions": "40", + "deletions": "103", + "type": "Commit" + }, + { + "authorName": "elliottcable ", + "authorEmail": "me@ell.io", + "date": "2011-10-14T07:42:18.000Z", + "fileChanged": "7", + "insertions": "54", + "deletions": "171", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-18T23:12:07.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-18T22:12:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-18T21:38:48.000Z", + "fileChanged": "11", + "insertions": "341", + "deletions": "170", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-18T21:30:31.000Z", + "fileChanged": "12", + "insertions": "11", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T23:06:40.000Z", + "fileChanged": "4", + "insertions": "6", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-16T15:32:13.000Z", + "fileChanged": "1", + "insertions": "66", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Yoshihiro Kikuchi ", + "authorEmail": "yknetg@gmail.com", + "date": "2011-10-13T08:48:30.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-16T07:31:41.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-10-15T19:21:15.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-15T08:10:14.000Z", + "fileChanged": "2", + "insertions": "45", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-15T16:26:38.000Z", + "fileChanged": "1", + "insertions": "89", + "deletions": "60", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-15T10:27:21.000Z", + "fileChanged": "3", + "insertions": "77", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-15T01:27:25.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-15T01:10:53.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-10-15T00:47:01.000Z", + "fileChanged": "1", + "deletions": "15", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-10-14T23:58:18.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-15T00:05:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-10T22:32:54.000Z", + "fileChanged": "1", + "insertions": "126", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-10-14T16:20:05.000Z", + "fileChanged": "1", + "insertions": "83", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-14T23:01:57.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-14T23:08:36.000Z", + "fileChanged": "126", + "insertions": "421", + "deletions": "421", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-14T22:42:10.000Z", + "fileChanged": "11", + "insertions": "680", + "deletions": "114", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-21T04:19:22.000Z", + "fileChanged": "6", + "insertions": "129", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-14T08:04:04.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-14T15:05:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-14T15:00:37.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-14T14:58:41.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-14T14:50:38.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-14T14:43:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-14T14:39:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-14T00:45:02.000Z", + "fileChanged": "306", + "insertions": "32386", + "deletions": "17110", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-10-13T23:37:49.000Z", + "fileChanged": "3", + "insertions": "53", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Guglielmo Ferri ", + "authorEmail": "44gatti@gmail.com", + "date": "2011-09-10T12:55:58.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-10-13T14:10:24.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Simen Brekken ", + "authorEmail": "simen.brekken@gmail.com", + "date": "2011-10-12T10:06:16.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-13T02:56:11.000Z", + "fileChanged": "1", + "insertions": "58", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-13T13:36:28.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-13T08:06:27.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@gmail.com", + "date": "2011-10-13T01:20:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-13T00:31:32.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ilya Dmitrichenko ", + "authorEmail": "errordeveloper@gmail.com", + "date": "2011-10-11T22:30:29.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Arnout Kazemier ", + "authorEmail": "info@3rd-Eden.com", + "date": "2011-10-12T18:50:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-12T23:59:00.000Z", + "fileChanged": "4", + "insertions": "209", + "deletions": "209", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-12T23:18:42.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-12T23:11:55.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2011-09-06T19:28:15.000Z", + "fileChanged": "1", + "insertions": "60", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Daniel Ennis ", + "authorEmail": "aikar@aikar.co", + "date": "2011-10-12T00:54:55.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-12T21:51:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-12T21:19:32.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-12T21:10:30.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-12T19:46:41.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-12T19:29:40.000Z", + "fileChanged": "1", + "deletions": "23", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-12T19:27:46.000Z", + "fileChanged": "6", + "insertions": "199", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-12T15:44:12.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-12T15:32:47.000Z", + "fileChanged": "17", + "insertions": "255", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-12T14:28:46.000Z", + "fileChanged": "1", + "insertions": "31", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-12T13:47:20.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-12T09:56:29.000Z", + "fileChanged": "4", + "insertions": "260", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-10-12T05:34:51.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-12T05:40:04.000Z", + "fileChanged": "2", + "insertions": "46", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-10-11T23:01:37.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T22:20:09.000Z", + "fileChanged": "1", + "deletions": "11", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T22:17:32.000Z", + "fileChanged": "1", + "deletions": "12", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T21:59:39.000Z", + "fileChanged": "4", + "deletions": "1096", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T21:49:39.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T21:46:55.000Z", + "fileChanged": "3", + "insertions": "39", + "deletions": "144", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T21:38:38.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T21:25:50.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T20:41:33.000Z", + "fileChanged": "12", + "insertions": "413", + "deletions": "982", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T20:26:41.000Z", + "fileChanged": "5", + "insertions": "319", + "deletions": "634", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T20:21:30.000Z", + "fileChanged": "10", + "insertions": "237", + "deletions": "1422", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T20:16:33.000Z", + "fileChanged": "10", + "insertions": "475", + "deletions": "1556", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T20:07:14.000Z", + "fileChanged": "15", + "insertions": "1035", + "deletions": "4577", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T19:50:05.000Z", + "fileChanged": "2", + "insertions": "149", + "deletions": "149", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-10-11T19:14:00.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-11T19:05:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T18:27:58.000Z", + "fileChanged": "3", + "insertions": "126", + "deletions": "123", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T17:51:05.000Z", + "fileChanged": "3", + "insertions": "71", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "Tomasz Janczuk ", + "authorEmail": "tomasz@janczuk.org", + "date": "2011-09-14T21:51:49.000Z", + "fileChanged": "7", + "insertions": "143", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T17:08:47.000Z", + "fileChanged": "1", + "deletions": "88", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T17:08:09.000Z", + "fileChanged": "1", + "deletions": "33", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T17:07:33.000Z", + "fileChanged": "1", + "deletions": "97", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T16:58:35.000Z", + "fileChanged": "14", + "deletions": "732", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-11T15:21:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-11T14:56:43.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T01:56:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-10T21:43:15.000Z", + "fileChanged": "5", + "insertions": "38", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T01:17:17.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "126", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T00:58:30.000Z", + "fileChanged": "282", + "insertions": "15447", + "deletions": "29515", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-10T22:32:54.000Z", + "fileChanged": "1", + "insertions": "126", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-11T00:05:18.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-10T21:49:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-10T21:27:52.000Z", + "fileChanged": "2", + "deletions": "34", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-10T21:24:56.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "57", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-10T20:52:18.000Z", + "fileChanged": "3", + "insertions": "72", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-10T20:50:47.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-10T20:41:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-10T20:30:10.000Z", + "fileChanged": "8", + "insertions": "35", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-10-10T18:46:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-10T18:52:42.000Z", + "fileChanged": "282", + "insertions": "29521", + "deletions": "15453", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-10-10T18:46:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-10T18:31:40.000Z", + "fileChanged": "3", + "insertions": "23", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-10T14:56:02.000Z", + "fileChanged": "4", + "insertions": "69", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-10T13:37:07.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@gmail.com", + "date": "2011-10-08T12:00:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-08T00:18:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-10-08T00:08:48.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-07T23:43:53.000Z", + "fileChanged": "4", + "insertions": "68", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-07T22:20:33.000Z", + "fileChanged": "9", + "insertions": "75", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-07T20:58:49.000Z", + "fileChanged": "4", + "insertions": "106", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-07T01:07:45.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-06T23:57:35.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-06T21:53:27.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-06T19:27:10.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "talltyler ", + "authorEmail": "talltyler@gmail.com", + "date": "2011-10-07T03:04:39.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-07T17:00:48.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-07T09:43:44.000Z", + "fileChanged": "6", + "insertions": "55", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-10-07T08:21:23.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-10-07T08:17:51.000Z", + "fileChanged": "9", + "insertions": "10", + "deletions": "270", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-07T08:30:26.000Z", + "fileChanged": "3", + "insertions": "16", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-07T08:08:53.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-07T08:00:40.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-07T07:57:37.000Z", + "fileChanged": "2", + "insertions": "120", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-07T07:47:13.000Z", + "fileChanged": "4", + "insertions": "44", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-07T05:56:29.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-05T19:33:05.000Z", + "fileChanged": "6", + "insertions": "363", + "deletions": "245", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-06T22:02:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-06T21:59:38.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-06T19:26:51.000Z", + "fileChanged": "41", + "insertions": "1661", + "deletions": "679", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-10-06T19:25:13.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-10-06T05:56:50.000Z", + "fileChanged": "1", + "insertions": "96", + "deletions": "57", + "type": "Commit" + }, + { + "authorName": "Colton Baker ", + "authorEmail": "github@netrefuge.net", + "date": "2011-10-04T22:08:18.000Z", + "fileChanged": "175", + "insertions": "1237", + "deletions": "1191", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-04T23:53:17.000Z", + "fileChanged": "31", + "insertions": "799", + "deletions": "232", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-04T18:51:34.000Z", + "fileChanged": "6", + "insertions": "417", + "deletions": "2341", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-03T14:50:09.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Christian Tellnes ", + "authorEmail": "christian@tellnes.no", + "date": "2011-10-03T01:57:53.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-10-03T11:40:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-10-01T11:52:24.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-10-01T11:46:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-10-01T11:42:42.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-10-01T07:28:57.000Z", + "fileChanged": "1", + "insertions": "51", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-10-01T00:01:07.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-30T23:49:30.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-30T20:59:44.000Z", + "fileChanged": "4", + "insertions": "32", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-29T18:18:35.000Z", + "fileChanged": "2", + "insertions": "94", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-30T20:11:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-30T18:22:38.000Z", + "fileChanged": "94", + "insertions": "12528", + "deletions": "736", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-30T16:57:08.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "56", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-30T16:47:01.000Z", + "fileChanged": "1", + "insertions": "56", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-30T08:05:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-27T09:25:10.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-27T09:24:38.000Z", + "fileChanged": "1", + "insertions": "78", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-29T18:35:17.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-29T16:50:50.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Marco Rogers ", + "authorEmail": "marco.rogers@gmail.com", + "date": "2011-09-29T07:53:36.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-28T23:11:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-29T00:43:20.000Z", + "fileChanged": "2", + "insertions": "70", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-27T17:16:29.000Z", + "fileChanged": "2", + "insertions": "120", + "deletions": "109", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-28T18:17:12.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-27T22:04:01.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-27T22:01:12.000Z", + "fileChanged": "6", + "insertions": "30", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-27T17:37:37.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-27T20:13:21.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-27T20:06:35.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-27T14:16:59.000Z", + "fileChanged": "17", + "insertions": "1811", + "deletions": "54", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-27T14:13:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-27T14:13:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-23T16:57:58.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-23T02:55:15.000Z", + "fileChanged": "3", + "insertions": "17", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-23T05:00:00.000Z", + "fileChanged": "2", + "insertions": "95", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-20T22:57:23.000Z", + "fileChanged": "5", + "insertions": "463", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-27T19:52:48.000Z", + "fileChanged": "6", + "insertions": "275", + "deletions": "275", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-27T19:37:56.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-27T19:38:23.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-22T20:12:10.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-22T19:26:33.000Z", + "fileChanged": "1", + "insertions": "70", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-22T18:33:58.000Z", + "fileChanged": "4", + "insertions": "156", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-27T09:57:30.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-27T06:25:31.000Z", + "fileChanged": "2", + "insertions": "74", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-27T06:25:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-26T19:47:49.000Z", + "fileChanged": "1", + "insertions": "46", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-09-26T18:50:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-25T19:20:47.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-25T11:10:21.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-24T13:51:59.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-24T07:28:27.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-24T06:17:39.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-24T06:04:35.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-24T05:44:08.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-25T01:32:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-25T01:31:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-25T01:32:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-25T01:31:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Eric Lovett ", + "authorEmail": "etlovett@gmail.com", + "date": "2011-09-24T04:05:40.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-24T03:07:35.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-24T03:07:35.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-24T03:23:41.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-15T17:45:32.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-23T18:48:04.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-23T15:28:32.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-22T09:47:01.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-22T16:49:59.000Z", + "fileChanged": "2", + "insertions": "44", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ben Leslie ", + "authorEmail": "benno@benno.id.au", + "date": "2011-09-23T13:25:20.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-23T18:07:57.000Z", + "fileChanged": "12", + "insertions": "124", + "deletions": "73", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-22T17:03:46.000Z", + "fileChanged": "3", + "insertions": "168", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-09-23T07:45:41.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-23T13:40:35.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-09-22T23:18:08.000Z", + "fileChanged": "6", + "insertions": "349", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-23T02:41:43.000Z", + "fileChanged": "23", + "insertions": "1050", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-09-23T02:37:19.000Z", + "fileChanged": "1", + "insertions": "64", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-20T23:57:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-20T23:11:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-19T20:24:43.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-16T17:16:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-09-21T23:10:34.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-21T10:59:04.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-21T10:08:31.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-21T09:59:20.000Z", + "fileChanged": "1", + "insertions": "50", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Vitor Balocco ", + "authorEmail": "vitorbal@gmail.com", + "date": "2011-09-15T21:22:05.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-20T23:57:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-20T23:11:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-20T06:50:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-16T15:54:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-16T00:49:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-16T00:31:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-15T23:46:39.000Z", + "fileChanged": "4", + "insertions": "36", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-15T21:56:12.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-09-15T17:38:25.000Z", + "fileChanged": "4", + "insertions": "16", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-09-15T16:52:49.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-09-15T16:46:30.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-14T14:29:32.000Z", + "fileChanged": "1", + "insertions": "59", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-14T14:07:33.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-03T06:28:36.000Z", + "fileChanged": "2", + "insertions": "58", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-02T09:37:15.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-01T07:48:35.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-08-30T15:35:16.000Z", + "fileChanged": "1", + "deletions": "29", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-08-25T17:22:35.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-23T21:29:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-08-22T15:19:39.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-20T19:38:31.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-08-19T22:26:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-08-17T20:13:56.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-18T01:45:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-18T01:17:57.000Z", + "fileChanged": "5", + "insertions": "46", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-17T20:21:15.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-17T05:44:53.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-17T04:45:21.000Z", + "fileChanged": "5", + "insertions": "22", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-17T04:12:09.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-20T21:48:03.000Z", + "fileChanged": "1", + "insertions": "50", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-20T21:08:53.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-20T20:38:07.000Z", + "fileChanged": "5", + "insertions": "119", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-20T20:34:52.000Z", + "fileChanged": "13", + "insertions": "86", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-20T10:12:32.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-20T10:05:01.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-20T10:04:35.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-17T08:38:06.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-20T08:30:39.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-20T08:18:05.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-20T08:14:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-19T20:24:43.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-19T20:41:42.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-19T14:43:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-19T14:28:22.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-18T20:20:16.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-18T19:08:43.000Z", + "fileChanged": "7", + "insertions": "393", + "deletions": "98", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-09-18T06:03:36.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-09-18T06:03:23.000Z", + "fileChanged": "3", + "insertions": "19", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-09-06T23:13:05.000Z", + "fileChanged": "49", + "insertions": "17615", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-17T01:38:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-16T22:40:39.000Z", + "fileChanged": "5", + "insertions": "64", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-15T15:21:04.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-15T15:17:49.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-17T00:47:35.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-17T00:20:05.000Z", + "fileChanged": "1", + "deletions": "64", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-16T23:19:18.000Z", + "fileChanged": "5", + "insertions": "176", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-16T22:02:30.000Z", + "fileChanged": "1", + "insertions": "64", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-16T17:16:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-15T22:29:32.000Z", + "fileChanged": "12", + "insertions": "88", + "deletions": "23", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-15T22:08:38.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-15T20:57:41.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-15T20:35:24.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-15T20:05:54.000Z", + "fileChanged": "1", + "deletions": "8", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Jeroen Janssen ", + "authorEmail": "jeroen.janssen@gmail.com", + "date": "2011-09-15T18:41:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-15T18:47:33.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-15T16:41:08.000Z", + "fileChanged": "202", + "insertions": "4332", + "deletions": "2214", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-14T22:28:45.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-09-14T20:27:44.000Z", + "fileChanged": "1", + "deletions": "11", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-14T20:46:07.000Z", + "fileChanged": "6", + "insertions": "113", + "deletions": "84", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-14T19:33:38.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-14T09:36:26.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-14T09:35:51.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-14T09:24:46.000Z", + "fileChanged": "1", + "insertions": "113", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-14T08:08:46.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-14T06:59:56.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-14T15:43:27.000Z", + "fileChanged": "7", + "insertions": "212", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-14T15:07:58.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-14T14:48:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-14T11:17:30.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-14T03:50:47.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-13T14:09:18.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-11T14:52:24.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-14T03:02:54.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-09-13T17:59:42.000Z", + "fileChanged": "1", + "insertions": "54", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-13T02:42:12.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-13T01:25:00.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-13T01:10:42.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-13T00:19:09.000Z", + "fileChanged": "4", + "insertions": "26", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-09-13T00:10:24.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-09-13T00:10:51.000Z", + "fileChanged": "4", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-12T22:52:56.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-12T21:59:51.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-12T21:53:27.000Z", + "fileChanged": "10", + "insertions": "233", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-02T14:39:44.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-02T14:39:04.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-31T19:11:10.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-31T19:10:38.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-30T23:57:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-30T22:54:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-29T22:01:43.000Z", + "fileChanged": "2", + "insertions": "206", + "deletions": "66", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-01T01:13:49.000Z", + "fileChanged": "2", + "insertions": "90", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-12T21:45:00.000Z", + "fileChanged": "41", + "insertions": "91", + "deletions": "204", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-12T16:41:48.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Thomas Shinnick ", + "authorEmail": "tshinnic@gmail.com", + "date": "2011-09-09T04:16:10.000Z", + "fileChanged": "2", + "insertions": "59", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Thomas Shinnick ", + "authorEmail": "tshinnic@gmail.com", + "date": "2011-09-11T20:30:01.000Z", + "fileChanged": "4", + "insertions": "335", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Thomas Shinnick ", + "authorEmail": "tshinnic@gmail.com", + "date": "2011-09-08T23:19:28.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-08T16:16:48.000Z", + "fileChanged": "2", + "insertions": "44", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-11T07:05:00.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-11T01:54:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-11T01:52:44.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-11T01:40:40.000Z", + "fileChanged": "9", + "insertions": "57", + "deletions": "49", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-11T00:45:42.000Z" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-10T19:18:45.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-08T11:42:44.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-10T16:55:38.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-10T12:18:36.000Z", + "fileChanged": "1", + "insertions": "62", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-10T11:39:34.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-10T11:19:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-10T10:57:55.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-10T10:43:22.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-10T10:33:07.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-10T05:38:42.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-10T03:18:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-09T23:38:51.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-09T21:55:49.000Z", + "fileChanged": "4", + "insertions": "85", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-09T21:51:32.000Z", + "fileChanged": "7", + "insertions": "2", + "deletions": "166", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-09-09T18:46:40.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-09T15:29:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-09T13:05:12.000Z", + "fileChanged": "5", + "insertions": "34", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-09T12:59:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-09T12:59:27.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-09-09T06:24:45.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-08T23:03:35.000Z", + "fileChanged": "60", + "insertions": "3961", + "deletions": "2776", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-08T21:53:24.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-08T21:29:12.000Z", + "fileChanged": "20", + "insertions": "2090", + "deletions": "1047", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-08T20:30:19.000Z", + "fileChanged": "3", + "insertions": "22", + "deletions": "74", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-08T20:05:21.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-09-08T19:40:56.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-08T19:33:28.000Z", + "fileChanged": "1", + "insertions": "36", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-08T16:04:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-08T14:18:23.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-08T10:44:55.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-08T09:09:45.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-08T09:03:48.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-08T09:03:27.000Z", + "fileChanged": "2", + "insertions": "54", + "deletions": "77", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-08T03:59:38.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-07T16:43:59.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-07T16:36:26.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-07T16:35:55.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-07T14:42:41.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-07T14:29:01.000Z", + "fileChanged": "1", + "insertions": "105", + "deletions": "58", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-07T10:31:43.000Z", + "fileChanged": "1", + "insertions": "206", + "deletions": "205", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-07T10:31:29.000Z", + "fileChanged": "1", + "insertions": "63", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-07T08:12:58.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-07T08:12:10.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-07T07:39:49.000Z", + "fileChanged": "2", + "insertions": "206", + "deletions": "162", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-06T20:08:48.000Z", + "fileChanged": "1", + "insertions": "72", + "deletions": "171", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-09-08T11:42:44.000Z", + "fileChanged": "3", + "insertions": "74", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-08T11:46:57.000Z", + "fileChanged": "2", + "insertions": "59", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-08T15:20:01.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-08T12:00:02.000Z", + "fileChanged": "1", + "insertions": "210", + "deletions": "188", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-08T08:11:08.000Z", + "fileChanged": "7", + "insertions": "442", + "deletions": "232", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-08T02:22:41.000Z", + "fileChanged": "213", + "insertions": "5390", + "deletions": "2908", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-08T02:47:32.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-08T00:51:33.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-07T15:29:34.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Sean Cunningham ", + "authorEmail": "sean.cunningham@mandiant.com", + "date": "2011-08-29T18:09:01.000Z", + "fileChanged": "4", + "insertions": "186", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-06T21:11:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Thomas Shinnick ", + "authorEmail": "tshinnic@gmail.com", + "date": "2011-08-31T13:12:34.000Z", + "fileChanged": "9", + "insertions": "83", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-09-05T19:16:00.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-09-05T19:15:18.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-06T14:30:48.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-06T14:14:14.000Z", + "fileChanged": "6", + "insertions": "278", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-06T02:46:44.000Z", + "fileChanged": "2", + "insertions": "73", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-06T00:03:43.000Z", + "fileChanged": "3", + "insertions": "66", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-05T22:24:39.000Z", + "fileChanged": "12", + "insertions": "141", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-07-31T20:19:36.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-05T21:40:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-05T07:32:15.000Z", + "fileChanged": "3", + "insertions": "68", + "deletions": "78", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-09-05T05:13:01.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-05T02:48:55.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-05T02:44:01.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-05T01:46:37.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-05T01:16:33.000Z", + "fileChanged": "4", + "insertions": "141", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-05T01:30:12.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-05T00:16:07.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-05T00:09:24.000Z", + "fileChanged": "3", + "insertions": "59", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-04T23:01:53.000Z", + "fileChanged": "1", + "insertions": "48", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-04T22:35:42.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-04T23:13:03.000Z", + "fileChanged": "12", + "insertions": "621", + "deletions": "69", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-04T20:54:24.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-04T20:53:01.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-09-04T20:25:40.000Z", + "fileChanged": "15", + "insertions": "257", + "deletions": "130", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-08-30T02:39:51.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Logan Smyth ", + "authorEmail": "loganfsmyth@gmail.com", + "date": "2011-09-04T15:38:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ashok Mudukutore ", + "authorEmail": "ashok@lineratesystems.com", + "date": "2011-08-25T17:03:07.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-09-04T01:41:12.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-09-03T18:24:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-09-03T06:54:13.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-09-04T00:31:12.000Z", + "fileChanged": "8", + "insertions": "276", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "AJ ONeal ", + "authorEmail": "coolaj86@gmail.com", + "date": "2011-09-01T18:23:17.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michael Jackson ", + "authorEmail": "mjijackson@gmail.com", + "date": "2011-09-02T19:53:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-02T19:53:16.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-09-02T16:36:56.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-08-31T16:57:11.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-30T21:47:21.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Niclas Hoyer ", + "authorEmail": "niclas@verbugt.de", + "date": "2011-08-30T20:46:48.000Z", + "fileChanged": "3", + "insertions": "142", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Niclas Hoyer ", + "authorEmail": "niclas@verbugt.de", + "date": "2011-08-30T20:46:07.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-09-01T20:12:37.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-08-31T06:13:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-02T00:44:06.000Z", + "fileChanged": "3", + "insertions": "156", + "deletions": "209", + "type": "Commit" + }, + { + "authorName": "Karl Skomski ", + "authorEmail": "karl@skomski.com", + "date": "2011-08-31T12:33:40.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-09-01T21:16:00.000Z", + "fileChanged": "6", + "insertions": "135", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-09-01T00:58:00.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-31T23:11:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-31T22:38:02.000Z", + "fileChanged": "16", + "insertions": "3281", + "deletions": "3009", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-08-31T13:29:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeroen Janssen ", + "authorEmail": "jeroen.janssen@gmail.com", + "date": "2011-08-31T11:03:47.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-31T08:53:01.000Z", + "fileChanged": "215", + "insertions": "77138", + "deletions": "76674", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-08-26T11:00:40.000Z", + "fileChanged": "4", + "insertions": "112", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-30T16:42:54.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-08-30T15:35:16.000Z", + "fileChanged": "1", + "deletions": "29", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "AJ ONeal ", + "authorEmail": "coolaj86@gmail.com", + "date": "2011-08-29T22:21:37.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-30T11:09:47.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-30T09:26:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-30T08:59:38.000Z", + "fileChanged": "1", + "insertions": "43", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-08-28T09:23:17.000Z", + "fileChanged": "10", + "insertions": "128", + "deletions": "849", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-30T07:59:56.000Z", + "fileChanged": "196", + "insertions": "487", + "deletions": "35809", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-29T22:29:35.000Z", + "fileChanged": "74", + "insertions": "2626", + "deletions": "2021", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-29T22:23:13.000Z", + "fileChanged": "20", + "insertions": "1958", + "deletions": "54", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-29T21:01:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Abimanyu Raja ", + "authorEmail": "abimanyuraja@gmail.com", + "date": "2011-08-28T22:06:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2011-08-28T22:51:40.000Z", + "fileChanged": "1", + "insertions": "127", + "deletions": "127", + "type": "Commit" + }, + { + "authorName": "Jann Horn ", + "authorEmail": "jannhorn@googlemail.com", + "date": "2011-08-16T17:12:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "jkummerow@chromium.org ", + "authorEmail": "jkummerow@chromium.org", + "date": "2011-08-29T10:47:00.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Peter Lyons ", + "authorEmail": "pete@peterlyons.com", + "date": "2011-08-12T19:20:24.000Z", + "fileChanged": "1", + "insertions": "52", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Peter Lyons ", + "authorEmail": "pete@peterlyons.com", + "date": "2011-08-01T17:39:15.000Z", + "fileChanged": "2", + "deletions": "8", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-08-27T01:34:09.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-08-26T22:04:47.000Z", + "fileChanged": "3", + "insertions": "57", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-26T23:27:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-26T21:24:18.000Z", + "fileChanged": "4", + "insertions": "53", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-26T20:38:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-26T20:20:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-26T20:16:16.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-26T20:07:04.000Z", + "fileChanged": "44", + "insertions": "731", + "deletions": "402", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-26T17:31:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-25T22:22:43.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-26T16:10:35.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-08-25T16:01:08.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-26T00:39:54.000Z", + "fileChanged": "3", + "insertions": "175", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-25T22:23:17.000Z", + "fileChanged": "3", + "insertions": "142", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-08-15T16:35:48.000Z", + "fileChanged": "1", + "insertions": "40", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-25T00:43:33.000Z", + "fileChanged": "5", + "insertions": "14", + "deletions": "736", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-24T23:23:04.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-24T23:20:08.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-24T22:55:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-24T22:46:55.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-24T22:18:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-24T21:16:35.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-24T20:42:20.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-24T02:11:54.000Z", + "fileChanged": "1", + "insertions": "192", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-24T01:50:55.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "73", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-24T00:42:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-24T00:57:48.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-20T01:47:40.000Z", + "fileChanged": "8", + "insertions": "998", + "deletions": "313", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-23T23:47:02.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-19T23:47:09.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-23T00:34:43.000Z", + "fileChanged": "42", + "insertions": "6505", + "deletions": "109", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-23T16:26:39.000Z", + "fileChanged": "4", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2011-08-12T21:31:17.000Z", + "fileChanged": "1", + "insertions": "51", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-08-24T06:14:56.000Z", + "fileChanged": "1", + "insertions": "66", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-24T05:46:39.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "197", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-24T06:42:23.000Z", + "fileChanged": "113", + "insertions": "341", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-24T02:58:47.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-08-23T17:39:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-23T22:17:13.000Z", + "fileChanged": "35", + "insertions": "870", + "deletions": "979", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-23T22:13:07.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-23T21:24:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-23T21:08:53.000Z", + "fileChanged": "5", + "insertions": "43", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-23T20:56:19.000Z", + "fileChanged": "7", + "insertions": "60", + "deletions": "60", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-23T19:42:49.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Martin ", + "authorEmail": "martine@danga.com", + "date": "2011-08-23T18:04:08.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Evan Martin ", + "authorEmail": "martine@danga.com", + "date": "2011-08-23T17:40:51.000Z", + "fileChanged": "1", + "insertions": "48", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-08-12T18:09:34.000Z", + "fileChanged": "4", + "insertions": "152", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-23T09:31:20.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-23T02:06:42.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-23T00:08:16.000Z", + "fileChanged": "10", + "insertions": "963", + "deletions": "92", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-23T00:07:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-22T22:03:27.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-22T21:51:29.000Z", + "fileChanged": "31", + "insertions": "1228", + "deletions": "729", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2011-08-15T20:51:20.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-08-17T08:06:41.000Z", + "fileChanged": "1", + "insertions": "62", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-22T18:36:38.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-08-20T05:05:08.000Z", + "fileChanged": "113", + "insertions": "1119", + "deletions": "652", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-19T21:03:32.000Z", + "fileChanged": "1579", + "insertions": "458639", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-08-22T15:18:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-20T19:38:31.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Maciej Małecki ", + "authorEmail": "maciej.malecki@notimplemented.org", + "date": "2011-08-19T22:26:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-18T23:59:21.000Z", + "fileChanged": "129", + "insertions": "3261", + "deletions": "1527", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-17T20:38:30.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-17T20:53:13.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-08-17T20:13:56.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-17T20:25:44.000Z" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-17T18:39:20.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-08-14T07:56:41.000Z", + "fileChanged": "2", + "insertions": "103", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-08-14T06:02:14.000Z", + "fileChanged": "26", + "insertions": "159", + "deletions": "146", + "type": "Commit" + }, + { + "authorName": "Antranig Basman ", + "authorEmail": "antranig.basman@colorado.edu", + "date": "2011-06-02T19:45:30.000Z", + "fileChanged": "3", + "insertions": "52", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-16T01:26:48.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-16T01:18:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-16T00:54:47.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2011-08-03T22:06:16.000Z", + "fileChanged": "4", + "insertions": "23", + "deletions": "161", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-15T22:47:16.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-15T20:48:20.000Z", + "fileChanged": "21", + "insertions": "1467", + "deletions": "563", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-15T20:40:17.000Z", + "fileChanged": "3", + "insertions": "172", + "deletions": "172", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-13T23:25:39.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-08-15T15:17:33.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Mickaël Delahaye ", + "authorEmail": "mickael.delahaye@gmail.com", + "date": "2011-08-15T13:09:03.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-15T00:30:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-08-14T14:10:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-08-13T18:17:47.000Z", + "fileChanged": "14", + "insertions": "846", + "deletions": "815", + "type": "Commit" + }, + { + "authorName": "Thomas Shinnick ", + "authorEmail": "tshinnic@gmail.com", + "date": "2011-08-13T21:22:52.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-14T01:15:12.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-13T23:25:39.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Thomas Shinnick ", + "authorEmail": "tshinnic@gmail.com", + "date": "2011-08-13T21:51:31.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-08-13T17:45:38.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Artem Zaytsev ", + "authorEmail": "a.arepo@gmail.com", + "date": "2011-07-30T18:06:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-12T16:57:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-12T16:52:06.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-27T03:08:47.000Z", + "fileChanged": "3", + "insertions": "45", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-27T02:34:28.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-26T21:38:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-26T21:20:29.000Z", + "fileChanged": "4", + "insertions": "800", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Glen Low ", + "authorEmail": "glen.low@pixelglow.com", + "date": "2011-08-11T09:40:55.000Z", + "fileChanged": "4", + "insertions": "149", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-12T14:14:46.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2011-08-09T04:40:10.000Z", + "fileChanged": "11", + "insertions": "595", + "deletions": "499", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-12T13:46:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-08T20:56:26.000Z", + "fileChanged": "1", + "insertions": "70", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-12T13:42:45.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-12T13:32:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-08T20:56:26.000Z", + "fileChanged": "1", + "insertions": "70", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-09T14:26:42.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Arnout Kazemier ", + "authorEmail": "info@3rd-Eden.com", + "date": "2011-08-12T11:05:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-12T09:15:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-12T07:46:39.000Z", + "fileChanged": "4", + "insertions": "34", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-12T08:14:04.000Z", + "fileChanged": "12", + "insertions": "267", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-12T06:59:21.000Z", + "fileChanged": "104", + "insertions": "3991", + "deletions": "2101", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-11T23:46:26.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-11T23:42:14.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-11T23:41:53.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-11T23:10:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-08-11T22:30:56.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-08-11T22:30:56.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-11T21:39:38.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-11T17:44:20.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-08-11T08:13:13.000Z", + "fileChanged": "1", + "insertions": "78", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-11T15:41:30.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-11T13:57:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Christopher Wright ", + "authorEmail": "christopherwright@gmail.com", + "date": "2011-08-11T04:09:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-08-11T01:45:56.000Z", + "fileChanged": "4", + "insertions": "5", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-11T02:00:39.000Z", + "fileChanged": "2", + "insertions": "75", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-11T00:47:43.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-11T00:46:02.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-11T00:14:23.000Z", + "fileChanged": "3", + "insertions": "35", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-10T23:40:16.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-10T22:36:22.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-10T21:59:21.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-10T21:23:26.000Z", + "fileChanged": "17", + "insertions": "566", + "deletions": "360", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-10T21:09:21.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-10T20:33:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-10T20:27:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-10T18:32:32.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-10T18:22:58.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-10T17:56:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-10T17:54:36.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-07-30T14:03:05.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-10T02:30:31.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-10T02:23:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-10T01:05:50.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-10T00:59:26.000Z", + "fileChanged": "3", + "insertions": "51", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-10T00:46:29.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-10T00:43:57.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-09T23:38:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-09T23:06:32.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-08-05T22:22:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-08-05T20:52:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-08-05T22:22:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-08-05T20:52:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-09T21:18:16.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-09T20:56:18.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-09T20:53:56.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-09T19:26:44.000Z", + "fileChanged": "5", + "insertions": "56", + "deletions": "210", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-09T19:25:10.000Z", + "fileChanged": "3", + "insertions": "504", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-09T17:19:48.000Z", + "fileChanged": "2", + "insertions": "102", + "deletions": "99", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-09T02:04:24.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-09T00:50:23.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-09T00:35:26.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-09T00:08:38.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Robert Mustacchi ", + "authorEmail": "rm@joyent.com", + "date": "2011-08-08T20:26:00.000Z", + "fileChanged": "11", + "insertions": "426", + "deletions": "435", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-09T00:01:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-08T23:22:41.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-08T23:14:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-08T22:09:42.000Z", + "fileChanged": "2", + "insertions": "99", + "deletions": "102", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-08T21:15:51.000Z", + "fileChanged": "183", + "insertions": "47322", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-08T21:14:47.000Z", + "fileChanged": "6", + "insertions": "328", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-08T21:12:40.000Z", + "fileChanged": "4", + "insertions": "487", + "deletions": "118", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-08T19:32:34.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-08T19:11:48.000Z", + "fileChanged": "5", + "insertions": "283", + "deletions": "299", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-08T17:25:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-08T15:55:39.000Z", + "fileChanged": "3", + "insertions": "89", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-08T15:37:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-08-07T06:55:44.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2011-08-07T23:14:32.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-08-08T00:36:49.000Z", + "fileChanged": "1", + "insertions": "64", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-07T22:59:08.000Z", + "fileChanged": "2", + "insertions": "133", + "deletions": "133", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-08-05T22:57:31.000Z", + "fileChanged": "3", + "insertions": "17", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-07T22:56:04.000Z", + "fileChanged": "2", + "insertions": "109", + "deletions": "170", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-07T21:54:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-07T21:54:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-07T21:30:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-08-07T18:46:26.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-08-07T18:05:37.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-08-07T17:44:11.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-08-07T17:43:24.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-07T08:24:00.000Z", + "fileChanged": "1", + "insertions": "305", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-08-07T05:11:21.000Z", + "fileChanged": "11", + "insertions": "221", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-08-06T04:23:25.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-08-06T19:20:15.000Z", + "fileChanged": "5", + "insertions": "203", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-07T02:11:39.000Z", + "fileChanged": "203", + "insertions": "35854", + "deletions": "553", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-06T22:02:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Logan Smyth ", + "authorEmail": "loganfsmyth@gmail.com", + "date": "2011-08-03T02:17:16.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-06T10:47:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-06T10:46:41.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-06T10:38:11.000Z", + "fileChanged": "25", + "insertions": "2578", + "deletions": "710", + "type": "Commit" + }, + { + "authorName": "Peter Bright ", + "authorEmail": "drpizza@quiscalusmexicanus.org", + "date": "2011-08-06T04:23:25.000Z", + "fileChanged": "10", + "insertions": "106", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-05T22:08:00.000Z", + "fileChanged": "183", + "deletions": "47322", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-05T22:03:30.000Z", + "fileChanged": "39", + "insertions": "18767", + "deletions": "246", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-05T20:26:55.000Z", + "fileChanged": "4", + "insertions": "215", + "deletions": "216", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-05T00:42:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-05T00:40:43.000Z", + "fileChanged": "5", + "insertions": "246", + "deletions": "245", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-05T00:32:45.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-05T00:14:20.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-05T00:13:37.000Z", + "fileChanged": "4", + "insertions": "217", + "deletions": "206", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-04T23:40:07.000Z", + "fileChanged": "5", + "insertions": "75", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-04T19:36:24.000Z", + "fileChanged": "6", + "insertions": "607", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-04T06:36:27.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-04T02:57:04.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-04T00:23:38.000Z", + "fileChanged": "16", + "insertions": "245", + "deletions": "1174", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-04T00:01:30.000Z", + "fileChanged": "4", + "insertions": "150", + "deletions": "348", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-06T09:58:44.000Z", + "fileChanged": "7", + "insertions": "608", + "deletions": "300", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-08-06T06:25:40.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Tony Huang ", + "authorEmail": "cnwzhjs@gmail.com", + "date": "2011-08-04T03:39:19.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-05T08:03:38.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-05T07:36:39.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-05T15:16:43.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-08-05T14:37:16.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-05T07:15:04.000Z", + "fileChanged": "4", + "insertions": "163", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-05T02:29:16.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-05T02:27:18.000Z", + "fileChanged": "1", + "insertions": "71", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-04T19:24:38.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-04T19:18:09.000Z", + "fileChanged": "104", + "insertions": "4440", + "deletions": "2153", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-04T19:04:54.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-04T16:40:41.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-02T21:18:18.000Z", + "fileChanged": "4", + "insertions": "27", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-04T14:43:11.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-03T23:35:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-03T14:50:47.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-03T14:05:49.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-02T23:45:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-02T22:27:16.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-02T19:28:31.000Z", + "fileChanged": "4", + "insertions": "15", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2011-08-02T04:22:30.000Z", + "fileChanged": "9", + "insertions": "79", + "deletions": "76", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-02T16:34:11.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-02T13:28:19.000Z", + "fileChanged": "9", + "insertions": "2", + "deletions": "532", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-02T08:08:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-02T05:18:17.000Z", + "fileChanged": "4", + "insertions": "50", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-02T07:10:53.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "181", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-02T05:51:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-02T05:25:57.000Z", + "fileChanged": "2", + "deletions": "893", + "insertions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-02T04:52:03.000Z" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-08-02T03:14:02.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-02T03:26:26.000Z", + "fileChanged": "8", + "insertions": "185", + "deletions": "89", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-08-02T01:21:38.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-08-02T01:19:57.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-02T00:40:46.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-02T00:18:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-02T00:06:03.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-01T01:21:28.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-01T23:16:15.000Z", + "fileChanged": "4", + "insertions": "34", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-01T23:05:07.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-01T23:02:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-01T22:40:44.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-07-28T05:56:41.000Z", + "fileChanged": "11", + "insertions": "125", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-01T21:49:58.000Z", + "fileChanged": "3", + "insertions": "84", + "deletions": "79", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-08-01T20:43:38.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-01T21:48:19.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-01T20:25:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-01T18:58:56.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-01T17:28:32.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-01T17:19:41.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-08-01T16:16:27.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-01T01:19:37.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-01T01:13:05.000Z", + "fileChanged": "17", + "insertions": "1158", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-08-01T00:51:41.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-31T23:50:45.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-31T23:24:29.000Z", + "fileChanged": "4", + "insertions": "138", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-31T23:00:47.000Z", + "fileChanged": "1", + "insertions": "154", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-31T22:58:10.000Z", + "fileChanged": "7", + "insertions": "370", + "deletions": "345", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-30T13:08:59.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2011-07-30T01:28:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-29T22:22:21.000Z", + "fileChanged": "6", + "insertions": "431", + "deletions": "119", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-29T15:26:45.000Z", + "fileChanged": "3", + "insertions": "85", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-07-28T15:52:04.000Z", + "fileChanged": "8", + "insertions": "315", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-29T22:43:56.000Z", + "fileChanged": "9", + "insertions": "260", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Robert Mustacchi ", + "authorEmail": "rm@joyent.com", + "date": "2011-07-29T17:03:05.000Z", + "fileChanged": "6", + "insertions": "31", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-07-29T18:56:05.000Z", + "fileChanged": "10", + "insertions": "4", + "deletions": "116", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-29T18:03:58.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-29T15:18:35.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-29T14:49:48.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-29T14:49:48.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-07-28T13:02:04.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-28T03:03:02.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-28T02:54:31.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-28T02:30:32.000Z", + "fileChanged": "3", + "insertions": "95", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-28T00:33:04.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-27T23:36:03.000Z", + "fileChanged": "1", + "insertions": "50", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-25T21:34:15.000Z", + "fileChanged": "2", + "deletions": "17", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-07-27T20:58:39.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-27T18:10:11.000Z", + "fileChanged": "3", + "insertions": "39", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Aku Kotkavuo ", + "authorEmail": "aku@hibana.net", + "date": "2011-07-27T03:16:50.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-27T02:13:49.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-07-27T01:37:21.000Z", + "fileChanged": "10", + "insertions": "202", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-27T01:54:00.000Z", + "fileChanged": "20", + "insertions": "620", + "deletions": "80", + "type": "Commit" + }, + { + "authorName": "SAWADA Tadashi ", + "authorEmail": "cesare@mayverse.jp", + "date": "2011-06-19T07:54:34.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-26T20:05:08.000Z", + "fileChanged": "4", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-26T20:05:08.000Z", + "fileChanged": "4", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-07-26T15:19:05.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-25T22:39:57.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-25T22:21:52.000Z", + "fileChanged": "4", + "insertions": "2318", + "deletions": "406", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2011-07-25T22:13:24.000Z", + "fileChanged": "1", + "insertions": "74", + "deletions": "76", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2011-07-25T22:15:15.000Z", + "fileChanged": "2", + "insertions": "406", + "deletions": "664", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-07-25T07:01:44.000Z", + "fileChanged": "3", + "insertions": "55", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-25T21:54:44.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-24T06:56:23.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-25T13:37:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Alexander Uvarov ", + "authorEmail": "alexander.uvarov@gmail.com", + "date": "2011-07-23T07:00:43.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Alexander Uvarov ", + "authorEmail": "alexander.uvarov@gmail.com", + "date": "2011-07-21T08:20:01.000Z", + "fileChanged": "3", + "insertions": "83", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-07-25T01:04:45.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-07-25T00:18:33.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Stefan Bühler ", + "authorEmail": "stbuehler@web.de", + "date": "2011-05-08T12:17:21.000Z", + "fileChanged": "2", + "insertions": "196", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-23T21:16:48.000Z", + "fileChanged": "3", + "insertions": "19", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-21T17:53:11.000Z", + "fileChanged": "3", + "insertions": "122", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Daniel Pihlström ", + "authorEmail": "sciolist.se@gmail.com", + "date": "2011-02-11T02:35:39.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Jeroen Janssen ", + "authorEmail": "jeroen.janssen@gmail.com", + "date": "2011-07-22T19:44:15.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "SAWADA Tadashi ", + "authorEmail": "cesare@mayverse.jp", + "date": "2011-06-19T07:54:34.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Vicente Jimenez Aguilar ", + "authorEmail": "googuy@gmail.com", + "date": "2010-11-04T17:48:35.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-23T05:29:13.000Z", + "fileChanged": "3", + "insertions": "2", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-07-22T14:28:56.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-22T18:51:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-07-22T14:28:56.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-22T10:55:26.000Z", + "fileChanged": "6", + "insertions": "41", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-07-22T10:16:17.000Z", + "fileChanged": "6", + "insertions": "57", + "deletions": "25", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-22T10:10:38.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-22T09:11:02.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-22T08:20:13.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-22T05:20:54.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-22T05:20:37.000Z", + "fileChanged": "111", + "insertions": "4227", + "deletions": "920", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-21T23:23:50.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-21T22:42:01.000Z", + "fileChanged": "2", + "insertions": "86", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-21T22:48:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-21T22:47:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-21T21:00:47.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-21T22:42:08.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-21T21:19:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-21T20:39:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-21T19:25:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-21T19:22:56.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-21T19:21:06.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-21T15:20:47.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-07-21T13:41:28.000Z", + "fileChanged": "6", + "insertions": "155", + "deletions": "78", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-07-21T13:26:10.000Z", + "fileChanged": "3", + "insertions": "84", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2011-07-21T05:42:10.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2011-07-21T05:42:10.000Z", + "fileChanged": "2", + "insertions": "67", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Yoshihiro Kikuchi ", + "authorEmail": "yknetg@gmail.com", + "date": "2011-07-20T02:17:58.000Z", + "fileChanged": "1", + "insertions": "52", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Yoshihiro Kikuchi ", + "authorEmail": "yknetg@gmail.com", + "date": "2011-07-14T06:14:44.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-21T02:55:12.000Z", + "fileChanged": "16", + "insertions": "289", + "deletions": "136", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-21T01:42:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-20T22:19:31.000Z", + "fileChanged": "14", + "insertions": "635", + "deletions": "455", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-20T22:36:54.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-19T20:49:42.000Z", + "fileChanged": "3", + "insertions": "53", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-07-21T00:39:23.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-20T20:15:41.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-20T19:48:40.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-20T18:06:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-20T16:06:16.000Z", + "fileChanged": "13", + "insertions": "84", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-20T07:37:26.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-19T17:46:40.000Z", + "fileChanged": "7", + "insertions": "65", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-19T23:17:43.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-19T17:27:48.000Z", + "fileChanged": "1", + "deletions": "16", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-07-19T18:56:44.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-07-19T16:55:01.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Reid Burke ", + "authorEmail": "me@reidburke.com", + "date": "2011-07-08T04:04:27.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-19T09:50:33.000Z", + "fileChanged": "14", + "insertions": "3699", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-19T09:47:15.000Z", + "fileChanged": "14", + "insertions": "115", + "deletions": "3209", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-19T09:18:10.000Z", + "fileChanged": "4", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-19T09:04:34.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-19T08:46:38.000Z", + "fileChanged": "10", + "insertions": "10", + "deletions": "153", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-19T08:23:50.000Z", + "fileChanged": "3", + "insertions": "32", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-18T23:26:37.000Z", + "fileChanged": "7", + "insertions": "775", + "deletions": "309", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-18T20:45:11.000Z", + "fileChanged": "4", + "insertions": "20", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-18T11:39:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-18T11:36:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-18T11:30:40.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-18T11:22:16.000Z", + "fileChanged": "7", + "insertions": "149", + "deletions": "95", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-18T10:07:26.000Z", + "fileChanged": "3", + "insertions": "233", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-18T09:32:32.000Z", + "fileChanged": "5", + "insertions": "458", + "deletions": "327", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-18T09:32:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-07-15T22:26:15.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Pierre-Alexandre St-Jean ", + "authorEmail": "pierrealexandre.stjean@gmail.com", + "date": "2011-07-15T14:15:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-16T14:00:06.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-16T12:51:45.000Z", + "fileChanged": "1", + "deletions": "9", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Steve Engledow ", + "authorEmail": "steve.engledow@proxama.com", + "date": "2011-07-05T11:07:08.000Z", + "fileChanged": "3", + "insertions": "60", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-16T05:12:00.000Z", + "fileChanged": "4", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Devon Govett ", + "authorEmail": "devongovett@gmail.com", + "date": "2011-07-15T02:20:30.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-07-16T00:46:56.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-16T00:47:37.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-16T00:47:20.000Z", + "fileChanged": "165", + "insertions": "3693", + "deletions": "4290", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-16T00:45:43.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-15T22:06:10.000Z", + "fileChanged": "3", + "insertions": "69", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "vegorov@chromium.org ", + "authorEmail": "vegorov@chromium.org", + "date": "2011-07-06T12:36:05.000Z", + "fileChanged": "4", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "vegorov@chromium.org ", + "authorEmail": "vegorov@chromium.org", + "date": "2011-07-06T12:25:25.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-07-15T22:31:47.000Z", + "fileChanged": "4", + "insertions": "21", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-07-15T21:05:01.000Z", + "fileChanged": "8", + "insertions": "43", + "deletions": "181", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-07-15T22:10:27.000Z", + "fileChanged": "1", + "deletions": "17", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "AJ ONeal ", + "authorEmail": "coolaj86@gmail.com", + "date": "2011-07-15T20:11:14.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-15T20:52:36.000Z", + "fileChanged": "1", + "insertions": "157", + "deletions": "153", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-15T20:20:24.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-15T18:15:02.000Z", + "fileChanged": "17", + "insertions": "553", + "deletions": "638", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-15T18:05:12.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-15T17:46:11.000Z", + "fileChanged": "10", + "insertions": "1", + "deletions": "83", + "type": "Commit" + }, + { + "authorName": "Wojciech Wnętrzak ", + "authorEmail": "w.wnetrzak@gmail.com", + "date": "2011-07-14T11:17:40.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Wojciech Wnętrzak ", + "authorEmail": "w.wnetrzak@gmail.com", + "date": "2011-07-14T11:17:40.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Shigeki Ohtsu ", + "authorEmail": "ohtsu@iij.ad.jp", + "date": "2011-07-15T03:38:45.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-13T00:00:33.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-14T23:56:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-14T22:56:15.000Z", + "fileChanged": "6", + "insertions": "43", + "deletions": "18", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-14T22:52:08.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-14T22:34:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-14T22:28:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@gmail.com", + "date": "2011-07-14T18:48:19.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-14T22:17:35.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-14T21:49:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-14T21:28:52.000Z", + "fileChanged": "48", + "insertions": "3096", + "deletions": "2268", + "type": "Commit" + }, + { + "authorName": "Elijah Insua ", + "authorEmail": "tmpvar@gmail.com", + "date": "2011-07-11T05:35:25.000Z", + "fileChanged": "3", + "insertions": "38", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-07-14T20:55:51.000Z", + "fileChanged": "7", + "insertions": "33", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-14T20:59:37.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-14T21:18:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-14T20:18:28.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-14T16:58:43.000Z", + "fileChanged": "2", + "insertions": "90", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Stefan Rusu ", + "authorEmail": "saltwaterc@gmail.com", + "date": "2011-07-14T12:33:04.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Stefan Rusu ", + "authorEmail": "saltwaterc@gmail.com", + "date": "2011-07-14T09:52:43.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Kip Gebhardt ", + "authorEmail": "kip.gebhardt@voxer.com", + "date": "2011-06-28T19:50:42.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-08T15:57:57.000Z", + "fileChanged": "2", + "insertions": "92", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-06-21T15:53:31.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-10T09:47:41.000Z", + "fileChanged": "2", + "insertions": "45", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-13T15:31:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-13T15:10:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "AJ ONeal ", + "authorEmail": "coolaj86@gmail.com", + "date": "2011-05-19T19:49:29.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-09T17:04:56.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-12T22:26:45.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-12T20:33:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-08T22:03:48.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-11T19:24:49.000Z", + "fileChanged": "1", + "insertions": "0", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-11T15:48:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-11T15:29:25.000Z", + "fileChanged": "22", + "insertions": "169", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-11T12:16:00.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-09T07:59:35.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-06-11T13:09:40.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-09T01:22:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-06-29T18:12:58.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Igor Zinkovsky ", + "authorEmail": "igorzi@microsoft.com", + "date": "2011-07-07T20:54:30.000Z", + "fileChanged": "6", + "insertions": "538", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-03T06:20:25.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-04T19:10:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-09T00:08:52.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-08T23:40:11.000Z", + "fileChanged": "785", + "insertions": "131829", + "deletions": "110038", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-06T21:02:55.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-08T21:14:40.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-04-02T00:46:18.000Z", + "fileChanged": "1", + "insertions": "45", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-08T19:22:44.000Z", + "fileChanged": "1", + "insertions": "123", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-08T17:40:35.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-07T18:23:27.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-07T23:22:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-07T00:13:17.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-06T20:34:04.000Z", + "fileChanged": "3", + "insertions": "64", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-05T19:54:06.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-05T19:54:06.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-07T21:39:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-07T20:52:04.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-07T18:46:02.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-07T18:32:12.000Z", + "fileChanged": "158", + "insertions": "96280", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-07T15:56:48.000Z", + "fileChanged": "186", + "insertions": "131", + "deletions": "96371", + "type": "Commit" + }, + { + "authorName": "avz ", + "authorEmail": "a.arepo@gmail.com", + "date": "2011-06-26T07:30:23.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Joe Shaw ", + "authorEmail": "joeshaw@litl.com", + "date": "2011-06-27T17:42:11.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-06T23:52:14.000Z", + "fileChanged": "4", + "insertions": "81", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-07-06T20:12:37.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-07-06T20:12:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeremy Selier ", + "authorEmail": "jeremy@jolicloud.com", + "date": "2011-06-13T12:43:16.000Z", + "fileChanged": "5", + "insertions": "357", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-06T19:13:45.000Z", + "fileChanged": "12", + "insertions": "206", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-06T05:13:55.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-06T00:41:24.000Z", + "fileChanged": "4", + "insertions": "66", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-06T01:31:33.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-07-06T00:50:50.000Z", + "fileChanged": "2", + "insertions": "60", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Yoshihiro Kikuchi ", + "authorEmail": "yknetg@gmail.com", + "date": "2011-07-05T08:32:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-05T23:49:13.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-05T23:40:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-05T22:42:32.000Z", + "fileChanged": "5", + "insertions": "5", + "deletions": "166", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-05T21:40:13.000Z", + "fileChanged": "775", + "insertions": "108612", + "deletions": "129542", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-05T20:34:15.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-06-23T20:44:10.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bert@piscisaureus2.(none)", + "date": "2011-07-05T19:16:13.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-05T19:07:30.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-05T18:42:20.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-05T18:41:56.000Z", + "fileChanged": "121", + "insertions": "4575", + "deletions": "3880", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-05T18:26:21.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-05T17:52:22.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-05T17:31:37.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-05T17:08:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Alex Xu ", + "authorEmail": "alex_y_xu@yahoo.ca", + "date": "2011-04-02T14:43:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Alex Xu ", + "authorEmail": "alex_y_xu@yahoo.ca", + "date": "2011-04-02T14:43:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-07-05T00:32:51.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "avz ", + "authorEmail": "a.arepo@gmail.com", + "date": "2011-06-25T09:42:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-06-25T12:53:28.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-07-04T23:53:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-06-29T19:14:02.000Z", + "fileChanged": "1", + "insertions": "142", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-06-29T18:24:16.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-04T23:06:39.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-07-04T23:31:00.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-06-29T19:14:02.000Z", + "fileChanged": "1", + "insertions": "142", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-06-29T18:24:16.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-04T23:06:39.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-04T22:56:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-07-04T22:17:20.000Z", + "fileChanged": "9", + "insertions": "1415", + "deletions": "276", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-07-04T22:02:46.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-07-04T22:03:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Adam Luikart ", + "authorEmail": "me@adamluikart.com", + "date": "2011-06-25T22:37:57.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-04T19:10:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Niklas Fiekas ", + "authorEmail": "niklas.fiekas@googlemail.com", + "date": "2010-12-24T23:40:48.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-04T18:25:31.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Joe Shaw ", + "authorEmail": "joeshaw@litl.com", + "date": "2011-06-27T17:25:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jörn Horstmann ", + "authorEmail": "git@jhorstmann.net", + "date": "2011-05-11T09:33:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-04T16:21:38.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Mariano Iglesias ", + "authorEmail": "mariano@cricava.com", + "date": "2011-03-11T10:09:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Joe Shaw ", + "authorEmail": "joeshaw@litl.com", + "date": "2011-06-27T17:25:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jörn Horstmann ", + "authorEmail": "git@jhorstmann.net", + "date": "2011-05-11T09:33:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Mariano Iglesias ", + "authorEmail": "mariano@cricava.com", + "date": "2011-03-11T10:09:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brett Kiefer ", + "authorEmail": "kiefer@gmail.com", + "date": "2011-06-15T15:07:23.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-04T15:34:58.000Z", + "fileChanged": "3", + "insertions": "34", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-04T12:29:59.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-04T15:02:58.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-07-04T14:26:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-03T07:46:24.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-03T06:20:25.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-03T07:46:24.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-07-03T07:56:38.000Z", + "fileChanged": "1", + "deletions": "15", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-03T18:05:03.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-03T17:39:45.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-02T07:18:36.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "8", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-02T03:32:41.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-02T02:30:15.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-07-01T19:01:12.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-01T22:49:39.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-01T22:38:53.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-01T17:59:42.000Z", + "fileChanged": "4", + "insertions": "18", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Robert Mustacchi ", + "authorEmail": "rm@joyent.com", + "date": "2011-07-01T16:48:34.000Z", + "fileChanged": "1", + "insertions": "147", + "deletions": "85", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-01T16:38:47.000Z", + "fileChanged": "21", + "insertions": "16410", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-07-01T16:30:44.000Z", + "fileChanged": "48", + "insertions": "352", + "deletions": "16287", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-06-30T23:37:30.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Yoshihiro KIKUCHI ", + "authorEmail": "yknetg@gmail.com", + "date": "2011-06-30T13:20:23.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-30T21:53:22.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-06-29T18:12:58.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-29T17:35:17.000Z", + "fileChanged": "19", + "insertions": "590", + "deletions": "178", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-06-29T16:59:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-29T16:04:55.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-29T15:26:51.000Z", + "fileChanged": "763", + "insertions": "126708", + "deletions": "109300", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-29T15:16:15.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-29T13:24:55.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "128", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-06-28T21:32:01.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-29T13:14:55.000Z", + "fileChanged": "4", + "insertions": "457", + "deletions": "226", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-29T13:06:40.000Z", + "fileChanged": "4", + "insertions": "271", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-29T12:50:03.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-29T12:44:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-29T11:24:02.000Z", + "fileChanged": "4", + "insertions": "41", + "deletions": "7", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-29T10:49:37.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-29T10:49:17.000Z", + "fileChanged": "24", + "insertions": "307", + "deletions": "111", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-29T00:44:26.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-06-28T20:32:35.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-28T11:56:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Henry Rawas ", + "authorEmail": "henryr@schakra.com", + "date": "2011-06-24T19:32:09.000Z", + "fileChanged": "5", + "insertions": "72", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-22T12:06:26.000Z", + "fileChanged": "140", + "insertions": "6440", + "deletions": "67910", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-06-21T14:53:02.000Z", + "fileChanged": "4", + "insertions": "57", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-06-25T13:30:17.000Z", + "fileChanged": "1", + "insertions": "51", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-06-22T22:29:03.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-20T13:51:03.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-20T12:48:00.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-06-17T16:11:43.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-06-17T20:40:29.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-20T10:50:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-20T10:48:38.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sam Shull ", + "authorEmail": "sshull@squaremouth.com", + "date": "2011-06-19T06:06:33.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-17T17:52:31.000Z", + "fileChanged": "291", + "insertions": "82080", + "deletions": "23846", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-17T16:09:15.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-17T15:10:12.000Z", + "fileChanged": "1", + "insertions": "71", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-17T12:27:02.000Z", + "fileChanged": "1", + "insertions": "55", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-17T12:01:27.000Z", + "fileChanged": "5", + "deletions": "103", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-17T11:51:40.000Z", + "fileChanged": "5", + "insertions": "1241", + "deletions": "1207", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-17T11:36:16.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-16T19:11:05.000Z", + "fileChanged": "1", + "insertions": "325", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-16T14:08:17.000Z", + "fileChanged": "2", + "insertions": "54", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-16T14:00:29.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-16T13:49:44.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-16T13:33:47.000Z", + "fileChanged": "3", + "insertions": "90", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-16T13:12:57.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-16T11:16:54.000Z", + "fileChanged": "2", + "insertions": "111", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Mark Cavage ", + "authorEmail": "mark.cavage@joyent.com", + "date": "2011-06-15T17:47:25.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "10", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-15T12:43:37.000Z" + }, + { + "authorName": "Mathias Buus ", + "authorEmail": "m@ge.tt", + "date": "2011-06-13T22:42:06.000Z", + "fileChanged": "3", + "insertions": "2", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-14T16:02:58.000Z", + "fileChanged": "3", + "insertions": "191", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-14T11:18:32.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-14T11:02:15.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Mark Cavage ", + "authorEmail": "mark.cavage@joyent.com", + "date": "2011-06-09T01:20:17.000Z", + "fileChanged": "5", + "insertions": "98", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-14T10:46:10.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-06-12T17:36:05.000Z", + "fileChanged": "10", + "insertions": "117", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Trevor Burnham ", + "authorEmail": "trevorburnham@gmail.com", + "date": "2011-05-01T18:03:08.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-06-12T18:53:04.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-11T06:51:48.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-10T16:25:06.000Z", + "fileChanged": "1", + "insertions": "97", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-09T13:31:51.000Z", + "fileChanged": "4", + "insertions": "165", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-09T13:14:58.000Z", + "fileChanged": "26", + "insertions": "326", + "deletions": "312", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-06-08T01:46:29.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-06-08T02:41:28.000Z", + "fileChanged": "8", + "insertions": "63", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-06-08T02:01:07.000Z", + "fileChanged": "3", + "deletions": "211", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-06-08T02:36:31.000Z", + "fileChanged": "4", + "deletions": "271", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-06-08T02:35:50.000Z", + "fileChanged": "3", + "insertions": "49", + "deletions": "55", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-06-08T01:57:15.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-07T16:37:27.000Z", + "fileChanged": "35", + "insertions": "1953", + "deletions": "1109", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-06-04T17:41:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-06-04T17:38:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Dave Pacheco ", + "authorEmail": "dap@joyent.com", + "date": "2011-06-04T14:04:38.000Z", + "fileChanged": "4", + "insertions": "136", + "deletions": "18", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-03T14:37:56.000Z" + }, + { + "authorName": "Siddharth Mahendraker ", + "authorEmail": "siddharth_mahen@hotmail.com", + "date": "2011-06-02T20:08:18.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-03T12:38:55.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-03T12:12:14.000Z", + "fileChanged": "6", + "insertions": "238", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-03T11:19:06.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2011-06-03T06:35:11.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-06-03T06:14:35.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fuji, Goro ", + "authorEmail": "gfuji@cpan.org", + "date": "2011-05-28T17:04:36.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-28T20:44:03.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-28T20:21:03.000Z", + "fileChanged": "3", + "insertions": "68", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Ryan Petrello ", + "authorEmail": "lists@ryanpetrello.com", + "date": "2011-05-20T04:50:35.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-25T17:16:36.000Z", + "fileChanged": "4", + "insertions": "282", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-05-23T11:10:00.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@gmail.com", + "date": "2011-05-25T04:26:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-24T20:43:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-05-14T10:24:48.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-05-23T09:02:53.000Z", + "fileChanged": "2", + "insertions": "59", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@gmail.com", + "date": "2011-05-24T05:40:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-24T00:38:55.000Z", + "fileChanged": "1", + "insertions": "662", + "deletions": "662", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-05-23T23:42:22.000Z", + "fileChanged": "6", + "insertions": "91", + "deletions": "100", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-23T22:38:54.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-23T22:25:21.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-22T20:05:48.000Z", + "fileChanged": "33", + "insertions": "1510", + "deletions": "882", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-22T20:02:06.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-21T07:10:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-21T02:40:06.000Z", + "fileChanged": "4", + "insertions": "46", + "deletions": "6", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-21T02:25:30.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-21T02:24:37.000Z", + "fileChanged": "4", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-20T22:39:48.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Mark Cavage ", + "authorEmail": "mark.cavage@joyent.com", + "date": "2011-05-20T21:38:49.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-20T17:27:39.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-20T17:08:08.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@gmail.com", + "date": "2011-05-19T22:09:10.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Robert Mustacchi ", + "authorEmail": "rm@joyent.com", + "date": "2011-05-20T02:51:30.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Robert Mustacchi ", + "authorEmail": "rm@joyent.com", + "date": "2011-05-20T01:32:05.000Z", + "fileChanged": "4", + "insertions": "199", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "David Trejo ", + "authorEmail": "david.daniel.trejo@gmail.com", + "date": "2011-05-19T23:50:12.000Z", + "fileChanged": "2", + "insertions": "141", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-20T00:50:13.000Z", + "fileChanged": "24", + "insertions": "873", + "deletions": "523", + "type": "Commit" + }, + { + "authorName": "Alexandre Marangone ", + "authorEmail": "a.marangone@gmail.com", + "date": "2011-05-19T19:20:08.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Alexandre Marangone ", + "authorEmail": "a.marangone@gmail.com", + "date": "2011-05-19T19:15:12.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-05-19T19:42:13.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-19T19:41:17.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-19T19:13:48.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-19T17:37:51.000Z", + "fileChanged": "24", + "insertions": "523", + "deletions": "873", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-19T17:34:42.000Z" + }, + { + "authorName": "David Trejo ", + "authorEmail": "david.daniel.trejo@gmail.com", + "date": "2011-05-19T01:39:06.000Z", + "fileChanged": "1", + "insertions": "133", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "David Trejo ", + "authorEmail": "david.daniel.trejo@gmail.com", + "date": "2011-05-19T01:39:06.000Z", + "fileChanged": "1", + "insertions": "133", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-17T21:55:26.000Z", + "fileChanged": "1", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-17T20:22:34.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-17T17:51:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-17T02:29:02.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-16T22:00:33.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-05-16T11:56:40.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-01T02:27:28.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-05-12T04:43:24.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2011-05-16T01:25:11.000Z", + "fileChanged": "8", + "insertions": "640", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-05-12T06:18:21.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-05-12T04:49:26.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-05-14T14:06:32.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-05-14T13:58:41.000Z", + "fileChanged": "5", + "insertions": "166", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-05-14T19:17:13.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-13T14:09:28.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-13T14:06:20.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-13T13:59:33.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-13T02:16:40.000Z", + "fileChanged": "113", + "insertions": "64026", + "deletions": "19748", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-11T20:40:42.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-11T20:32:40.000Z", + "fileChanged": "5", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-11T19:31:35.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-11T07:41:16.000Z", + "fileChanged": "9", + "insertions": "238", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-05-10T20:42:49.000Z", + "fileChanged": "2", + "insertions": "64", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-09T17:49:20.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trevor Burnham ", + "authorEmail": "trevorburnham@gmail.com", + "date": "2011-05-01T18:03:08.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-05-08T03:38:32.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-07T19:30:53.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Marcel Laverdet ", + "authorEmail": "marcel@laverdet.com", + "date": "2011-05-03T21:51:15.000Z", + "fileChanged": "2", + "insertions": "38", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-06T23:05:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-06T23:48:44.000Z", + "fileChanged": "1", + "insertions": "82", + "deletions": "93", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-05-03T15:51:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-03T21:56:04.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Håvard Stranden ", + "authorEmail": "havard.stranden@gmail.com", + "date": "2011-01-19T01:00:38.000Z", + "fileChanged": "4", + "insertions": "607", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-06T20:42:55.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Konstantin Käfer ", + "authorEmail": "github@kkaefer.com", + "date": "2010-11-30T11:18:02.000Z", + "fileChanged": "4", + "insertions": "73", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-05T23:52:05.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-05T22:40:45.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-05T04:41:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-05-02T19:13:06.000Z", + "fileChanged": "4", + "insertions": "25", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Robert Mustacchi ", + "authorEmail": "rm@joyent.com", + "date": "2011-05-01T18:38:10.000Z", + "fileChanged": "6", + "insertions": "1043", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-05-01T14:34:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "18", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-30T18:38:55.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-30T18:38:25.000Z", + "fileChanged": "4", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-04-28T06:38:28.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-04-28T07:36:04.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-04-27T18:10:10.000Z", + "fileChanged": "1", + "insertions": "43", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-27T15:49:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-04-27T03:02:54.000Z", + "fileChanged": "3", + "insertions": "23", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-04-26T03:24:51.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-04-26T16:48:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Mark Cavage ", + "authorEmail": "mark.cavage@joyent.com", + "date": "2011-04-25T23:04:07.000Z", + "fileChanged": "4", + "insertions": "135", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "George Miroshnykov ", + "authorEmail": "george.miroshnykov@gmail.com", + "date": "2011-04-21T11:43:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-04-25T19:22:18.000Z", + "fileChanged": "7", + "insertions": "125", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-04-23T02:31:14.000Z", + "fileChanged": "1", + "insertions": "100", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-23T02:04:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-23T00:50:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-23T00:49:56.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-23T00:06:02.000Z", + "fileChanged": "5", + "insertions": "26", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-22T23:38:27.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-22T23:01:34.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Robert Mustacchi ", + "authorEmail": "rm@joyent.com", + "date": "2011-04-22T02:39:16.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Tim Baumann ", + "authorEmail": "tim@timbaumann.info", + "date": "2011-03-30T19:05:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Wade Simmons ", + "authorEmail": "wade@wades.im", + "date": "2011-04-13T23:54:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-04-21T19:17:21.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Nebu ", + "authorEmail": "nebu@nebupookins.net", + "date": "2011-04-20T16:04:42.000Z", + "fileChanged": "1", + "insertions": "61", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-04-02T00:46:18.000Z", + "fileChanged": "1", + "insertions": "45", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-03-29T23:34:05.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-03-29T22:31:41.000Z", + "fileChanged": "3", + "insertions": "101", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-04-20T22:44:34.000Z", + "fileChanged": "2", + "insertions": "171", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2011-04-14T03:53:39.000Z", + "fileChanged": "6", + "insertions": "324", + "deletions": "4", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-19T01:58:16.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-18T23:52:53.000Z", + "fileChanged": "4", + "insertions": "58", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-16T20:55:03.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-15T07:12:19.000Z", + "fileChanged": "1", + "insertions": "60", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-15T06:33:43.000Z", + "fileChanged": "4", + "insertions": "43", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-14T22:11:35.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-04-14T16:54:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-04-14T20:45:32.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-04-14T18:33:54.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-14T07:01:23.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-14T05:03:48.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-14T04:20:05.000Z", + "fileChanged": "5", + "insertions": "39", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-13T20:54:47.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-14T01:37:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Theo Schlossnagle ", + "authorEmail": "jesus@omniti.com", + "date": "2011-04-06T00:38:23.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Theo Schlossnagle ", + "authorEmail": "jesus@omniti.com", + "date": "2011-04-05T03:27:20.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Theo Schlossnagle ", + "authorEmail": "jesus@omniti.com", + "date": "2011-04-02T04:53:07.000Z", + "fileChanged": "5", + "insertions": "94", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-14T01:11:21.000Z" + }, + { + "authorName": "Theo Schlossnagle ", + "authorEmail": "jesus@omniti.com", + "date": "2011-04-02T04:53:07.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Scott McWhirter ", + "authorEmail": "scott.mcwhirter@joyent.com", + "date": "2011-03-27T10:14:34.000Z", + "fileChanged": "3", + "insertions": "150", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-14T00:30:12.000Z", + "fileChanged": "4", + "insertions": "13", + "deletions": "161", + "type": "Commit" + }, + { + "authorName": "Scott McWhirter ", + "authorEmail": "scott.mcwhirter@joyent.com", + "date": "2011-03-27T10:14:34.000Z", + "fileChanged": "3", + "insertions": "90", + "deletions": "49", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-13T19:49:11.000Z", + "fileChanged": "2", + "insertions": "153", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2011-04-13T16:19:15.000Z", + "fileChanged": "3", + "insertions": "40", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-04-13T16:17:18.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-04-05T21:37:40.000Z", + "fileChanged": "3", + "insertions": "19", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-13T08:26:57.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Nick Campbell ", + "authorEmail": "nicholas.j.campbell@gmail.com", + "date": "2011-04-10T05:56:26.000Z", + "fileChanged": "3", + "insertions": "57", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Jakub Lekstan ", + "authorEmail": "jakub.lekstan@dreamlab.pl", + "date": "2011-03-31T14:55:26.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-12T22:20:58.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Abe Fettig ", + "authorEmail": "abe@fettig.net", + "date": "2011-03-31T21:02:14.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-04-07T14:57:33.000Z", + "fileChanged": "3", + "insertions": "50", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-12T00:30:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-03-30T13:17:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-03-30T13:06:41.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Scott McWhirter ", + "authorEmail": "scott.mcwhirter@joyent.com", + "date": "2011-03-27T11:31:55.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Scott McWhirter ", + "authorEmail": "scott.mcwhirter@joyent.com", + "date": "2011-03-27T10:14:34.000Z", + "fileChanged": "3", + "insertions": "110", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-11T23:48:18.000Z", + "fileChanged": "2", + "insertions": "55", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Weaver ", + "authorEmail": "ben@orangesoda.net", + "date": "2011-03-29T18:08:39.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "20", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-11T23:08:10.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-11T23:07:54.000Z", + "fileChanged": "19", + "insertions": "586", + "deletions": "420", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-11T22:33:24.000Z", + "fileChanged": "3", + "insertions": "46", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-04T06:42:56.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-03T08:09:00.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "George Stagas ", + "authorEmail": "gstagas@gmail.com", + "date": "2011-03-16T07:53:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "George Stagas ", + "authorEmail": "gstagas@gmail.com", + "date": "2011-03-16T07:44:05.000Z", + "fileChanged": "5", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-02T05:18:23.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-02T02:06:41.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-02T01:00:43.000Z", + "fileChanged": "4", + "insertions": "26", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-04-01T19:25:21.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-23T22:46:35.000Z", + "fileChanged": "3", + "insertions": "164", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-03-29T21:54:49.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-03-29T21:41:23.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-01T19:38:42.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-01T19:36:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-01T02:27:28.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-01T16:19:00.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-04-01T01:32:21.000Z", + "fileChanged": "2", + "insertions": "52", + "deletions": "27", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-31T17:07:59.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-31T17:07:48.000Z", + "fileChanged": "12", + "insertions": "138", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-30T22:53:07.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-30T17:18:12.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-30T17:06:19.000Z", + "fileChanged": "4", + "insertions": "12", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Jorge Chamorro Bieling ", + "authorEmail": "jorge@jorgechamorro.com", + "date": "2011-03-29T07:53:32.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-29T17:47:14.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-29T16:58:50.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-29T00:37:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-29T00:36:50.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-28T22:59:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2011-03-23T22:10:57.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-28T22:55:45.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "David Trejo ", + "authorEmail": "david.daniel.trejo@gmail.com", + "date": "2011-03-27T14:37:23.000Z", + "fileChanged": "4", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-28T22:46:36.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Jorge Chamorro Bieling ", + "authorEmail": "jorge@jorgechamorro.com", + "date": "2011-03-23T11:29:49.000Z", + "fileChanged": "5", + "insertions": "172", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2011-03-28T18:19:44.000Z", + "fileChanged": "2", + "insertions": "112", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-26T09:00:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-25T23:30:54.000Z", + "fileChanged": "5", + "insertions": "28", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-26T08:41:54.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-25T19:02:51.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-25T19:02:38.000Z", + "fileChanged": "14", + "insertions": "235", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Arnout Kazemier ", + "authorEmail": "info@3rd-Eden.com", + "date": "2011-03-18T20:02:14.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-24T02:23:35.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-23T22:01:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Zachary Scott ", + "authorEmail": "zachary.s.scott@gmail.com", + "date": "2011-03-17T21:13:19.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Zachary Scott ", + "authorEmail": "zachary.s.scott@gmail.com", + "date": "2011-02-18T23:30:15.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Burnham ", + "authorEmail": "trevor@databraid.com", + "date": "2011-03-19T14:27:25.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trevor Burnham ", + "authorEmail": "trevor@databraid.com", + "date": "2011-03-19T14:22:50.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trevor Burnham ", + "authorEmail": "trevor@databraid.com", + "date": "2011-03-19T14:19:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-22T20:18:57.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-03-19T18:19:56.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-22T20:12:07.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-22T20:10:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-22T20:07:18.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-22T19:02:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-22T18:24:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-21T21:48:26.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-21T21:36:30.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-21T01:07:29.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-20T03:28:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-18T22:49:26.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-18T22:19:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-18T21:20:37.000Z", + "fileChanged": "5", + "insertions": "34", + "deletions": "7", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-18T21:24:37.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-18T21:22:52.000Z", + "fileChanged": "8", + "insertions": "74", + "deletions": "49", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-18T18:39:44.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-03-16T19:59:55.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Aaron Heckmann ", + "authorEmail": "aaron.heckmann+github@gmail.com", + "date": "2011-03-15T13:01:24.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2011-03-18T05:39:39.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-18T18:11:43.000Z" + }, + { + "authorName": "Dean McNamee ", + "authorEmail": "dean@gmail.com", + "date": "2011-03-15T22:39:16.000Z", + "fileChanged": "2", + "insertions": "58", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Dean McNamee ", + "authorEmail": "dean@gmail.com", + "date": "2011-03-15T19:48:34.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-18T17:31:38.000Z", + "fileChanged": "2", + "insertions": "136", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-18T17:01:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-18T16:14:15.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-17T20:49:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-17T20:32:27.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-17T19:49:47.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Daniel Ennis ", + "authorEmail": "aikar@aikar.co", + "date": "2011-03-17T03:12:16.000Z", + "fileChanged": "3", + "insertions": "128", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-16T23:31:38.000Z", + "fileChanged": "12", + "insertions": "150", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-15T18:42:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-03-15T18:34:47.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-15T17:50:24.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-15T17:35:49.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "78", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-15T02:53:59.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-15T02:50:52.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-15T01:23:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-15T00:48:05.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "11", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-15T00:45:15.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-10T08:54:52.000Z", + "fileChanged": "385", + "insertions": "8114", + "deletions": "64", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-14T21:42:01.000Z", + "fileChanged": "3", + "insertions": "91", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-03-14T10:16:35.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-14T19:48:35.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Theo Schlossnagle ", + "authorEmail": "jesus@omniti.com", + "date": "2011-03-14T19:04:00.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-14T18:30:21.000Z", + "fileChanged": "21", + "insertions": "133", + "deletions": "133", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-03-11T16:35:02.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-03-11T16:00:46.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Theo Schlossnagle ", + "authorEmail": "jesus@omniti.com", + "date": "2011-03-11T22:11:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-11T03:08:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-11T03:06:43.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-24T01:04:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2011-03-08T20:46:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-10T21:34:35.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-10T20:48:07.000Z", + "fileChanged": "1", + "insertions": "99", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-03-10T17:15:05.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-09T18:53:06.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-09T17:42:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-03-06T00:11:09.000Z", + "fileChanged": "3", + "insertions": "48", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-03-08T06:00:51.000Z", + "fileChanged": "8", + "insertions": "74", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Tony Huang ", + "authorEmail": "cnwzhjs@gmail.com", + "date": "2011-03-06T02:42:33.000Z", + "fileChanged": "2", + "insertions": "139", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-07T21:16:00.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-03-04T16:37:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-03-04T23:57:54.000Z", + "fileChanged": "11", + "insertions": "50", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-03-03T16:08:12.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-03-03T16:05:03.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Andreas Reich ", + "authorEmail": "andreas@reich.name", + "date": "2010-12-08T21:39:50.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-03T05:20:50.000Z", + "fileChanged": "4", + "insertions": "49", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-03T06:08:44.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-16T05:34:30.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-03T05:21:08.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-17T02:15:24.000Z", + "fileChanged": "2", + "insertions": "96", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-03T05:04:37.000Z", + "fileChanged": "94", + "insertions": "7645", + "deletions": "2254", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-03-03T01:37:38.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-10-29T10:38:13.000Z", + "fileChanged": "4", + "insertions": "257", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-03-02T18:32:13.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-03-01T15:35:32.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-03-01T17:59:17.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-28T20:58:15.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-28T20:27:51.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-17T02:15:24.000Z", + "fileChanged": "2", + "insertions": "96", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-28T19:29:33.000Z", + "fileChanged": "67", + "insertions": "1921", + "deletions": "886", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-28T19:18:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-02-25T09:27:52.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-27T18:21:23.000Z", + "fileChanged": "2", + "insertions": "150", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-18T22:18:38.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-16T23:40:53.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-16T05:34:30.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-16T05:24:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-02-23T03:03:49.000Z", + "fileChanged": "3", + "insertions": "38", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-26T00:48:48.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-26T00:42:08.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Russell Haering ", + "authorEmail": "russellhaering@gmail.com", + "date": "2011-02-20T00:00:05.000Z", + "fileChanged": "2", + "insertions": "75", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-25T01:16:11.000Z", + "fileChanged": "2", + "insertions": "55", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-25T01:06:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-25T00:36:43.000Z", + "fileChanged": "9", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2011-02-18T21:44:20.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Aria Stewart ", + "authorEmail": "aredridel@nbtsc.org", + "date": "2011-02-21T18:39:04.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Aria Stewart ", + "authorEmail": "aredridel@nbtsc.org", + "date": "2011-02-21T07:04:55.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-02-21T14:46:34.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-24T23:54:25.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-24T23:19:12.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-17T02:15:24.000Z", + "fileChanged": "2", + "insertions": "96", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-24T21:14:59.000Z", + "fileChanged": "126", + "insertions": "6644", + "deletions": "4042", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-02-20T12:45:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-02-20T12:41:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-02-20T12:31:37.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-24T19:24:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-24T01:04:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-24T00:19:13.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-24T00:19:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cloudhead ", + "authorEmail": "alexis@cloudhead.io", + "date": "2011-02-22T00:31:01.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-23T20:56:50.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-23T12:43:13.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-20T21:53:40.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-20T21:11:53.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-20T04:56:20.000Z", + "fileChanged": "1", + "insertions": "322", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-20T03:26:56.000Z" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-20T01:29:01.000Z", + "fileChanged": "6", + "insertions": "84", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-20T03:06:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-20T02:45:34.000Z", + "fileChanged": "5", + "insertions": "38", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-20T01:51:32.000Z", + "fileChanged": "4", + "insertions": "36", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-20T00:56:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-18T01:38:36.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2011-02-19T00:02:16.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "6", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-18T22:01:34.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-18T22:01:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-18T19:30:52.000Z", + "fileChanged": "1", + "deletions": "72", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-18T19:20:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-02-11T23:02:55.000Z", + "fileChanged": "3", + "insertions": "61", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-02-12T02:52:42.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-02-11T23:51:27.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2011-02-11T23:44:01.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-12-24T01:14:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-17T20:00:39.000Z", + "fileChanged": "4", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-18T18:05:31.000Z", + "fileChanged": "3", + "insertions": "57", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-18T08:35:39.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2011-02-18T06:41:13.000Z", + "fileChanged": "1", + "insertions": "65", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-18T05:04:51.000Z", + "fileChanged": "2", + "insertions": "135", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-17T19:07:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-17T03:26:00.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-17T03:06:41.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-17T02:15:24.000Z", + "fileChanged": "3", + "insertions": "100", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-17T02:12:08.000Z", + "fileChanged": "2", + "insertions": "68", + "deletions": "68", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-17T02:09:43.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-16T21:16:44.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-16T20:22:45.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-16T20:07:58.000Z", + "fileChanged": "17", + "insertions": "150", + "deletions": "103", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-16T18:55:40.000Z", + "fileChanged": "6", + "insertions": "741", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-16T16:38:33.000Z", + "fileChanged": "209", + "insertions": "8326", + "deletions": "3825", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-16T04:09:02.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-16T00:45:54.000Z", + "fileChanged": "3", + "insertions": "90", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Tj Holowaychuk ", + "authorEmail": "tj@vision-media.ca", + "date": "2011-02-15T17:40:41.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-15T22:06:23.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-02-15T13:47:30.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-02-15T13:41:17.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-02-15T13:30:58.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-15T19:48:05.000Z", + "fileChanged": "4", + "insertions": "148", + "deletions": "151", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-15T18:13:09.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-15T20:07:43.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-15T02:37:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-15T02:35:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-15T01:26:54.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Richard Rodger ", + "authorEmail": "richard@ricebridge.com", + "date": "2011-02-10T10:57:15.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-14T22:23:40.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-14T22:25:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-11T23:53:22.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Tj Holowaychuk ", + "authorEmail": "tj@vision-media.ca", + "date": "2011-02-11T00:29:34.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-14T17:36:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-10T12:58:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-10T12:58:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-10T09:45:15.000Z", + "fileChanged": "7", + "insertions": "137", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2011-02-10T10:18:13.000Z", + "fileChanged": "3", + "insertions": "269", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Theo Schlossnagle ", + "authorEmail": "jesus@omniti.com", + "date": "2010-11-23T18:00:42.000Z", + "fileChanged": "19", + "insertions": "186", + "deletions": "70", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2011-02-10T07:02:51.000Z", + "fileChanged": "3", + "insertions": "35", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-10T04:24:39.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-10T03:02:59.000Z", + "fileChanged": "5", + "insertions": "790", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-10T03:07:17.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-10T02:50:26.000Z", + "fileChanged": "9", + "insertions": "232", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-10T02:10:55.000Z", + "fileChanged": "25", + "insertions": "132", + "deletions": "128", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-10T01:51:05.000Z", + "fileChanged": "1", + "insertions": "124", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-10T01:48:22.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-09T21:56:59.000Z", + "fileChanged": "1", + "insertions": "260", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-18T02:57:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-09T21:52:29.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-09T21:28:30.000Z", + "fileChanged": "9", + "insertions": "89", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-09T21:27:15.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-09T18:24:26.000Z", + "fileChanged": "136", + "insertions": "5902", + "deletions": "1790", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-09T18:23:26.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-09T09:30:31.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-09T03:07:18.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-09T02:30:03.000Z", + "fileChanged": "5", + "insertions": "22", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-09T05:15:46.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-09T00:54:25.000Z", + "fileChanged": "3", + "insertions": "109", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-09T01:29:33.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-08T21:56:03.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-08T05:15:58.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-08T05:11:43.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-07T22:39:36.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-07T23:14:21.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-01T08:06:44.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-01-25T18:40:12.000Z", + "fileChanged": "4", + "insertions": "52", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-07T21:46:15.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Konstantin Käfer ", + "authorEmail": "github@kkaefer.com", + "date": "2011-02-06T20:49:52.000Z", + "fileChanged": "6", + "insertions": "80", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-07T21:11:03.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Russell Haering ", + "authorEmail": "russellhaering@gmail.com", + "date": "2011-02-06T00:31:27.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Daniel Gröber ", + "authorEmail": "dxld@darkboxed.org", + "date": "2011-02-05T23:02:41.000Z", + "fileChanged": "3", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-07T20:50:05.000Z", + "fileChanged": "1", + "deletions": "8", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-01-28T01:57:45.000Z", + "fileChanged": "5", + "insertions": "53", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "koichik ", + "authorEmail": "koichik@improvement.jp", + "date": "2011-02-05T11:07:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2011-02-05T10:35:25.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-05T07:05:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-05T03:54:06.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-05T03:35:43.000Z", + "fileChanged": "5", + "insertions": "29", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-04T23:14:58.000Z", + "fileChanged": "5", + "insertions": "137", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-05T00:06:05.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-05T00:00:08.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-04T22:21:00.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-04T22:20:24.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-04T22:35:14.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-04T17:00:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-04T00:56:54.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-01-28T01:55:33.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-03T21:35:00.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-02-03T12:11:29.000Z", + "fileChanged": "3", + "deletions": "25", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-03T22:03:44.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-03T20:28:20.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-03T20:17:26.000Z", + "fileChanged": "4", + "insertions": "110", + "deletions": "77", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-02T23:37:48.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-02T23:26:28.000Z", + "fileChanged": "4", + "insertions": "177", + "deletions": "84", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-02T22:51:53.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-02T19:44:25.000Z", + "fileChanged": "80", + "insertions": "1898", + "deletions": "861", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-02-02T17:56:32.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-01T22:40:15.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-01T21:00:00.000Z", + "fileChanged": "3", + "insertions": "114", + "deletions": "82", + "type": "Commit" + }, + { + "authorName": "Jorge Chamorro Bieling ", + "authorEmail": "jorge@jorgechamorro.com", + "date": "2011-01-30T23:22:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Joe Walnes ", + "authorEmail": "joe@walnes.com", + "date": "2011-01-24T07:39:54.000Z", + "fileChanged": "4", + "insertions": "185", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-01T01:29:11.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-01T00:38:05.000Z", + "fileChanged": "1", + "insertions": "61", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-02-01T00:37:18.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-18T02:57:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-31T21:19:50.000Z", + "fileChanged": "29", + "insertions": "306", + "deletions": "158", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-31T19:19:59.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-31T19:01:57.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-31T18:44:08.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-31T18:41:52.000Z", + "fileChanged": "4", + "insertions": "47", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2011-01-28T07:37:53.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T21:40:41.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T21:09:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T20:58:19.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-18T02:57:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T09:56:31.000Z", + "fileChanged": "117", + "insertions": "5383", + "deletions": "2670", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T05:11:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T03:41:07.000Z", + "fileChanged": "5", + "insertions": "46", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T04:07:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T03:55:38.000Z", + "fileChanged": "3", + "insertions": "237", + "deletions": "220", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T03:47:17.000Z", + "fileChanged": "4", + "insertions": "11", + "deletions": "119", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T03:27:25.000Z", + "fileChanged": "1", + "insertions": "56", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T03:24:39.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T01:45:17.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T01:44:42.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T01:02:25.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T00:59:28.000Z", + "fileChanged": "7", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T00:55:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T00:35:35.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-28T00:24:02.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "David Trejo ", + "authorEmail": "david.daniel.trejo@gmail.com", + "date": "2011-01-24T04:52:37.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Greg Hughes ", + "authorEmail": "greg@ghughes.com", + "date": "2011-01-28T00:12:13.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-27T22:37:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-10T21:50:46.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-14T18:45:01.000Z", + "fileChanged": "4", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-27T22:20:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Greg Hughes ", + "authorEmail": "greg@ghughes.com", + "date": "2011-01-27T00:46:51.000Z", + "fileChanged": "8", + "insertions": "254", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-01-27T21:14:47.000Z", + "fileChanged": "4", + "insertions": "17", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ali Farhadi ", + "authorEmail": "a.farhadi@gmail.com", + "date": "2011-01-26T07:36:45.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ali Farhadi ", + "authorEmail": "a.farhadi@gmail.com", + "date": "2011-01-26T08:06:22.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-26T01:35:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ali Farhadi ", + "authorEmail": "a.farhadi@gmail.com", + "date": "2011-01-25T16:03:21.000Z", + "fileChanged": "1", + "insertions": "50", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-25T23:50:12.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-25T23:26:19.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Carter Allen ", + "authorEmail": "CarterA@opt-6.com", + "date": "2010-12-27T00:32:04.000Z", + "fileChanged": "6", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-25T20:53:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-25T06:27:31.000Z", + "fileChanged": "1", + "insertions": "222", + "deletions": "61", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-25T06:39:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Daniel Ennis ", + "authorEmail": "aikar@aikar.co", + "date": "2011-01-25T01:52:38.000Z", + "fileChanged": "5", + "insertions": "53", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-25T04:55:18.000Z", + "fileChanged": "100", + "insertions": "5959", + "deletions": "3367", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-25T02:54:26.000Z", + "fileChanged": "1", + "insertions": "94", + "deletions": "78", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-01-25T00:09:41.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-25T02:49:03.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-25T01:50:10.000Z", + "fileChanged": "9", + "insertions": "358", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-01-24T22:15:10.000Z", + "fileChanged": "2", + "insertions": "308", + "deletions": "236", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-24T19:57:21.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-24T18:55:30.000Z", + "fileChanged": "11", + "insertions": "73", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-21T02:54:30.000Z", + "fileChanged": "2", + "insertions": "145", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-24T16:26:22.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-23T23:32:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ali Farhadi ", + "authorEmail": "a.farhadi@gmail.com", + "date": "2011-01-23T21:43:59.000Z", + "fileChanged": "2", + "insertions": "38", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-01-23T22:40:56.000Z", + "fileChanged": "3", + "insertions": "334", + "deletions": "334", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2011-01-23T00:09:50.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-22T02:26:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-22T01:57:04.000Z", + "fileChanged": "3", + "insertions": "17", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-22T02:16:56.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-22T01:48:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-22T01:39:45.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-21T23:55:48.000Z", + "fileChanged": "1", + "insertions": "46", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-21T22:53:31.000Z", + "fileChanged": "2", + "insertions": "45", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-01-21T18:08:48.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-01-21T00:52:30.000Z", + "fileChanged": "2", + "insertions": "482", + "deletions": "482", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-20T23:47:55.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-21T21:47:27.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-21T21:21:01.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-21T21:12:35.000Z", + "fileChanged": "4", + "insertions": "111", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-21T03:07:15.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "14", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-21T02:38:13.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-21T02:23:50.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-21T02:19:30.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-21T01:55:13.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-21T01:54:59.000Z", + "fileChanged": "1", + "insertions": "79", + "deletions": "70", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-21T01:07:44.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "49", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-21T00:25:24.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-20T23:55:02.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-20T19:21:42.000Z", + "fileChanged": "1", + "insertions": "135", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-20T18:29:54.000Z", + "fileChanged": "1", + "insertions": "96", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-20T10:41:16.000Z", + "fileChanged": "1", + "insertions": "196", + "deletions": "322", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-21T02:04:09.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-20T00:41:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-20T00:40:55.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "kmillikin@chromium.org ", + "authorEmail": "kmillikin@chromium.org", + "date": "2011-01-19T15:26:54.000Z", + "fileChanged": "4", + "insertions": "77", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-19T19:46:14.000Z", + "fileChanged": "3", + "insertions": "24", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-19T19:33:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-19T19:18:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-19T19:08:49.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-18T02:57:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-19T19:06:13.000Z", + "fileChanged": "75", + "insertions": "4604", + "deletions": "2076", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-19T04:55:02.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-19T03:14:42.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-14T02:44:05.000Z", + "fileChanged": "3", + "insertions": "210", + "deletions": "184", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-12T03:13:41.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-17T22:28:54.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-19T03:08:07.000Z", + "fileChanged": "3", + "insertions": "481", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-17T22:27:14.000Z", + "fileChanged": "1", + "insertions": "153", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-11T01:11:57.000Z", + "fileChanged": "1", + "insertions": "354", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-18T18:44:50.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-19T06:27:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-19T06:25:38.000Z", + "fileChanged": "2", + "insertions": "91", + "deletions": "91", + "type": "Commit" + }, + { + "authorName": "Alexis Sellier ", + "authorEmail": "alexis@cloudhead.io", + "date": "2011-01-19T03:39:20.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-19T02:03:55.000Z", + "fileChanged": "2", + "insertions": "59", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-19T01:56:52.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-19T00:22:43.000Z", + "fileChanged": "2", + "insertions": "57", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-18T22:26:32.000Z", + "fileChanged": "3", + "insertions": "69", + "deletions": "76", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-17T22:30:13.000Z", + "fileChanged": "1", + "deletions": "9", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-17T21:59:25.000Z", + "fileChanged": "4", + "insertions": "10", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-17T22:01:20.000Z", + "fileChanged": "2", + "insertions": "107", + "deletions": "96", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-17T21:49:23.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-17T21:47:59.000Z", + "fileChanged": "4", + "insertions": "47", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-17T23:27:08.000Z", + "fileChanged": "5", + "insertions": "470", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-17T21:53:12.000Z", + "fileChanged": "8", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-17T23:22:36.000Z", + "fileChanged": "13", + "insertions": "98", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-17T22:38:34.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-11T00:42:12.000Z", + "fileChanged": "2", + "insertions": "117", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-18T02:57:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-17T21:35:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-17T21:34:22.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-17T20:12:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-17T19:32:56.000Z", + "fileChanged": "221", + "insertions": "18567", + "deletions": "9628", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-16T23:28:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-16T23:12:28.000Z", + "fileChanged": "4", + "insertions": "23", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-01-16T11:33:11.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-01-14T19:14:47.000Z", + "fileChanged": "1", + "insertions": "96", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-16T22:34:39.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-16T09:21:38.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-16T08:33:16.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-14T04:32:14.000Z", + "fileChanged": "3", + "deletions": "12", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-14T00:30:27.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-14T00:04:33.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-13T23:28:16.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-13T23:18:13.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-13T21:59:32.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-13T21:24:28.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-13T20:48:20.000Z", + "fileChanged": "1", + "insertions": "76", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-13T19:57:28.000Z", + "fileChanged": "2", + "insertions": "86", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-13T19:13:57.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-13T10:22:09.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-13T10:09:03.000Z", + "fileChanged": "2", + "insertions": "148", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-13T00:43:05.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-01-12T22:42:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-01-12T22:31:04.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2011-01-12T21:05:45.000Z", + "fileChanged": "1", + "insertions": "170", + "deletions": "153", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-12T21:29:43.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-12T20:59:58.000Z", + "fileChanged": "2", + "insertions": "59", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-12T18:57:01.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-12T18:33:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-12T18:32:48.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-12T02:19:22.000Z", + "fileChanged": "19", + "insertions": "360", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-12T00:53:02.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-12T00:51:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-12T00:30:01.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-11T23:37:56.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-11T20:06:58.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-11T22:32:42.000Z", + "fileChanged": "3", + "insertions": "220", + "deletions": "237", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-11T22:13:06.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-11T22:09:17.000Z", + "fileChanged": "9", + "insertions": "8179", + "deletions": "6386", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-01-11T02:20:12.000Z", + "fileChanged": "3", + "insertions": "126", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-11T18:18:46.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-12-23T02:08:20.000Z", + "fileChanged": "4", + "insertions": "81", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-11T16:45:32.000Z", + "fileChanged": "16", + "insertions": "2518", + "deletions": "1361", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-11T01:57:25.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-11T02:00:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-11T01:25:48.000Z", + "fileChanged": "3", + "insertions": "36", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-11T01:15:17.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-11T00:30:26.000Z", + "fileChanged": "15", + "insertions": "101", + "deletions": "101", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-11T00:25:13.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-11T00:22:58.000Z", + "fileChanged": "4", + "insertions": "35", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-01T02:32:52.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-09T03:09:54.000Z", + "fileChanged": "1", + "insertions": "78", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-09T03:09:33.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-09T02:20:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-09T00:19:07.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-08T23:46:07.000Z", + "fileChanged": "4", + "insertions": "24", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Mihai Călin Bazon ", + "authorEmail": "mihai@bazon.net", + "date": "2011-01-04T20:24:17.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-07T18:57:39.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-07T02:07:48.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-07T00:06:27.000Z", + "fileChanged": "11", + "insertions": "143", + "deletions": "114", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-06T20:06:29.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-06T17:30:03.000Z", + "fileChanged": "1", + "insertions": "144", + "deletions": "125", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-06T05:39:00.000Z", + "fileChanged": "3", + "insertions": "304", + "deletions": "125", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2011-01-05T19:12:36.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-06T21:42:30.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-06T19:05:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-06T03:05:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-05T19:57:53.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-05T19:55:24.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-05T19:53:56.000Z", + "fileChanged": "2", + "insertions": "102", + "deletions": "100", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-05T15:32:04.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-05T15:40:21.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-05T02:30:27.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-05T01:23:48.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-05T00:57:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-04T23:45:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-04T23:41:59.000Z" + }, + { + "authorName": "Mihai Călin Bazon ", + "authorEmail": "mihai@bazon.net", + "date": "2011-01-04T20:24:17.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-04T19:39:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-04T19:25:36.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-04T19:22:17.000Z", + "fileChanged": "5", + "insertions": "31", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-04T18:36:05.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-02T09:13:56.000Z", + "fileChanged": "4", + "insertions": "79", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-03T23:27:57.000Z", + "fileChanged": "4", + "insertions": "4", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-03T21:21:28.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-03T20:58:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-03T18:27:16.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-03T02:57:22.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-03T02:33:49.000Z", + "fileChanged": "4", + "insertions": "32", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-03T02:08:08.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-02T22:44:43.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "8", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2011-01-02T21:57:32.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-02T20:37:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-02T09:54:19.000Z", + "fileChanged": "5", + "insertions": "32", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-02T09:44:42.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-02T09:13:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-02T05:54:46.000Z", + "fileChanged": "4", + "insertions": "31", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-02T05:41:07.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-02T05:14:24.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-02T05:14:06.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-02T05:04:13.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-02T01:54:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-02T01:43:07.000Z", + "fileChanged": "1", + "insertions": "36", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-02T00:41:39.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "84", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-01T22:24:16.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2011-01-01T21:17:42.000Z", + "fileChanged": "2", + "insertions": "187", + "deletions": "138", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-31T05:07:42.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Sami Samhuri ", + "authorEmail": "sami.samhuri@gmail.com", + "date": "2010-12-31T00:20:47.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Daniel C ", + "authorEmail": "333222@gmail.com", + "date": "2010-12-07T16:44:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-31T02:46:49.000Z", + "fileChanged": "3", + "insertions": "75", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-31T02:28:30.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-31T02:07:19.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-31T01:52:14.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-31T01:33:06.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-30T23:46:47.000Z", + "fileChanged": "3", + "insertions": "65", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-30T21:25:49.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-30T20:33:27.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-30T19:54:49.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-30T19:53:55.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-30T19:17:11.000Z", + "fileChanged": "1", + "insertions": "279", + "deletions": "247", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-30T18:32:41.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-30T18:31:33.000Z", + "fileChanged": "1", + "insertions": "39", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-18T19:17:29.000Z", + "fileChanged": "1", + "insertions": "58", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-30T18:18:25.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-30T18:02:42.000Z", + "fileChanged": "1", + "insertions": "56", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-30T09:34:54.000Z", + "fileChanged": "1", + "insertions": "60", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-30T08:10:30.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-30T06:07:38.000Z", + "fileChanged": "3", + "insertions": "101", + "deletions": "172", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-23T18:38:43.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-23T18:32:34.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-23T18:18:06.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-23T18:10:28.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-23T07:31:54.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-23T07:31:06.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-23T02:39:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-23T02:30:56.000Z", + "fileChanged": "1", + "insertions": "119", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-23T01:17:34.000Z", + "fileChanged": "3", + "insertions": "92", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-22T22:40:28.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-22T22:31:57.000Z", + "fileChanged": "2", + "insertions": "92", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-22T08:48:22.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-22T06:31:30.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-22T03:14:29.000Z", + "fileChanged": "3", + "insertions": "300", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-18T19:17:29.000Z", + "fileChanged": "1", + "insertions": "58", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-30T09:34:31.000Z", + "fileChanged": "1", + "insertions": "31", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-12-23T21:49:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-12-23T13:06:03.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Kai Chen ", + "authorEmail": "kaichenxyz@gmail.com", + "date": "2010-12-21T04:35:40.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-12-08T21:37:28.000Z", + "fileChanged": "4", + "insertions": "40", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-12-08T01:06:52.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Daniel Gröber ", + "authorEmail": "darklord@darkboxed.org", + "date": "2010-12-05T14:10:05.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-12-22T18:55:47.000Z", + "fileChanged": "14", + "insertions": "932", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-12-20T17:15:20.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-12-21T21:52:07.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-12-17T23:26:58.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-22T18:24:34.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-21T23:40:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Oleg Slobodskoi ", + "authorEmail": "oleg008@gmail.com", + "date": "2010-12-21T17:42:52.000Z", + "fileChanged": "3", + "insertions": "24", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-21T20:02:51.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Theo Schlossnagle ", + "authorEmail": "jesus@omniti.com", + "date": "2010-12-21T03:08:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-21T18:24:08.000Z", + "fileChanged": "67", + "insertions": "1846", + "deletions": "967", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-12-20T23:07:02.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-12-20T22:52:38.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-12-20T22:32:04.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-12-20T22:31:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-12-06T12:46:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-12-03T00:44:09.000Z", + "fileChanged": "5", + "insertions": "947", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-12-03T00:14:40.000Z", + "fileChanged": "2", + "insertions": "134", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-12-03T00:12:50.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-30T16:07:09.000Z", + "fileChanged": "6", + "insertions": "363", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-30T09:39:39.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-30T09:39:01.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-30T09:36:25.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-30T09:34:17.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-30T09:33:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-29T17:40:14.000Z", + "fileChanged": "7", + "insertions": "26", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-28T03:06:57.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-26T17:40:23.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-26T03:22:22.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-26T03:16:40.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-26T03:10:39.000Z", + "fileChanged": "4", + "insertions": "9", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-26T02:27:44.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-26T02:19:30.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-26T02:06:12.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-26T02:03:01.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-26T01:40:39.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-26T01:10:04.000Z", + "fileChanged": "1", + "insertions": "51", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-26T00:27:14.000Z", + "fileChanged": "2", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-26T00:24:04.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-26T00:23:04.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T15:08:24.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T05:00:44.000Z", + "fileChanged": "1", + "deletions": "240", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T04:19:08.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T04:06:31.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T04:05:35.000Z", + "fileChanged": "1", + "insertions": "79", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T04:03:39.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T03:59:52.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T01:14:53.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T22:51:32.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:57:15.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:55:29.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:50:28.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:48:41.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:45:32.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:43:33.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:41:28.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:40:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:40:17.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:27:37.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:26:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:25:46.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:25:25.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:24:59.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:23:07.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:21:30.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:20:08.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:19:13.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:13:52.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:13:23.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:11:14.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:09:33.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:09:06.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:04:31.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:03:51.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:02:55.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:02:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T23:59:40.000Z", + "fileChanged": "2", + "insertions": "76", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T23:54:14.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T23:47:42.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T23:45:11.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T23:43:26.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "80", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T23:42:33.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T23:39:46.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T22:19:23.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:44:41.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T22:46:22.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jeremy Martin ", + "authorEmail": "jmar777@gmail.com", + "date": "2010-12-20T21:21:02.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-20T19:08:51.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-19T02:44:04.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-19T00:38:32.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-18T23:34:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-18T19:18:33.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-17T21:56:47.000Z", + "fileChanged": "2", + "insertions": "84", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-17T17:24:24.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-16T20:19:45.000Z", + "fileChanged": "5", + "insertions": "51", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-17T17:50:41.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-17T17:29:19.000Z", + "fileChanged": "159", + "insertions": "11579", + "deletions": "8047", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-12-17T03:57:41.000Z", + "fileChanged": "5", + "insertions": "30", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-17T02:40:23.000Z", + "fileChanged": "3", + "insertions": "22", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Jorge Chamorro Bieling ", + "authorEmail": "jorge@jorgechamorro.com", + "date": "2010-12-17T02:40:06.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-12-17T00:41:38.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-16T22:25:02.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-16T22:22:41.000Z", + "fileChanged": "2", + "insertions": "103", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-16T22:03:04.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-16T20:22:30.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-10T19:21:47.000Z", + "fileChanged": "3", + "insertions": "141", + "deletions": "79", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-16T19:52:08.000Z", + "fileChanged": "97", + "insertions": "7134", + "deletions": "8472", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-15T23:57:13.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-15T23:47:02.000Z", + "fileChanged": "4", + "insertions": "52", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-15T23:15:27.000Z", + "fileChanged": "3", + "insertions": "38", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-14T06:13:51.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-14T06:04:54.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-14T06:03:33.000Z", + "fileChanged": "98", + "insertions": "8447", + "deletions": "7140", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-12-12T19:13:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-12-13T22:56:16.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-11T10:45:38.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-11T10:32:48.000Z", + "fileChanged": "5", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-11T10:26:48.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-11T10:13:24.000Z", + "fileChanged": "4", + "insertions": "74", + "deletions": "71", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-11T09:42:34.000Z", + "fileChanged": "1", + "insertions": "79", + "deletions": "117", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-11T09:21:25.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-11T09:18:32.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-11T08:56:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-12-11T08:49:38.000Z", + "fileChanged": "9", + "insertions": "70", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-11T06:29:46.000Z", + "fileChanged": "1", + "insertions": "120", + "deletions": "108", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-11T06:09:46.000Z", + "fileChanged": "3", + "insertions": "19", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-11T02:25:12.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-11T02:03:39.000Z", + "fileChanged": "4", + "insertions": "254", + "deletions": "254", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-11T02:02:51.000Z", + "fileChanged": "2", + "insertions": "127", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-10T19:21:47.000Z", + "fileChanged": "3", + "insertions": "141", + "deletions": "79", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-09T10:35:16.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-09T10:31:22.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-09T08:35:16.000Z", + "fileChanged": "2", + "insertions": "89", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-09T08:10:16.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "73", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-09T00:04:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-08T21:43:42.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-08T21:22:12.000Z", + "fileChanged": "2", + "insertions": "124", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-08T20:49:53.000Z", + "fileChanged": "2", + "insertions": "64", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-08T20:05:19.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-08T19:55:13.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-08T19:55:04.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-08T19:51:41.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-08T19:39:57.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-08T19:22:08.000Z", + "fileChanged": "2", + "insertions": "59", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-08T01:13:51.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-08T00:50:30.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-08T00:34:26.000Z", + "fileChanged": "22", + "insertions": "318", + "deletions": "174", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-07T21:56:11.000Z", + "fileChanged": "352", + "insertions": "53660", + "deletions": "2999", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-07T19:53:36.000Z", + "fileChanged": "18", + "insertions": "411", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-07T19:29:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-06T02:19:18.000Z", + "fileChanged": "5", + "insertions": "396", + "deletions": "403", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-04T01:07:09.000Z", + "fileChanged": "4", + "insertions": "120", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Oleg Efimov ", + "authorEmail": "efimovov@gmail.com", + "date": "2010-12-05T22:33:52.000Z", + "fileChanged": "72", + "insertions": "1530", + "deletions": "1427", + "type": "Commit" + }, + { + "authorName": "Oleg Efimov ", + "authorEmail": "efimovov@gmail.com", + "date": "2010-12-05T19:15:30.000Z", + "fileChanged": "80", + "insertions": "975", + "deletions": "878", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-12-05T19:35:41.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-12-05T19:05:30.000Z", + "fileChanged": "1", + "insertions": "140", + "deletions": "126", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-12-05T18:44:39.000Z", + "fileChanged": "1", + "insertions": "148", + "deletions": "116", + "type": "Commit" + }, + { + "authorName": "Oleg Efimov ", + "authorEmail": "efimovov@gmail.com", + "date": "2010-12-04T22:45:52.000Z", + "fileChanged": "38", + "insertions": "660", + "deletions": "623", + "type": "Commit" + }, + { + "authorName": "Oleg Efimov ", + "authorEmail": "efimovov@gmail.com", + "date": "2010-12-04T23:06:34.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-04T21:40:39.000Z", + "fileChanged": "8", + "insertions": "45", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-05T00:11:57.000Z", + "fileChanged": "30", + "insertions": "105", + "deletions": "114", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-04T23:20:34.000Z", + "fileChanged": "159", + "insertions": "461", + "deletions": "458", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-04T21:40:21.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-04T21:39:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Anders Conbere ", + "authorEmail": "aconbere@gmail.com", + "date": "2010-12-04T19:37:35.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Devin Torres ", + "authorEmail": "devin@devintorres.com", + "date": "2010-12-03T23:49:26.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Anders Conbere ", + "authorEmail": "aconbere@gmail.com", + "date": "2010-12-01T22:31:20.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Sean Braithwaite ", + "authorEmail": "brapse@gmail.com", + "date": "2010-12-02T21:53:16.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-03T20:28:24.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-12-03T12:45:00.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-12-03T12:40:26.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-26T03:09:28.000Z", + "fileChanged": "6", + "insertions": "101", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Oleg Efimov ", + "authorEmail": "efimovov@gmail.com", + "date": "2010-12-03T01:03:18.000Z", + "fileChanged": "50", + "insertions": "483", + "deletions": "482", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-03T01:01:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-03T00:57:16.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-03T00:45:34.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-03T00:38:23.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-02T23:59:35.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-02T20:11:23.000Z", + "fileChanged": "3", + "insertions": "542", + "deletions": "512", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-12-02T19:34:53.000Z", + "fileChanged": "1", + "insertions": "146", + "deletions": "115", + "type": "Commit" + }, + { + "authorName": "Oleg Slobodskoi ", + "authorEmail": "oleg008@gmail.com", + "date": "2010-12-02T19:07:47.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-11-29T18:02:06.000Z", + "fileChanged": "4", + "insertions": "35", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-11-24T07:25:41.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-11-24T06:34:50.000Z", + "fileChanged": "4", + "insertions": "32", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-12-02T06:48:00.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-02T04:59:06.000Z", + "fileChanged": "7", + "insertions": "144", + "deletions": "147", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-02T02:07:20.000Z", + "fileChanged": "8", + "insertions": "564", + "deletions": "556", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-12-02T02:24:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-02T01:43:30.000Z", + "fileChanged": "4", + "insertions": "224", + "deletions": "190", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-02T01:29:11.000Z", + "fileChanged": "4", + "insertions": "91", + "deletions": "76", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-02T01:01:19.000Z", + "fileChanged": "3", + "insertions": "3138", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-02T00:56:03.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-02T00:36:23.000Z", + "fileChanged": "2", + "insertions": "87", + "deletions": "84", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-02T00:35:46.000Z", + "fileChanged": "46", + "insertions": "9435", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T21:43:05.000Z", + "fileChanged": "1", + "insertions": "51", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T21:40:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T21:00:04.000Z", + "fileChanged": "2", + "insertions": "158", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T20:52:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T20:47:49.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T20:32:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T19:31:22.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T19:23:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T09:42:41.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T09:40:39.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T08:46:04.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T07:06:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T07:00:32.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Michael W ", + "authorEmail": "gcr@sneakygcr.net", + "date": "2010-12-01T05:20:25.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T00:28:50.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T00:16:00.000Z", + "fileChanged": "2", + "insertions": "128", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-12-01T00:13:05.000Z", + "fileChanged": "4", + "insertions": "3629", + "deletions": "3589", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-30T23:59:59.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-30T19:53:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-30T19:34:27.000Z", + "fileChanged": "68", + "insertions": "2767", + "deletions": "1756", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-30T19:33:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-30T19:18:02.000Z", + "fileChanged": "2", + "insertions": "88", + "deletions": "77", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-30T19:04:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-30T18:54:56.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T23:34:13.000Z", + "fileChanged": "1", + "insertions": "246", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T23:17:59.000Z", + "fileChanged": "3", + "insertions": "822", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T22:44:33.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T22:43:20.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T22:22:19.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T22:21:38.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-24T01:39:54.000Z", + "fileChanged": "4", + "insertions": "322", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-25T00:49:21.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-18T09:37:13.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-30T03:59:01.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-30T03:52:47.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-30T03:46:00.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michael W ", + "authorEmail": "gcr@sneakygcr.net", + "date": "2010-11-29T18:48:25.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Travis Swicegood ", + "authorEmail": "development@domain51.com", + "date": "2010-11-29T18:06:15.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Travis Swicegood ", + "authorEmail": "development@domain51.com", + "date": "2010-11-29T17:39:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-30T01:36:59.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jeremy Martin ", + "authorEmail": "jmar777@gmail.com", + "date": "2010-11-28T06:03:14.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Oleg Slobodskoi ", + "authorEmail": "oleg008@gmail.com", + "date": "2010-11-26T23:03:31.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Travis Swicegood ", + "authorEmail": "development@domain51.com", + "date": "2010-11-28T17:17:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Evan Larkin ", + "authorEmail": "evan.larkin.iit@gmail.com", + "date": "2010-11-27T09:59:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-30T00:18:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-29T23:22:48.000Z", + "fileChanged": "4", + "insertions": "28", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-29T23:04:36.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-29T22:07:55.000Z", + "fileChanged": "2", + "insertions": "64", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-29T22:21:30.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-29T21:53:35.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-29T15:41:08.000Z", + "fileChanged": "1", + "insertions": "70", + "deletions": "59", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-29T08:20:21.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-29T08:07:44.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-29T07:24:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-29T07:20:59.000Z", + "fileChanged": "3", + "insertions": "46", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-29T05:03:41.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-29T02:41:53.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-29T02:40:30.000Z", + "fileChanged": "2", + "insertions": "130", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-11-27T02:33:29.000Z", + "fileChanged": "3", + "insertions": "111", + "deletions": "109", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-11-24T16:34:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-11-24T17:32:58.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-24T09:03:06.000Z", + "fileChanged": "63", + "insertions": "3148", + "deletions": "6407", + "type": "Commit" + }, + { + "authorName": "Nikhil Marathe ", + "authorEmail": "nsm.nikhil@gmail.com", + "date": "2010-11-23T06:46:56.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Nikhil Marathe ", + "authorEmail": "nsm.nikhil@gmail.com", + "date": "2010-11-23T06:46:32.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-11-23T18:27:03.000Z", + "fileChanged": "4", + "insertions": "21", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-11-23T06:53:00.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Daniel Gröber ", + "authorEmail": "darklord@darkboxed.org", + "date": "2010-11-18T21:45:41.000Z", + "fileChanged": "5", + "insertions": "95", + "deletions": "93", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-11-23T06:15:04.000Z", + "fileChanged": "2", + "insertions": "77", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-24T02:46:13.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-24T02:30:52.000Z", + "fileChanged": "4", + "insertions": "42", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-11-23T19:14:20.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Wade Simmons ", + "authorEmail": "wade@wades.im", + "date": "2010-11-22T21:24:09.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-23T20:20:22.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-23T01:55:04.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-11-22T16:31:40.000Z", + "fileChanged": "21", + "insertions": "776", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-11-22T19:26:37.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-22T05:44:23.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-22T05:39:14.000Z", + "fileChanged": "4", + "insertions": "47", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-11-16T20:38:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-11-16T20:50:24.000Z", + "fileChanged": "3", + "insertions": "49", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Jorge Chamorro Bieling ", + "authorEmail": "jorge@jorgechamorro.com", + "date": "2010-11-17T09:41:30.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-22T04:33:04.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-11-16T14:44:06.000Z", + "fileChanged": "2", + "insertions": "46", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Nikhil Marathe ", + "authorEmail": "nsm.nikhil@gmail.com", + "date": "2010-11-18T08:22:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-11-20T12:35:56.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-11-20T12:35:41.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Marco Rogers ", + "authorEmail": "marco.rogers@gmail.com", + "date": "2010-11-21T05:28:19.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-11-22T02:03:21.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "60", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-21T23:22:08.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-21T23:16:02.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-21T23:07:34.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-21T23:06:20.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Silas Sewell ", + "authorEmail": "silas@sewell.ch", + "date": "2010-11-21T22:22:34.000Z", + "fileChanged": "15", + "insertions": "98", + "deletions": "98", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-21T22:20:22.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-21T22:13:54.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-21T21:58:47.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-21T07:08:45.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-21T04:49:44.000Z", + "fileChanged": "14", + "insertions": "237", + "deletions": "864", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-21T04:45:30.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-21T04:45:22.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Marco Rogers ", + "authorEmail": "marco.rogers@gmail.com", + "date": "2010-11-20T23:44:58.000Z", + "fileChanged": "2", + "insertions": "70", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-20T08:04:22.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-20T07:05:13.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-20T06:52:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-19T21:28:04.000Z", + "fileChanged": "3", + "insertions": "170", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-19T21:02:14.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-19T20:58:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-19T18:49:09.000Z", + "fileChanged": "147", + "insertions": "11695", + "deletions": "4126", + "type": "Commit" + }, + { + "authorName": "Nikhil Marathe ", + "authorEmail": "nsm.nikhil@gmail.com", + "date": "2010-11-18T08:41:44.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-19T18:00:21.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-11-19T03:33:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-19T00:57:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-19T00:49:39.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-19T00:28:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-18T22:19:09.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-18T20:04:33.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-18T19:59:15.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-18T19:45:32.000Z", + "fileChanged": "4", + "insertions": "28", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-18T19:18:07.000Z", + "fileChanged": "5", + "insertions": "23", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-17T19:50:51.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-17T19:40:43.000Z", + "fileChanged": "3", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-17T18:58:45.000Z", + "fileChanged": "1", + "insertions": "123", + "deletions": "122", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-13T00:24:53.000Z", + "fileChanged": "4", + "insertions": "63", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-12T22:05:26.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-12T19:47:31.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-12T19:31:39.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-12T19:24:30.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-12T17:54:48.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-12T17:18:44.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-12T01:31:38.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-11T22:26:41.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-05T20:03:32.000Z", + "fileChanged": "2", + "insertions": "58", + "deletions": "212", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-02T22:51:16.000Z", + "fileChanged": "5", + "insertions": "655", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-28T20:02:51.000Z", + "fileChanged": "10", + "insertions": "376", + "deletions": "621", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-19T00:22:11.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Oleg Efimov ", + "authorEmail": "efimovov@gmail.com", + "date": "2010-11-18T12:00:24.000Z", + "fileChanged": "9", + "insertions": "95", + "deletions": "49", + "type": "Commit" + }, + { + "authorName": "Stéphan Kochen ", + "authorEmail": "stephan@kochen.nl", + "date": "2010-11-18T18:30:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-18T23:18:06.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-18T23:12:21.000Z", + "fileChanged": "2", + "insertions": "71", + "deletions": "82", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-18T21:50:46.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-11-18T02:41:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-18T02:25:14.000Z", + "fileChanged": "6", + "insertions": "47", + "deletions": "61", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-11-18T01:51:07.000Z", + "fileChanged": "7", + "insertions": "3", + "deletions": "326", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-18T01:50:00.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-11-18T01:26:37.000Z", + "fileChanged": "3", + "insertions": "99", + "deletions": "102", + "type": "Commit" + }, + { + "authorName": "Dan Søndergaard ", + "authorEmail": "dan1990@gmail.com", + "date": "2010-11-17T16:04:21.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Tim Cooijmans ", + "authorEmail": "tim@aapopfiets.nl", + "date": "2010-11-17T20:26:08.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-17T22:51:06.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-17T19:31:16.000Z", + "fileChanged": "3", + "insertions": "19", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-17T17:39:26.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-17T17:31:51.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-17T02:46:15.000Z", + "fileChanged": "4", + "insertions": "72", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-17T03:13:52.000Z", + "fileChanged": "99", + "insertions": "2691", + "deletions": "6813", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-17T00:26:55.000Z", + "fileChanged": "2", + "insertions": "61", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-16T23:33:21.000Z", + "fileChanged": "3", + "insertions": "58", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-16T06:25:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-16T06:18:52.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-16T04:34:15.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-16T04:26:46.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-16T04:23:12.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-16T04:22:54.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-11-14T23:50:14.000Z", + "fileChanged": "4", + "insertions": "96", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-11-14T23:50:14.000Z", + "fileChanged": "3", + "insertions": "117", + "deletions": "133", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-16T03:23:47.000Z", + "fileChanged": "2", + "insertions": "90", + "deletions": "90", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-16T03:21:56.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-16T03:19:01.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-16T03:06:18.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-16T02:37:27.000Z", + "fileChanged": "12", + "insertions": "152", + "deletions": "153", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-15T19:20:35.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-15T18:22:24.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-15T08:51:01.000Z", + "fileChanged": "1", + "insertions": "31", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-11-15T08:40:38.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-15T08:43:53.000Z", + "fileChanged": "9", + "deletions": "2259", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-15T07:44:26.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-15T07:12:43.000Z", + "fileChanged": "3", + "insertions": "63", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-10-26T21:41:06.000Z", + "fileChanged": "4", + "insertions": "184", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-15T06:46:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-11-14T12:51:57.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-11-14T12:51:32.000Z", + "fileChanged": "3", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-11-14T12:50:48.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-11-14T10:12:04.000Z", + "fileChanged": "3", + "insertions": "181", + "deletions": "154", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-11-14T04:12:47.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-13T23:18:10.000Z", + "fileChanged": "9", + "insertions": "15", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-13T23:08:09.000Z", + "fileChanged": "1", + "deletions": "26", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-13T23:02:18.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-13T22:57:35.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-11-11T22:08:26.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-11-13T11:58:24.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-10-24T14:15:05.000Z", + "fileChanged": "62", + "insertions": "8309", + "deletions": "8246", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-13T22:26:40.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-12T22:37:05.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-12T06:42:06.000Z", + "fileChanged": "99", + "insertions": "6813", + "deletions": "2691", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-12T06:36:39.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-12T00:33:21.000Z", + "fileChanged": "3", + "insertions": "24", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-09T23:43:52.000Z", + "fileChanged": "3", + "insertions": "16", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-11T06:32:26.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-11T06:12:47.000Z", + "fileChanged": "3", + "insertions": "61", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-09T21:49:03.000Z", + "fileChanged": "4", + "insertions": "124", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-08T01:22:36.000Z", + "fileChanged": "6", + "insertions": "11", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Guillaume Tuton ", + "authorEmail": "guillaume@tuton.fr", + "date": "2010-11-07T14:34:20.000Z", + "fileChanged": "2", + "insertions": "97", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-06T00:38:02.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-10-15T13:48:34.000Z", + "fileChanged": "2", + "insertions": "103", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-03T16:02:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-03T04:20:28.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-02T17:09:59.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-02T01:23:13.000Z", + "fileChanged": "1", + "insertions": "55", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-01T23:03:32.000Z", + "fileChanged": "75", + "insertions": "9149", + "deletions": "12572", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-01T21:59:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-01T21:56:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-01T21:10:35.000Z", + "fileChanged": "61", + "insertions": "1439", + "deletions": "934", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-01T18:40:11.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-11-01T19:34:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Oleg Efimov ", + "authorEmail": "efimovov@gmail.com", + "date": "2010-10-29T14:10:37.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Oleg Efimov ", + "authorEmail": "efimovov@gmail.com", + "date": "2010-10-29T13:07:27.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Chandra Sekar S ", + "authorEmail": "chandru.in@gmail.com", + "date": "2010-10-30T10:06:59.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-11-01T02:31:22.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-31T00:03:12.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-30T23:10:55.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-30T20:31:51.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-30T19:52:53.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-30T19:04:30.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-30T17:01:46.000Z", + "fileChanged": "1", + "insertions": "39", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-30T18:13:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-30T18:13:37.000Z", + "fileChanged": "104", + "insertions": "6294", + "deletions": "4270", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-29T23:49:39.000Z", + "fileChanged": "6", + "insertions": "112", + "deletions": "94", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-29T07:00:43.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-29T02:43:00.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-29T02:41:44.000Z", + "fileChanged": "1", + "deletions": "8", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-28T23:52:33.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-28T22:10:20.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-28T22:00:16.000Z", + "fileChanged": "3", + "deletions": "494", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-28T20:00:28.000Z", + "fileChanged": "4", + "insertions": "38", + "deletions": "81", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-28T19:50:53.000Z", + "fileChanged": "4", + "insertions": "42", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-28T12:18:54.000Z", + "fileChanged": "10", + "insertions": "2584", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-28T12:18:16.000Z", + "fileChanged": "33", + "insertions": "3369", + "deletions": "3408", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-28T20:15:53.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-28T20:02:51.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-28T19:34:46.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-28T18:42:22.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-28T18:33:33.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Jonas Pfenniger ", + "authorEmail": "jonas@stvs.ch", + "date": "2010-10-28T10:02:44.000Z", + "fileChanged": "1", + "insertions": "39", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-10-25T22:44:48.000Z", + "fileChanged": "66", + "insertions": "12132", + "deletions": "8276", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-10-25T19:28:53.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-10-23T23:44:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jorge Chamorro Bieling ", + "authorEmail": "jorge@jorgechamorro.com", + "date": "2010-10-23T20:39:25.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-27T22:29:08.000Z", + "fileChanged": "1", + "insertions": "130", + "deletions": "100", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-27T19:08:47.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-27T09:52:49.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-27T09:10:14.000Z", + "fileChanged": "2", + "insertions": "45", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Tim-Smart ", + "authorEmail": "tim@fostle.com", + "date": "2010-10-26T04:05:04.000Z", + "fileChanged": "2", + "insertions": "39", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-26T19:52:31.000Z", + "fileChanged": "2", + "insertions": "81", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-26T19:14:17.000Z", + "fileChanged": "2", + "insertions": "94", + "deletions": "73", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-26T18:56:32.000Z", + "fileChanged": "2", + "insertions": "171", + "deletions": "165", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-26T20:43:58.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-26T18:31:32.000Z", + "fileChanged": "1", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-26T18:31:01.000Z", + "fileChanged": "1", + "insertions": "0", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-26T08:10:32.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-26T05:04:39.000Z", + "fileChanged": "7", + "insertions": "56", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-26T02:52:58.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-26T02:25:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-26T01:33:15.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-26T01:24:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-26T01:17:19.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-26T00:30:08.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-10-25T22:41:58.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-10-25T21:50:34.000Z", + "fileChanged": "2", + "insertions": "333", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-10-25T16:03:19.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-10-21T06:40:15.000Z", + "fileChanged": "2", + "insertions": "70", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-10-25T18:22:36.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-23T01:28:26.000Z", + "fileChanged": "3", + "insertions": "10", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "paul@querna.org", + "date": "2010-10-25T17:27:39.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-25T03:11:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-25T02:20:36.000Z", + "fileChanged": "1", + "deletions": "136", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-04T09:11:27.000Z", + "fileChanged": "24", + "insertions": "500", + "deletions": "1763", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-23T23:01:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-23T22:46:58.000Z", + "fileChanged": "5", + "insertions": "97", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-23T22:35:58.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-23T21:26:31.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-23T21:11:30.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-23T18:59:32.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-23T18:36:30.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-23T18:22:24.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Stéphan Kochen ", + "authorEmail": "stephan@kochen.nl", + "date": "2010-10-22T10:08:55.000Z", + "fileChanged": "2", + "insertions": "77", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Stéphan Kochen ", + "authorEmail": "stephan@kochen.nl", + "date": "2010-10-21T09:53:02.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Stéphan Kochen ", + "authorEmail": "stephan@kochen.nl", + "date": "2010-10-21T09:47:27.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Stéphan Kochen ", + "authorEmail": "stephan@kochen.nl", + "date": "2010-10-21T09:37:08.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-22T17:17:38.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Vitali Lovich ", + "authorEmail": "vitali.lovich@palm.com", + "date": "2010-07-16T08:07:43.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-22T17:02:30.000Z", + "fileChanged": "5", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-22T00:31:38.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Jorge Chamorro Bieling ", + "authorEmail": "jorge@jorgechamorro.com", + "date": "2010-10-21T12:36:00.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-21T22:38:32.000Z", + "fileChanged": "16", + "insertions": "1201", + "deletions": "582", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-21T22:22:38.000Z", + "fileChanged": "78", + "insertions": "2086", + "deletions": "389", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-21T19:34:37.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-21T19:27:58.000Z", + "fileChanged": "2", + "insertions": "38", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-21T04:01:43.000Z", + "fileChanged": "1", + "insertions": "86", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-21T02:20:44.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-21T00:55:25.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-10-18T22:50:56.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-10-19T20:28:13.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-10-14T00:15:56.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-10-19T19:01:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-10-19T18:36:10.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-10-20T20:56:22.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-20T20:03:39.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Aaron Heckmann ", + "authorEmail": "aaron.heckmann+github@gmail.com", + "date": "2010-10-19T12:42:00.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-10-19T01:17:33.000Z", + "fileChanged": "3", + "insertions": "46", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-20T18:10:40.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Nikhil Marathe ", + "authorEmail": "nsm.nikhil@gmail.com", + "date": "2010-10-19T03:36:26.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-19T00:48:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-19T00:13:30.000Z", + "fileChanged": "78", + "insertions": "2217", + "deletions": "3656", + "type": "Commit" + }, + { + "authorName": "Johan Euphrosine ", + "authorEmail": "proppy@aminche.com", + "date": "2010-10-06T17:18:08.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Mark Nottingham ", + "authorEmail": "mnot@mnot.net", + "date": "2010-10-18T05:14:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jorge Chamorro Bieling ", + "authorEmail": "jorge@jorgechamorro.com", + "date": "2010-10-18T20:08:42.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-18T22:05:18.000Z", + "fileChanged": "1", + "insertions": "40", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-18T22:00:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-18T21:46:25.000Z", + "fileChanged": "5", + "insertions": "156", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "Sami Samhuri ", + "authorEmail": "sami.samhuri@gmail.com", + "date": "2010-10-13T14:51:53.000Z", + "fileChanged": "1", + "insertions": "63", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "AJ ONeal ", + "authorEmail": "coolaj86@gmail.com", + "date": "2010-10-13T22:27:51.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-10-07T23:25:30.000Z", + "fileChanged": "1", + "insertions": "135", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-18T18:15:20.000Z", + "fileChanged": "3", + "insertions": "62", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-18T05:57:40.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Peteris Krumins ", + "authorEmail": "peteris.krumins@gmail.com", + "date": "2010-10-12T20:52:26.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-15T17:05:22.000Z", + "fileChanged": "3", + "insertions": "89", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-13T23:20:24.000Z", + "fileChanged": "4", + "insertions": "83", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-13T21:16:49.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Nathan Rajlich ", + "authorEmail": "nathan@tootallnate.net", + "date": "2010-10-13T09:45:37.000Z", + "fileChanged": "3", + "insertions": "37", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Joshua Peek ", + "authorEmail": "josh@joshpeek.com", + "date": "2010-10-12T04:19:44.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-10-12T21:13:44.000Z", + "fileChanged": "3", + "insertions": "19", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-13T08:47:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tom Hughes ", + "authorEmail": "tom.hughes@palm.com", + "date": "2010-10-12T21:01:58.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-12T18:54:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-12T18:49:41.000Z", + "fileChanged": "5", + "insertions": "67", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T23:40:28.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T23:39:40.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T23:36:12.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-11T23:09:02.000Z", + "fileChanged": "8", + "insertions": "17", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-11T23:06:44.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-11T23:04:18.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-11T23:03:28.000Z", + "fileChanged": "1", + "deletions": "50", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-11T23:03:02.000Z", + "fileChanged": "1", + "deletions": "46", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-11T23:02:05.000Z", + "fileChanged": "4", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-11T23:01:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T23:08:19.000Z", + "fileChanged": "2", + "insertions": "108", + "deletions": "108", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T23:07:18.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T23:00:36.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-11T21:04:09.000Z", + "fileChanged": "55", + "insertions": "543", + "deletions": "541", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T21:54:32.000Z", + "fileChanged": "1", + "insertions": "65", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-10-11T15:19:11.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T08:22:38.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T08:22:24.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-10-11T07:19:40.000Z", + "fileChanged": "1", + "insertions": "43", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T06:09:14.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T05:05:49.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T03:57:33.000Z", + "fileChanged": "2", + "deletions": "12", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T03:18:47.000Z", + "fileChanged": "1", + "insertions": "77", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T03:16:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-10-11T02:38:57.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T02:24:33.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T02:08:51.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-11T00:21:36.000Z", + "fileChanged": "5", + "insertions": "86", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-09T23:04:38.000Z", + "fileChanged": "6", + "insertions": "101", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-09T22:10:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-09T21:21:26.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-09T19:48:22.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-09T19:46:06.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-09T19:40:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-09T01:26:53.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-09T19:15:14.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Sean Coates ", + "authorEmail": "sean@seancoates.com", + "date": "2010-10-09T16:25:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-09T07:56:37.000Z", + "fileChanged": "1", + "insertions": "197", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-09T07:55:51.000Z", + "fileChanged": "2", + "insertions": "200", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-07T23:17:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-07T16:58:08.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Joshaven Potter ", + "authorEmail": "yourtech@gmail.com", + "date": "2010-10-07T03:05:23.000Z", + "fileChanged": "28", + "insertions": "85", + "deletions": "86", + "type": "Commit" + }, + { + "authorName": "TJ Holowaychuk ", + "authorEmail": "tjholowayhuk@gmail.com", + "date": "2010-10-07T02:05:01.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-05T06:22:53.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-05T22:25:07.000Z", + "fileChanged": "34", + "insertions": "652", + "deletions": "431", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-04T19:52:46.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-10-04T19:22:59.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-04T17:50:35.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-02T22:07:54.000Z", + "fileChanged": "18", + "insertions": "809", + "deletions": "809", + "type": "Commit" + }, + { + "authorName": "David Siegel ", + "authorEmail": "david@artcom.de", + "date": "2010-09-25T09:13:11.000Z", + "fileChanged": "2", + "insertions": "198", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-01T02:55:28.000Z", + "fileChanged": "8", + "insertions": "626", + "deletions": "191", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-10-02T06:22:34.000Z", + "fileChanged": "4", + "insertions": "12", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Mark Nottingham ", + "authorEmail": "mnot@mnot.net", + "date": "2010-09-10T01:56:35.000Z", + "fileChanged": "3", + "insertions": "153", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Marco Rogers ", + "authorEmail": "marco.rogers@gmail.com", + "date": "2010-09-27T17:34:16.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-01T21:18:59.000Z", + "fileChanged": "150", + "insertions": "108574", + "deletions": "6087", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-01T18:31:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-01T18:01:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Evan Larkin ", + "authorEmail": "evan.larkin.iit@gmail.com", + "date": "2010-09-27T03:31:09.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-10-01T00:12:56.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Mark Nottingham ", + "authorEmail": "mnot@mnot.net", + "date": "2010-09-29T09:38:48.000Z", + "fileChanged": "3", + "insertions": "53", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Evan Larkin ", + "authorEmail": "evan.larkin.iit@gmail.com", + "date": "2010-09-26T16:36:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-30T19:20:33.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-30T19:16:48.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-30T18:45:27.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-30T18:41:50.000Z", + "fileChanged": "1", + "insertions": "50", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-29T23:11:00.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-09-24T15:02:08.000Z", + "fileChanged": "10", + "insertions": "56", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-28T18:42:47.000Z", + "fileChanged": "3", + "insertions": "141", + "deletions": "146", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-28T18:38:27.000Z", + "fileChanged": "3", + "insertions": "34", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-28T18:14:24.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-28T18:05:10.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-28T10:17:44.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-28T10:08:00.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-28T09:31:31.000Z", + "fileChanged": "6", + "deletions": "8", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Aaron Heckmann ", + "authorEmail": "aaron.heckmann+github@gmail.com", + "date": "2010-09-23T12:14:16.000Z", + "fileChanged": "4", + "insertions": "12", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-28T08:14:38.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-24T09:21:17.000Z", + "fileChanged": "4", + "insertions": "26", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-24T02:55:26.000Z", + "fileChanged": "3", + "insertions": "65", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2010-09-22T12:51:53.000Z", + "fileChanged": "2", + "insertions": "70", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-09-23T00:58:08.000Z", + "fileChanged": "2", + "insertions": "72", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-22T18:14:58.000Z", + "fileChanged": "73", + "insertions": "1577", + "deletions": "103182", + "type": "Commit" + }, + { + "authorName": "Tj Holowaychuk ", + "authorEmail": "tj@vision-media.ca", + "date": "2010-09-22T17:11:37.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-22T17:21:15.000Z", + "fileChanged": "73", + "insertions": "103182", + "deletions": "1577", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2010-09-22T17:16:18.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-09-21T23:51:55.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-20T23:51:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-20T19:52:07.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-20T17:03:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tim-Smart ", + "authorEmail": "tim@fostle.com", + "date": "2010-09-20T01:50:26.000Z", + "fileChanged": "2", + "insertions": "59", + "deletions": "91", + "type": "Commit" + }, + { + "authorName": "Jorge Chamorro Bieling ", + "authorEmail": "jorge@jorgechamorro.com", + "date": "2010-09-19T08:05:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-20T00:22:18.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-09-19T23:00:46.000Z", + "fileChanged": "3", + "insertions": "28", + "deletions": "188", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-09-19T22:20:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-19T21:25:13.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jorge Chamorro Bieling ", + "authorEmail": "jorge@jorgechamorro.com", + "date": "2010-09-19T19:54:41.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-19T20:32:46.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-19T20:13:57.000Z", + "fileChanged": "3", + "insertions": "7", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-19T18:53:32.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-19T18:20:25.000Z", + "fileChanged": "3", + "insertions": "280", + "deletions": "261", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-17T08:06:44.000Z", + "fileChanged": "4", + "insertions": "6", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-17T07:23:17.000Z", + "fileChanged": "2", + "deletions": "48", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-17T07:15:44.000Z", + "fileChanged": "5", + "insertions": "27", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-17T07:03:17.000Z", + "fileChanged": "1", + "deletions": "14", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-17T07:01:07.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-17T06:22:58.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-17T06:16:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-17T06:13:03.000Z", + "fileChanged": "6", + "insertions": "57", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-17T05:22:38.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-17T04:33:32.000Z", + "fileChanged": "66", + "insertions": "4721", + "deletions": "1328", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-17T04:07:22.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-17T03:50:56.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-17T02:04:09.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-17T01:51:50.000Z", + "fileChanged": "1", + "deletions": "26", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-09-16T22:27:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-09-16T21:58:04.000Z", + "fileChanged": "6", + "insertions": "60", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-16T21:59:55.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-16T21:49:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-16T21:40:41.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-09-16T11:08:09.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-09-16T12:30:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-09-16T12:04:37.000Z", + "fileChanged": "1", + "insertions": "211", + "deletions": "210", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-09-16T11:53:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-09-15T22:16:57.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-15T23:17:11.000Z", + "fileChanged": "2", + "deletions": "10", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Sam Stephenson ", + "authorEmail": "sam@37signals.com", + "date": "2010-09-15T14:52:23.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-15T22:47:28.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-15T22:20:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-15T06:02:48.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-14T22:39:27.000Z", + "fileChanged": "3", + "insertions": "10", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Mark Nottingham ", + "authorEmail": "mnot@mnot.net", + "date": "2010-09-09T06:29:35.000Z", + "fileChanged": "3", + "insertions": "118", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-14T17:29:56.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-09-14T16:23:48.000Z", + "fileChanged": "2", + "insertions": "55", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-13T22:40:20.000Z", + "fileChanged": "3", + "insertions": "133", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-09-13T18:54:30.000Z", + "fileChanged": "3", + "insertions": "66", + "deletions": "127", + "type": "Commit" + }, + { + "authorName": "Tony Metzidis ", + "authorEmail": "tonym@tonym.us", + "date": "2010-09-11T07:44:29.000Z", + "fileChanged": "6", + "insertions": "33", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Tony Metzidis ", + "authorEmail": "tonym@tonym.us", + "date": "2010-09-11T04:37:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-13T18:40:04.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-13T04:58:06.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-13T04:47:56.000Z", + "fileChanged": "1", + "insertions": "74", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-13T04:23:53.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-12T03:40:46.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-09-10T06:27:17.000Z", + "fileChanged": "3", + "insertions": "32", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-10T01:49:28.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-09-09T01:42:32.000Z", + "fileChanged": "5", + "insertions": "32", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-09T23:22:57.000Z", + "fileChanged": "3", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-09-09T18:36:51.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-09T22:47:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-09T18:08:16.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-08T06:52:40.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-08T06:48:42.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "114", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-08T06:31:04.000Z", + "fileChanged": "1", + "deletions": "34", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-08T06:04:27.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-08T05:52:09.000Z", + "fileChanged": "1", + "deletions": "20", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-08T05:36:41.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-08T05:00:16.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-08T04:40:15.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-07T23:30:17.000Z", + "fileChanged": "4", + "insertions": "55", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-07T23:29:53.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-07T22:20:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-06T20:35:32.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-06T19:50:13.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-06T19:16:47.000Z", + "fileChanged": "1", + "insertions": "55", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-06T19:10:33.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-06T10:07:32.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-06T04:09:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-06T03:49:20.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-05T20:30:30.000Z", + "fileChanged": "3", + "insertions": "103", + "deletions": "130", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-05T18:10:59.000Z", + "fileChanged": "3", + "insertions": "48", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Tim-Smart ", + "authorEmail": "tim@fostle.com", + "date": "2010-09-05T13:12:35.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-05T03:59:24.000Z", + "fileChanged": "4", + "insertions": "114", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-05T03:58:51.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-04T20:56:27.000Z", + "fileChanged": "2", + "deletions": "16", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-04T20:48:04.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Tim-Smart ", + "authorEmail": "tim@fostle.com", + "date": "2010-08-21T11:18:15.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Tim-Smart ", + "authorEmail": "tim@fostle.com", + "date": "2010-08-21T06:28:00.000Z", + "fileChanged": "3", + "insertions": "179", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-09-07T14:38:43.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-09T17:30:37.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-09-09T00:25:59.000Z", + "fileChanged": "2", + "insertions": "122", + "deletions": "123", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-09T00:16:18.000Z", + "fileChanged": "7", + "insertions": "1832", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-09T00:14:42.000Z", + "fileChanged": "206", + "insertions": "24637", + "deletions": "25568", + "type": "Commit" + }, + { + "authorName": "Tobie Langel ", + "authorEmail": "tobie.langel@gmail.com", + "date": "2010-09-08T19:09:13.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-08T19:03:33.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Tobie Langel ", + "authorEmail": "tobie.langel@gmail.com", + "date": "2010-09-08T12:28:31.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tobie Langel ", + "authorEmail": "tobie.langel@gmail.com", + "date": "2010-09-08T11:19:25.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Tobie Langel ", + "authorEmail": "tobie.langel@gmail.com", + "date": "2010-09-08T11:15:05.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-20T16:59:33.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-20T15:15:37.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-22T00:00:50.000Z", + "fileChanged": "3", + "deletions": "52", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-20T13:32:22.000Z", + "fileChanged": "1", + "deletions": "11", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-08T17:14:04.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2010-09-04T04:25:35.000Z", + "fileChanged": "3", + "insertions": "77", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2010-09-04T04:53:53.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-09-08T05:34:21.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-06T19:18:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-06T19:12:36.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-07T23:28:49.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-09-05T09:27:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Benjamin Thomas ", + "authorEmail": "benjamin@benjaminthomas.org", + "date": "2010-09-01T11:01:38.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-09-01T00:59:50.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-31T23:45:17.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-30T23:35:58.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-30T21:17:27.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-30T21:15:28.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Marco Rogers ", + "authorEmail": "marco.rogers@gmail.com", + "date": "2010-08-25T04:36:08.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Marco Rogers ", + "authorEmail": "marco.rogers@gmail.com", + "date": "2010-08-25T03:46:37.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Bradley Meck ", + "authorEmail": "bradley.meck@gmail.com", + "date": "2010-08-30T20:26:53.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2010-08-30T09:04:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-30T19:02:01.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Euphrosine ", + "authorEmail": "proppy@aminche.com", + "date": "2010-08-25T08:18:24.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Russell Haering ", + "authorEmail": "russellhaering@gmail.com", + "date": "2010-08-23T20:12:57.000Z", + "fileChanged": "3", + "insertions": "60", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Benjamin Thomas ", + "authorEmail": "benjamin@benjaminthomas.org", + "date": "2010-08-27T08:50:12.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-27T22:38:46.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-27T22:23:39.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-27T20:58:52.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-27T13:20:18.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Johan Euphrosine ", + "authorEmail": "proppy@aminche.com", + "date": "2010-08-23T17:21:27.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-08-23T12:15:16.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Russell Haering ", + "authorEmail": "russellhaering@gmail.com", + "date": "2010-08-23T06:55:22.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Johan Euphrosine ", + "authorEmail": "proppy@aminche.com", + "date": "2010-08-22T05:50:40.000Z", + "fileChanged": "2", + "insertions": "77", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Johan Euphrosine ", + "authorEmail": "proppy@aminche.com", + "date": "2010-08-22T03:55:34.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-08-23T08:26:19.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-08-23T03:18:25.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-08-22T20:37:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Aria Stewart ", + "authorEmail": "aredridel@nbtsc.org", + "date": "2010-08-22T05:36:33.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Johan Euphrosine ", + "authorEmail": "proppy@aminche.com", + "date": "2010-08-20T11:16:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Johan Euphrosine ", + "authorEmail": "proppy@aminche.com", + "date": "2010-08-17T17:07:45.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Aria Stewart ", + "authorEmail": "aredridel@nbtsc.org", + "date": "2010-08-21T21:26:42.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-21T23:34:38.000Z", + "fileChanged": "2", + "insertions": "108", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-21T08:19:39.000Z", + "fileChanged": "5", + "insertions": "38", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-21T07:30:18.000Z", + "fileChanged": "1", + "insertions": "43", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-20T15:49:20.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-20T09:00:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-20T08:52:58.000Z", + "fileChanged": "5", + "insertions": "28", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-20T06:29:06.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-20T02:24:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-08-20T01:58:28.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-20T01:49:27.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-19T08:40:28.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2010-08-18T04:04:56.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2010-08-17T23:53:27.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2010-08-17T15:39:54.000Z", + "fileChanged": "1", + "insertions": "72", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2010-08-12T16:50:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-18T23:37:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-19T05:50:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-17T20:59:14.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-18T20:16:32.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-18T15:47:36.000Z", + "fileChanged": "5", + "insertions": "74", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-17T20:49:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-17T20:19:19.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-17T18:24:10.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-17T15:43:26.000Z", + "fileChanged": "2", + "insertions": "212", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-17T15:21:43.000Z", + "fileChanged": "25", + "insertions": "62", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-17T13:38:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-17T15:37:25.000Z", + "fileChanged": "150", + "insertions": "8072", + "deletions": "6510", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-17T15:16:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-17T15:15:46.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-17T10:59:36.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Marco Rogers ", + "authorEmail": "marco.rogers@gmail.com", + "date": "2010-08-17T04:10:49.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-16T21:15:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-15T21:27:05.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-15T21:01:44.000Z", + "fileChanged": "4", + "insertions": "106", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Illarionov Oleg ", + "authorEmail": "oleg@emby.ru", + "date": "2010-07-18T08:52:09.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-15T17:23:50.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-15T00:48:06.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-08-14T23:13:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-14T21:23:09.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Vanilla Hsu ", + "authorEmail": "v@fatpipi.com", + "date": "2010-08-14T04:49:54.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-13T15:06:31.000Z", + "fileChanged": "4", + "insertions": "19", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-13T15:54:40.000Z", + "fileChanged": "5", + "insertions": "102", + "deletions": "94", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-13T15:13:54.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-13T14:43:53.000Z", + "fileChanged": "71", + "insertions": "2463", + "deletions": "3528", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-08-13T03:23:41.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-08-13T01:45:51.000Z", + "fileChanged": "1", + "insertions": "133", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-08-12T16:51:23.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-08-11T23:00:02.000Z", + "fileChanged": "5", + "insertions": "201", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-12T17:11:03.000Z", + "fileChanged": "71", + "insertions": "3528", + "deletions": "2463", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-12T17:06:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2010-08-12T06:14:12.000Z", + "fileChanged": "1", + "insertions": "47", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-08-11T21:03:56.000Z", + "fileChanged": "2", + "insertions": "97", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-08-11T23:38:42.000Z", + "fileChanged": "15", + "insertions": "322", + "deletions": "295", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2010-08-09T09:18:32.000Z", + "fileChanged": "2", + "insertions": "229", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-11T19:44:35.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-18T07:26:49.000Z", + "fileChanged": "10", + "insertions": "133", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Fedor Indutny ", + "authorEmail": "fedor.indutny@gmail.com", + "date": "2010-08-11T16:27:41.000Z", + "fileChanged": "1", + "insertions": "99", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-11T07:23:12.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-08-09T00:53:55.000Z", + "fileChanged": "3", + "insertions": "107", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-11T00:37:30.000Z", + "fileChanged": "3", + "insertions": "56", + "deletions": "57", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-10T21:47:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-10T16:17:11.000Z", + "fileChanged": "54", + "insertions": "875", + "deletions": "276", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-10T04:23:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-08-09T01:31:30.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-09T22:33:57.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-08-09T00:40:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-08-07T14:11:59.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-08T20:12:21.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-08T19:13:20.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-08T18:52:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Trent Mick ", + "authorEmail": "trentm@gmail.com", + "date": "2010-08-06T18:17:45.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-08-05T04:06:46.000Z", + "fileChanged": "3", + "insertions": "27", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Bert Belder ", + "authorEmail": "bertbelder@gmail.com", + "date": "2010-08-05T02:15:20.000Z", + "fileChanged": "8", + "insertions": "168", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-06T19:31:41.000Z", + "fileChanged": "4", + "insertions": "487", + "deletions": "495", + "type": "Commit" + }, + { + "authorName": "Tj Holowaychuk ", + "authorEmail": "tj@vision-media.ca", + "date": "2010-08-05T17:47:26.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Tj Holowaychuk ", + "authorEmail": "tj@vision-media.ca", + "date": "2010-08-05T17:32:13.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tj Holowaychuk ", + "authorEmail": "tj@vision-media.ca", + "date": "2010-08-05T17:15:22.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "cloudhead ", + "authorEmail": "self@cloudhead.net", + "date": "2010-08-05T07:13:40.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-08-05T09:38:11.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-04T23:50:59.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-04T23:07:10.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Nick Stenning ", + "authorEmail": "nick@whiteink.com", + "date": "2010-08-04T21:55:24.000Z", + "fileChanged": "43", + "insertions": "83", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Nick Stenning ", + "authorEmail": "nick@whiteink.com", + "date": "2010-08-04T20:45:52.000Z", + "fileChanged": "3", + "insertions": "50", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-04T19:04:12.000Z", + "fileChanged": "4", + "insertions": "29", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-04T18:46:42.000Z", + "fileChanged": "10", + "insertions": "224", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-04T18:38:42.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Samuel Shull ", + "authorEmail": "brickysam26@samuel-shulls-computer.local", + "date": "2010-08-04T05:25:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-04T17:38:19.000Z", + "fileChanged": "4", + "insertions": "12", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-04T17:20:40.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-08-04T01:39:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-08-03T22:57:44.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-03T17:33:16.000Z", + "fileChanged": "48", + "insertions": "1938", + "deletions": "526", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-08-02T09:59:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-08-02T07:39:09.000Z", + "fileChanged": "4", + "insertions": "44", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2010-08-02T05:22:20.000Z", + "fileChanged": "3", + "insertions": "71", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-08-01T00:13:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-08-01T00:55:28.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Danny Coates ", + "authorEmail": "dannycoates@gmail.com", + "date": "2010-08-01T22:46:48.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-31T21:32:59.000Z", + "fileChanged": "4", + "insertions": "91", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-30T19:20:32.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-30T17:54:43.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-07-30T12:01:03.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "79", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-30T16:42:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-29T21:48:07.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-07-28T12:20:23.000Z", + "fileChanged": "4", + "insertions": "71", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-28T03:36:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-27T19:19:08.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-27T19:16:48.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-27T17:58:45.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "55", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-27T02:08:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-27T02:07:31.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-07-27T01:38:49.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-26T22:01:54.000Z", + "fileChanged": "3", + "insertions": "46", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-26T21:26:42.000Z", + "fileChanged": "25", + "insertions": "1450", + "deletions": "643", + "type": "Commit" + }, + { + "authorName": "Benjamin Kramer ", + "authorEmail": "benny.kra@gmail.com", + "date": "2010-07-24T13:29:11.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Benjamin Kramer ", + "authorEmail": "benny.kra@gmail.com", + "date": "2010-07-23T20:20:18.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Benjamin Kramer ", + "authorEmail": "benny.kra@gmail.com", + "date": "2010-07-17T15:45:47.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-26T19:42:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Chandra Sekar S ", + "authorEmail": "chandru.in@gmail.com", + "date": "2010-07-26T06:38:37.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-26T17:35:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-26T06:39:58.000Z", + "fileChanged": "5", + "insertions": "32", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-26T06:21:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Dmitry Baranovskiy ", + "authorEmail": "Dmitry@Baranovskiy.com", + "date": "2010-07-22T11:51:26.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Dmitry Baranovskiy ", + "authorEmail": "Dmitry@Baranovskiy.com", + "date": "2010-07-22T11:26:55.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-23T23:36:47.000Z", + "fileChanged": "4", + "insertions": "105", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-23T20:52:44.000Z", + "fileChanged": "4", + "insertions": "95", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-23T19:14:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-07-23T07:41:28.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Andrew Naylor ", + "authorEmail": "argon@mkbot.net", + "date": "2010-07-23T00:20:02.000Z", + "fileChanged": "2", + "insertions": "68", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-21T19:43:19.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-21T19:31:43.000Z", + "fileChanged": "62", + "insertions": "2154", + "deletions": "666", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-21T18:44:47.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Chandra Sekar S ", + "authorEmail": "chandru.in@gmail.com", + "date": "2010-07-20T12:46:27.000Z", + "fileChanged": "3", + "insertions": "42", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-07-20T22:23:30.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Sam Shull ", + "authorEmail": "brickysam26@gmail.com", + "date": "2010-07-20T19:41:39.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Robert Keizer ", + "authorEmail": "root@black.bluerack.ca", + "date": "2010-07-20T19:30:33.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-07-20T00:54:49.000Z", + "fileChanged": "3", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-20T03:08:33.000Z", + "fileChanged": "3", + "insertions": "28", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Brian ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-07-19T20:59:09.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-07-15T17:41:40.000Z", + "fileChanged": "6", + "insertions": "54", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-07-19T15:48:58.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-07-19T08:55:11.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Jan Kassens ", + "authorEmail": "jan@kassens.net", + "date": "2010-07-18T19:09:13.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Jan Kassens ", + "authorEmail": "jan@kassens.net", + "date": "2010-07-17T11:20:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jan Kassens ", + "authorEmail": "jan@kassens.net", + "date": "2010-07-18T20:16:43.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-19T17:35:59.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-19T17:32:56.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Benjamin Fritsch ", + "authorEmail": "beanie@benle.de", + "date": "2010-07-19T06:04:22.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-19T17:16:20.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2010-07-18T23:12:27.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-18T06:26:58.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-18T06:10:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-17T08:22:16.000Z", + "fileChanged": "3", + "insertions": "89", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-17T05:36:22.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-17T04:50:26.000Z", + "fileChanged": "5", + "insertions": "33", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-17T02:05:28.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Marco Rogers ", + "authorEmail": "marco.rogers@gmail.com", + "date": "2010-07-16T06:36:35.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-16T01:52:48.000Z", + "fileChanged": "36", + "insertions": "1012", + "deletions": "423", + "type": "Commit" + }, + { + "authorName": "Сергей Крыжановский ", + "authorEmail": "another@dhcp199-223-red.yandex.net", + "date": "2010-07-09T13:05:54.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-07-15T21:36:21.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-15T21:37:03.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-15T21:32:45.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-15T18:32:51.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-15T21:14:05.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-15T21:09:33.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "57", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-15T20:42:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-15T18:47:25.000Z", + "fileChanged": "141", + "insertions": "624", + "deletions": "499", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-15T17:52:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-15T17:36:35.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-14T21:29:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-14T21:22:58.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-13T23:40:54.000Z", + "fileChanged": "4", + "insertions": "56", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-07-05T20:38:13.000Z", + "fileChanged": "8", + "insertions": "547", + "deletions": "252", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-07-15T13:52:15.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-07-14T23:07:17.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-14T18:16:20.000Z", + "fileChanged": "81", + "insertions": "10880", + "deletions": "10005", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-07-14T07:17:21.000Z", + "fileChanged": "4", + "insertions": "12", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-07-14T07:10:38.000Z", + "fileChanged": "4", + "insertions": "98", + "deletions": "92", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-07-14T06:58:15.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-07-14T06:55:15.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-07-14T06:51:08.000Z", + "fileChanged": "3", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-07-14T06:45:24.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-07-14T06:42:23.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-07-14T06:38:49.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-07-14T06:32:38.000Z", + "fileChanged": "1", + "insertions": "58", + "deletions": "100", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-07-14T06:22:41.000Z", + "fileChanged": "7", + "insertions": "83", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-07-03T04:38:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2010-07-14T12:10:17.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-14T16:50:17.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2010-07-14T00:17:05.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "David Siegel ", + "authorEmail": "david.siegel@artcom.de", + "date": "2010-07-01T18:19:54.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-13T17:16:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-07-13T08:33:51.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-07-13T07:22:33.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-07-13T06:59:57.000Z", + "fileChanged": "4", + "insertions": "43", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-07-12T22:05:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-07-12T22:04:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "rick ", + "authorEmail": "technoweenie@gmail.com", + "date": "2010-06-29T01:33:21.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2010-07-12T22:43:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2010-07-12T22:18:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brian ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-07-12T20:00:52.000Z", + "fileChanged": "1", + "insertions": "259", + "deletions": "225", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-12T21:18:09.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-07-12T15:48:37.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-07-12T15:48:33.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-07-12T15:48:28.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-07-12T15:48:16.000Z", + "fileChanged": "2", + "insertions": "39", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-07-12T15:47:45.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Adam Wiggins ", + "authorEmail": "adam@heroku.com", + "date": "2010-07-11T20:53:41.000Z", + "fileChanged": "1", + "insertions": "92", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2010-07-11T22:37:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2010-07-11T21:50:24.000Z", + "fileChanged": "11", + "insertions": "2259", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2010-07-10T18:38:42.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-07T18:10:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-07T17:47:38.000Z", + "fileChanged": "85", + "insertions": "4064", + "deletions": "1471", + "type": "Commit" + }, + { + "authorName": "Dmitriy Shalashov ", + "authorEmail": "skaurus@gmail.com", + "date": "2010-07-07T16:43:39.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-07-04T06:08:35.000Z", + "fileChanged": "1", + "insertions": "45", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Jerome Etienne ", + "authorEmail": "jerome.etienne@gmail.com", + "date": "2010-07-07T09:58:33.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-07T13:13:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-03T09:31:03.000Z", + "fileChanged": "23", + "deletions": "4204", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-03T08:54:35.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-03T07:30:32.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-03T06:34:15.000Z", + "fileChanged": "5", + "insertions": "28", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-03T06:36:33.000Z", + "fileChanged": "54", + "insertions": "1486", + "deletions": "347", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-06-22T20:46:55.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-03T06:16:36.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-02T06:36:53.000Z", + "fileChanged": "1", + "deletions": "13", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-01T21:31:42.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-01T21:29:06.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-07-01T18:10:22.000Z", + "fileChanged": "5", + "insertions": "10", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-30T22:03:45.000Z", + "fileChanged": "5", + "insertions": "24", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-30T21:30:35.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-30T07:54:03.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Blake Mizerany ", + "authorEmail": "blake.mizerany@gmail.com", + "date": "2010-06-30T06:12:46.000Z", + "fileChanged": "38", + "insertions": "96", + "deletions": "96", + "type": "Commit" + }, + { + "authorName": "Dmitry Baranovskiy ", + "authorEmail": "Dmitry@Baranovskiy.com", + "date": "2010-06-29T08:24:43.000Z", + "fileChanged": "2", + "insertions": "76", + "deletions": "99", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-30T04:20:32.000Z", + "fileChanged": "2", + "insertions": "183", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-06-30T03:10:01.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Blake Mizerany ", + "authorEmail": "blake.mizerany@gmail.com", + "date": "2010-06-30T02:10:39.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-29T16:36:50.000Z", + "fileChanged": "4", + "insertions": "17", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-30T02:28:59.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Dmitry Baranovskiy ", + "authorEmail": "Dmitry@Baranovskiy.com", + "date": "2010-06-28T01:57:11.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Dmitry Baranovskiy ", + "authorEmail": "Dmitry@Baranovskiy.com", + "date": "2010-06-28T01:05:22.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-29T16:53:12.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-29T04:09:44.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-29T04:12:33.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-29T03:47:12.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-29T00:27:17.000Z", + "fileChanged": "2", + "insertions": "82", + "deletions": "100", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-28T22:37:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ruben Rodriguez ", + "authorEmail": "cha0s@therealcha0s.net", + "date": "2010-06-24T10:17:05.000Z", + "fileChanged": "10", + "insertions": "211", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-28T15:47:01.000Z", + "fileChanged": "54", + "insertions": "1473", + "deletions": "1012", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-06-27T11:51:39.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-25T16:46:10.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-06-24T19:26:23.000Z", + "fileChanged": "4", + "insertions": "106", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-24T21:23:12.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-24T16:37:18.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-24T14:51:45.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-24T04:10:13.000Z", + "fileChanged": "3", + "insertions": "251", + "deletions": "194", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-24T03:31:48.000Z", + "fileChanged": "72", + "insertions": "1608", + "deletions": "798", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-24T00:40:51.000Z", + "fileChanged": "92", + "insertions": "352", + "deletions": "396", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-23T22:27:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-23T16:09:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-23T02:37:29.000Z", + "fileChanged": "3", + "deletions": "141", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-23T02:33:01.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "169", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2010-05-29T00:52:59.000Z", + "fileChanged": "3", + "insertions": "69", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-22T20:23:45.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-22T20:14:03.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-22T09:09:58.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Marshall Culpepper ", + "authorEmail": "marshall.law@gmail.com", + "date": "2010-06-22T06:31:19.000Z", + "fileChanged": "8", + "insertions": "88", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-22T03:41:53.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-22T01:54:28.000Z", + "fileChanged": "2", + "insertions": "210", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-22T00:03:19.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-21T20:34:10.000Z", + "fileChanged": "5", + "insertions": "27", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-06-21T18:53:17.000Z", + "fileChanged": "2", + "insertions": "63", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-21T17:21:55.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-20T18:54:51.000Z", + "fileChanged": "9", + "insertions": "11", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-20T06:13:28.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-20T05:31:15.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-20T03:30:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-20T02:31:09.000Z", + "fileChanged": "5", + "insertions": "43", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-20T00:41:34.000Z", + "fileChanged": "4", + "insertions": "89", + "deletions": "89", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-19T01:14:06.000Z", + "fileChanged": "6", + "insertions": "233", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-06-18T09:46:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-06-18T17:34:56.000Z", + "fileChanged": "22", + "insertions": "849", + "deletions": "849", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-06-18T09:42:58.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-18T16:46:18.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-18T01:36:31.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-18T01:23:40.000Z", + "fileChanged": "7", + "insertions": "244", + "deletions": "207", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-17T22:38:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-16T18:45:48.000Z", + "fileChanged": "49", + "insertions": "2534", + "deletions": "788", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-06-15T17:35:49.000Z", + "fileChanged": "6", + "insertions": "302", + "deletions": "216", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-16T18:00:43.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "David Siegel ", + "authorEmail": "david@artcom.de", + "date": "2010-06-16T17:42:55.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-16T17:28:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-06-16T13:51:19.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-06-16T07:24:41.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Aaron Heckmann ", + "authorEmail": "aaron.heckmann@gmail.com", + "date": "2010-06-16T04:52:15.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-16T03:04:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Peter Dekkers ", + "authorEmail": "soderblom.peter@gmail.com", + "date": "2010-06-07T20:52:20.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-06-15T04:13:09.000Z", + "fileChanged": "3", + "insertions": "95", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-16T01:29:45.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-16T01:19:25.000Z", + "fileChanged": "9", + "insertions": "195", + "deletions": "232", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-06-15T20:33:44.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-15T21:52:00.000Z", + "fileChanged": "36", + "insertions": "2142", + "deletions": "237", + "type": "Commit" + }, + { + "authorName": "Ben Lowery ", + "authorEmail": "ben@blowery.org", + "date": "2010-06-15T19:16:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-15T20:35:47.000Z", + "fileChanged": "1", + "insertions": "71", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-15T20:31:59.000Z", + "fileChanged": "1", + "insertions": "86", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-15T20:16:20.000Z", + "fileChanged": "1", + "insertions": "288", + "deletions": "324", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-15T19:41:14.000Z", + "fileChanged": "1", + "deletions": "322", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-15T19:38:22.000Z", + "fileChanged": "17", + "insertions": "51", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-06-15T18:44:33.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-06-13T06:03:11.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-14T21:38:40.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-14T20:10:23.000Z", + "fileChanged": "3", + "insertions": "7", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-06-14T17:34:34.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Paul Querna ", + "authorEmail": "pquerna@apache.org", + "date": "2010-06-12T09:40:24.000Z", + "fileChanged": "4", + "insertions": "425", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-06-11T20:59:18.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Brian McKenna ", + "authorEmail": "brian@brianmckenna.org", + "date": "2010-06-11T11:25:05.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-06-10T21:56:59.000Z", + "fileChanged": "2", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-11T20:16:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-09T23:13:40.000Z", + "fileChanged": "5", + "insertions": "22", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-11T19:45:17.000Z", + "fileChanged": "67", + "insertions": "495", + "deletions": "119", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-11T19:34:34.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-06-11T06:19:43.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-10T21:59:06.000Z", + "fileChanged": "3", + "insertions": "29", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-10T14:58:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2010-06-10T13:06:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Raffaele Sena ", + "authorEmail": "raff367@gmail.com", + "date": "2010-06-09T04:08:05.000Z", + "fileChanged": "12", + "insertions": "2616", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-09T17:09:37.000Z", + "fileChanged": "61", + "insertions": "1623", + "deletions": "313", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-06-09T06:25:55.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-09T01:19:00.000Z", + "fileChanged": "83", + "insertions": "3446", + "deletions": "1160", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-06-09T01:09:17.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-09T00:49:04.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-08T20:05:21.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-08T04:19:25.000Z", + "fileChanged": "1", + "insertions": "43", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-08T00:39:24.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-06-07T23:43:50.000Z", + "fileChanged": "2", + "insertions": "72", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-07T23:23:48.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-07T23:15:41.000Z", + "fileChanged": "4", + "insertions": "20", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-07T23:03:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-31T18:50:35.000Z", + "fileChanged": "6", + "insertions": "426", + "deletions": "69", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-06-07T17:08:57.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-07T00:41:03.000Z", + "fileChanged": "6", + "insertions": "242", + "deletions": "140", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-04T21:23:45.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-02T21:05:37.000Z", + "fileChanged": "2", + "insertions": "172", + "deletions": "57", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-06-04T15:29:10.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-04T01:50:44.000Z", + "fileChanged": "2", + "insertions": "50", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-04T01:44:05.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-03T18:01:47.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-06-03T10:39:12.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-06-03T10:37:21.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "rentzsch ", + "authorEmail": "jwr.git@redshed.net", + "date": "2010-06-03T04:15:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-06-03T01:16:53.000Z", + "fileChanged": "4", + "insertions": "527", + "deletions": "139", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-02T21:46:29.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-02T19:27:53.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Orlando Vazquez ", + "authorEmail": "ovazquez@gmail.com", + "date": "2010-06-01T07:56:08.000Z", + "fileChanged": "5", + "insertions": "207", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-02T16:15:54.000Z", + "fileChanged": "3", + "insertions": "58", + "deletions": "159", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-02T03:16:42.000Z", + "fileChanged": "3", + "insertions": "159", + "deletions": "58", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-06-01T16:28:31.000Z", + "fileChanged": "1", + "insertions": "34", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-31T18:52:20.000Z", + "fileChanged": "79", + "insertions": "5204", + "deletions": "3835", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-30T02:32:33.000Z", + "fileChanged": "5", + "insertions": "28", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-30T02:37:44.000Z", + "fileChanged": "1", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-29T20:38:00.000Z", + "fileChanged": "9", + "insertions": "42", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-29T20:14:38.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-29T20:08:05.000Z", + "fileChanged": "6", + "insertions": "864", + "deletions": "864", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-05-10T00:02:40.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-05-10T00:02:02.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-05-09T23:35:15.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-29T19:25:28.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-05-28T21:48:37.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-05-28T19:17:16.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-28T03:28:12.000Z", + "fileChanged": "2", + "insertions": "101", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-27T00:59:55.000Z", + "fileChanged": "7", + "insertions": "265", + "deletions": "150", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-27T23:49:21.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-05-27T13:48:40.000Z", + "fileChanged": "3", + "insertions": "823", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-27T01:32:56.000Z", + "fileChanged": "4", + "insertions": "89", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-27T01:05:42.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-05-26T17:49:01.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-26T20:37:06.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-26T20:05:31.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-26T17:48:20.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-26T17:15:43.000Z", + "fileChanged": "69", + "insertions": "3820", + "deletions": "868", + "type": "Commit" + }, + { + "authorName": "Sam Hughes ", + "authorEmail": "sam@samuelhughes.com", + "date": "2010-04-29T02:25:43.000Z", + "fileChanged": "2", + "insertions": "46", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-26T02:24:30.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-26T01:39:23.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-26T01:41:31.000Z", + "fileChanged": "4", + "insertions": "43", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-25T00:14:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-24T22:47:40.000Z", + "fileChanged": "2", + "insertions": "132", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-24T19:59:22.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Aapo Laitinen ", + "authorEmail": "aapo.laitinen@iki.fi", + "date": "2010-05-23T18:28:23.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Brian White ", + "authorEmail": "mscdex@mscdex.net", + "date": "2010-05-23T23:04:36.000Z", + "fileChanged": "6", + "insertions": "833", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-23T23:57:20.000Z", + "fileChanged": "3", + "insertions": "17", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "info@bnoordhuis.nl", + "date": "2010-05-23T20:48:50.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-22T20:02:30.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2010-05-21T19:05:55.000Z", + "fileChanged": "3", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-21T16:41:50.000Z", + "fileChanged": "176", + "insertions": "8628", + "deletions": "6128", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-21T09:55:38.000Z", + "fileChanged": "5", + "insertions": "34", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-21T08:22:20.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-21T05:11:26.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-21T05:01:13.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-05-20T22:13:22.000Z", + "fileChanged": "5", + "insertions": "128", + "deletions": "115", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-20T23:11:33.000Z", + "fileChanged": "5", + "insertions": "115", + "deletions": "130", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-05-20T22:13:22.000Z", + "fileChanged": "5", + "insertions": "130", + "deletions": "115", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-20T22:21:40.000Z", + "fileChanged": "5", + "insertions": "64", + "deletions": "54", + "type": "Commit" + }, + { + "authorName": "rentzsch ", + "authorEmail": "jwr.git@redshed.net", + "date": "2010-05-16T19:29:29.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-20T17:12:05.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-20T16:42:47.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-05-19T06:04:24.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-05-09T23:20:15.000Z", + "fileChanged": "1", + "deletions": "48", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-19T21:59:03.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-05-19T18:17:50.000Z", + "fileChanged": "5", + "insertions": "95", + "deletions": "107", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-19T18:01:21.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-05-19T00:40:44.000Z", + "fileChanged": "2", + "insertions": "71", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-18T16:32:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-05-18T02:42:24.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-05-18T02:42:24.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-05-18T02:25:51.000Z", + "fileChanged": "3", + "insertions": "161", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-17T22:22:09.000Z", + "fileChanged": "4", + "insertions": "74", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-17T20:58:15.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-05-17T13:33:56.000Z", + "fileChanged": "3", + "insertions": "55", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "visionmedia ", + "authorEmail": "tj@vision-media.ca", + "date": "2010-05-14T14:52:49.000Z", + "fileChanged": "4", + "insertions": "209", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Jonas Pfenniger ", + "authorEmail": "jonas@pfenniger.name", + "date": "2010-05-14T11:13:27.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jonas Pfenniger ", + "authorEmail": "jonas@pfenniger.name", + "date": "2010-05-14T11:12:41.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jonas Pfenniger ", + "authorEmail": "jonas@pfenniger.name", + "date": "2010-05-14T07:59:31.000Z", + "fileChanged": "3", + "insertions": "70", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "Jonas Pfenniger ", + "authorEmail": "jonas@pfenniger.name", + "date": "2010-05-14T07:57:02.000Z", + "fileChanged": "3", + "insertions": "62", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Andrew Johnston ", + "authorEmail": "apjohnsto@gmail.com", + "date": "2010-03-22T07:25:24.000Z", + "fileChanged": "4", + "insertions": "113", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-14T23:36:17.000Z", + "fileChanged": "3", + "insertions": "65", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-14T23:34:47.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-14T23:30:41.000Z", + "fileChanged": "1", + "deletions": "66", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-14T18:48:14.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-14T18:15:31.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-05-14T07:06:32.000Z", + "fileChanged": "1", + "insertions": "68", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-05-14T07:07:01.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-05-07T20:37:30.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2010-05-13T23:50:26.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-13T21:58:31.000Z", + "fileChanged": "5", + "insertions": "31", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-13T23:24:05.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-13T22:54:50.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Elijah Insua ", + "authorEmail": "tmpvar@gmail.com", + "date": "2010-05-13T19:42:17.000Z", + "fileChanged": "3", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ben Noordhuis ", + "authorEmail": "bnoordhuis@bender.(none)", + "date": "2010-05-12T20:35:33.000Z", + "fileChanged": "4", + "insertions": "67", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-12T19:45:53.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-12T19:17:45.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-12T19:15:58.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-12T18:42:01.000Z", + "fileChanged": "3", + "insertions": "53", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-12T17:42:14.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-12T17:01:27.000Z", + "fileChanged": "4", + "insertions": "57", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-11T17:25:27.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-10T23:38:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-10T23:38:14.000Z", + "fileChanged": "10", + "insertions": "10", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-10T23:05:42.000Z", + "fileChanged": "10", + "insertions": "53", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-10T23:25:43.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-10T16:58:20.000Z", + "fileChanged": "92", + "insertions": "103888", + "deletions": "860", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-10T04:29:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-10T01:46:04.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-09T23:23:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-09T22:07:54.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-09T20:54:58.000Z", + "fileChanged": "6", + "insertions": "115", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-09T19:10:38.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-09T06:28:26.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-09T06:24:24.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-09T05:11:55.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "rentzsch ", + "authorEmail": "jwr.git@redshed.net", + "date": "2010-05-08T06:09:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-08T02:05:59.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "55", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-05-07T19:50:36.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-05-07T05:03:43.000Z", + "fileChanged": "4", + "insertions": "38", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-06T21:15:16.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-06T21:14:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-06T17:39:27.000Z", + "fileChanged": "5", + "insertions": "37", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-06T16:59:35.000Z", + "fileChanged": "91", + "insertions": "5624", + "deletions": "2249", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-05T08:32:18.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Thomas Lee ", + "authorEmail": "thomas.lee@shinetech.com", + "date": "2010-05-05T08:55:04.000Z", + "fileChanged": "2", + "insertions": "118", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Jonathan Knezek ", + "authorEmail": "jdknezek@gmail.com", + "date": "2010-05-06T05:23:45.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Jonathan Knezek ", + "authorEmail": "jdknezek@gmail.com", + "date": "2010-05-06T05:22:05.000Z", + "fileChanged": "3", + "insertions": "823", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-05T05:35:55.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-05T05:06:46.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-05-05T04:58:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-05-05T04:17:29.000Z", + "fileChanged": "3", + "insertions": "16", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-05T04:35:46.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-05-05T01:28:49.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-04T21:21:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2010-05-04T20:49:00.000Z", + "fileChanged": "5", + "insertions": "3780", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-04T17:41:56.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Peter Griess ", + "authorEmail": "pg@std.in", + "date": "2010-05-04T16:26:23.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2010-05-03T22:37:49.000Z", + "fileChanged": "5", + "insertions": "200", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Paulo Matias ", + "authorEmail": "paulo.matias@usp.br", + "date": "2010-05-02T18:21:43.000Z", + "fileChanged": "3", + "insertions": "32", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Paulo Matias ", + "authorEmail": "paulo.matias@usp.br", + "date": "2010-05-02T03:40:21.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-03T20:25:48.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-03T20:18:33.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-03T19:55:33.000Z", + "fileChanged": "1", + "insertions": "133", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-03T18:41:30.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-03T18:23:36.000Z", + "fileChanged": "2", + "insertions": "56", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-03T17:53:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Michaeljohn Clement ", + "authorEmail": "inimino@inimino.org", + "date": "2010-05-03T06:49:24.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-03T01:20:02.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-03T00:38:02.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "127", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-03T00:26:18.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-03T00:02:13.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-02T18:19:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "dpb587 ", + "authorEmail": "code+node@dpbis.net", + "date": "2010-05-02T01:52:20.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-05-02T02:08:08.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-05-02T01:01:06.000Z", + "fileChanged": "2", + "insertions": "39", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-01T21:45:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-04-30T13:35:51.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-04-30T13:33:11.000Z", + "fileChanged": "2", + "insertions": "159", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-05-01T01:36:36.000Z", + "fileChanged": "1", + "insertions": "130", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "kriskowal ", + "authorEmail": "kris.kowal@cixar.com", + "date": "2010-05-01T00:30:14.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-30T22:35:51.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-30T17:33:56.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-30T17:31:21.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-30T17:28:18.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-29T17:41:39.000Z", + "fileChanged": "5", + "insertions": "26", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-29T18:57:52.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-29T17:11:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-29T06:28:52.000Z", + "fileChanged": "4", + "insertions": "172", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Thomas Lee ", + "authorEmail": "tom@tom-debian.sensis.com.au", + "date": "2010-04-28T06:31:28.000Z", + "fileChanged": "3", + "insertions": "49", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-04-28T23:07:13.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-28T22:28:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-28T22:07:15.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-04-28T20:51:16.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-04-28T20:37:09.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-04-28T21:21:58.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-04-28T13:04:08.000Z", + "fileChanged": "9", + "insertions": "205", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-28T19:58:00.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-28T17:46:26.000Z", + "fileChanged": "47", + "insertions": "1254", + "deletions": "505", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-04-28T12:32:00.000Z", + "fileChanged": "1", + "deletions": "18", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-28T01:51:41.000Z", + "fileChanged": "3", + "insertions": "32", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-28T01:45:10.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-04-20T08:46:54.000Z", + "fileChanged": "5", + "insertions": "2", + "deletions": "581", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-04-27T23:17:28.000Z", + "fileChanged": "4", + "insertions": "62", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-04-27T23:16:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-04-19T22:22:59.000Z", + "fileChanged": "6", + "insertions": "51", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-28T00:24:32.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-04-27T07:49:58.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-27T07:31:47.000Z", + "fileChanged": "47", + "insertions": "2252", + "deletions": "579", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-04-27T07:04:32.000Z", + "fileChanged": "1", + "insertions": "310", + "deletions": "137", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-27T03:26:43.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-27T03:26:36.000Z", + "fileChanged": "1", + "insertions": "48", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-27T01:53:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2010-04-26T21:23:17.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2010-04-26T20:26:16.000Z", + "fileChanged": "3", + "insertions": "38", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2010-04-26T21:34:03.000Z", + "fileChanged": "4", + "insertions": "196", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jonas Pfenniger ", + "authorEmail": "jonas@pfenniger.name", + "date": "2010-04-24T20:27:11.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-26T05:29:55.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2010-04-24T07:37:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-24T00:29:36.000Z", + "fileChanged": "1", + "deletions": "160", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-24T00:24:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-24T00:10:01.000Z", + "fileChanged": "19", + "insertions": "8", + "deletions": "5703", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-23T23:05:19.000Z", + "fileChanged": "5", + "insertions": "34", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-23T23:18:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "mape ", + "authorEmail": "mape@mape.me", + "date": "2010-04-23T22:46:31.000Z", + "fileChanged": "3", + "insertions": "479", + "deletions": "192", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-23T21:08:13.000Z", + "fileChanged": "1", + "insertions": "51", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-23T19:05:36.000Z", + "fileChanged": "117", + "insertions": "3466", + "deletions": "1109", + "type": "Commit" + }, + { + "authorName": "Krishna Rajendran ", + "authorEmail": "krishna@emptybox.org", + "date": "2010-04-23T17:29:27.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Brian Hammond ", + "authorEmail": "brian@fictorial.com", + "date": "2010-04-23T15:31:50.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-23T00:53:45.000Z", + "fileChanged": "8", + "insertions": "375", + "deletions": "397", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-23T00:31:35.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-23T00:22:03.000Z", + "fileChanged": "6", + "insertions": "75", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-22T22:48:57.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-22T21:43:25.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-22T21:25:13.000Z", + "fileChanged": "3", + "insertions": "31", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-21T22:15:21.000Z", + "fileChanged": "2", + "insertions": "47", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-21T20:16:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-04-21T01:22:51.000Z", + "fileChanged": "3", + "insertions": "478", + "deletions": "474", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-04-21T01:17:54.000Z", + "fileChanged": "3", + "insertions": "72", + "deletions": "66", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-04-21T01:13:07.000Z", + "fileChanged": "3", + "insertions": "76", + "deletions": "74", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-04-21T10:54:56.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Julian Lamb ", + "authorEmail": "thepurlieu@gmail.com", + "date": "2010-04-20T23:01:41.000Z", + "fileChanged": "4", + "insertions": "81", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-20T21:43:08.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Michaeljohn Clement ", + "authorEmail": "inimino@inimino.org", + "date": "2010-04-20T17:07:55.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-04-19T13:18:16.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-04-19T13:17:37.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-19T22:48:12.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-18T23:57:13.000Z", + "fileChanged": "25", + "insertions": "749", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "Standa Opichal ", + "authorEmail": "opichals@gmail.com", + "date": "2010-04-18T16:24:08.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-04-18T20:35:44.000Z", + "fileChanged": "1", + "insertions": "125", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-18T19:44:23.000Z", + "fileChanged": "1", + "deletions": "57", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Herbert Vojcik ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-04-17T15:18:15.000Z", + "fileChanged": "9", + "insertions": "454", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-04-16T00:52:42.000Z", + "fileChanged": "2", + "insertions": "118", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2010-04-15T19:03:55.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2010-04-15T18:57:35.000Z" + }, + { + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2010-04-15T18:57:17.000Z", + "fileChanged": "2", + "insertions": "110", + "deletions": "83", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-04-15T18:19:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2010-04-15T09:56:42.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-15T08:54:20.000Z", + "fileChanged": "4", + "insertions": "27", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-15T09:09:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-15T09:01:49.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-15T08:37:27.000Z", + "fileChanged": "4", + "insertions": "103", + "deletions": "103", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-15T08:29:39.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "26", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2010-04-15T05:21:15.000Z" + }, + { + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2010-04-15T05:17:22.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-15T01:50:41.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-14T18:59:24.000Z", + "fileChanged": "3", + "insertions": "73", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-14T17:34:17.000Z", + "fileChanged": "182", + "insertions": "9197", + "deletions": "4789", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-14T10:52:15.000Z", + "fileChanged": "2", + "insertions": "38", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-14T10:22:38.000Z", + "fileChanged": "4", + "insertions": "140", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-14T07:41:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-14T07:36:34.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2010-04-14T06:31:33.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-13T23:57:16.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-13T23:43:15.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-13T23:22:12.000Z", + "fileChanged": "1", + "insertions": "63", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-13T22:56:06.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-13T22:43:22.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-13T22:39:15.000Z", + "fileChanged": "3", + "insertions": "90", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-13T20:50:17.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-13T20:44:05.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "113", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-04-12T16:27:32.000Z", + "fileChanged": "4", + "insertions": "101", + "deletions": "114", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-12T23:34:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-12T23:27:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-04-12T21:29:49.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2010-04-12T20:25:16.000Z", + "fileChanged": "6", + "insertions": "1664", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-12T19:34:24.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2010-04-12T19:36:46.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2010-04-12T17:57:22.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-04-12T16:57:24.000Z", + "fileChanged": "8", + "insertions": "115", + "deletions": "57", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-04-11T23:13:32.000Z", + "fileChanged": "2", + "insertions": "241", + "deletions": "88", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-11T23:12:20.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-03-24T06:27:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-11T22:15:36.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-04-11T20:46:24.000Z", + "fileChanged": "8", + "insertions": "65", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-11T19:21:33.000Z", + "fileChanged": "1", + "insertions": "39", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "James Herdman ", + "authorEmail": "james.herdman@gmail.com", + "date": "2010-04-10T16:08:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-09T23:58:29.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-09T22:50:38.000Z", + "fileChanged": "4", + "insertions": "27", + "deletions": "42", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-09T22:34:08.000Z", + "fileChanged": "3", + "insertions": "34", + "deletions": "90", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-09T21:51:20.000Z", + "fileChanged": "2", + "insertions": "687", + "deletions": "555", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-04-09T19:34:21.000Z", + "fileChanged": "2", + "insertions": "59", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-09T17:44:08.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-09T17:42:20.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-04-09T16:56:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Herbert Vojcik ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-04-09T12:22:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-09T05:42:02.000Z", + "fileChanged": "2", + "insertions": "98", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-09T00:39:33.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-03-31T06:12:15.000Z", + "fileChanged": "1", + "insertions": "139", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-08T23:31:02.000Z", + "fileChanged": "5", + "insertions": "58", + "deletions": "79", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-08T22:20:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-08T21:22:30.000Z", + "fileChanged": "2", + "insertions": "400", + "deletions": "324", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-04-08T20:29:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-04-08T20:07:14.000Z", + "fileChanged": "5", + "insertions": "194", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-08T17:44:22.000Z", + "fileChanged": "32", + "insertions": "164", + "deletions": "86", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-08T17:37:10.000Z", + "fileChanged": "1", + "insertions": "157", + "deletions": "146", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-08T17:22:55.000Z", + "fileChanged": "1", + "insertions": "116", + "deletions": "115", + "type": "Commit" + }, + { + "authorName": "Herbert Vojcik ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-04-08T14:15:56.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-04-08T15:07:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-08T14:19:42.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-08T08:00:29.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-08T07:59:57.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-08T01:25:37.000Z", + "fileChanged": "45", + "insertions": "126", + "deletions": "9802", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-07T23:19:50.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-07T23:09:10.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-07T23:05:07.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-07T23:04:33.000Z", + "fileChanged": "3", + "insertions": "68", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-07T22:37:08.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-07T20:39:11.000Z", + "fileChanged": "6", + "insertions": "1646", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-07T20:34:40.000Z", + "fileChanged": "32", + "insertions": "4120", + "deletions": "4148", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-07T18:25:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Herbert Vojcik ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-04-07T18:07:57.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Vanilla Hsu ", + "authorEmail": "v@fatpipi.com", + "date": "2010-04-07T16:05:37.000Z", + "fileChanged": "8", + "insertions": "1663", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-07T08:45:20.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Krishna Rajendran ", + "authorEmail": "krishna@emptybox.org", + "date": "2010-04-07T01:37:40.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Krishna Rajendran ", + "authorEmail": "krishna@emptybox.org", + "date": "2010-04-06T10:28:37.000Z", + "fileChanged": "5", + "insertions": "809", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-06T10:41:32.000Z", + "fileChanged": "83", + "insertions": "15448", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Vanilla Hsu ", + "authorEmail": "v@fatpipi.com", + "date": "2010-04-07T03:39:29.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-06T23:15:04.000Z", + "fileChanged": "5", + "insertions": "42", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-06T22:23:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Vanilla Hsu ", + "authorEmail": "v@fatpipi.com", + "date": "2010-04-06T16:07:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-06T00:54:48.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-03-22T22:25:12.000Z", + "fileChanged": "2", + "insertions": "79", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-05T23:50:05.000Z", + "fileChanged": "8", + "insertions": "10", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-05T20:51:32.000Z", + "fileChanged": "1", + "insertions": "86", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-05T18:32:18.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-05T05:51:27.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-05T04:37:06.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-05T04:12:25.000Z", + "fileChanged": "23", + "insertions": "193", + "deletions": "96", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-05T02:33:09.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-05T01:58:55.000Z", + "fileChanged": "3", + "insertions": "63", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-05T01:07:32.000Z", + "fileChanged": "26", + "insertions": "307", + "deletions": "781", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-03T00:30:27.000Z", + "fileChanged": "1", + "insertions": "73", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2010-04-03T00:10:32.000Z", + "fileChanged": "4", + "insertions": "119", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2010-04-02T23:11:53.000Z", + "fileChanged": "5", + "insertions": "1232", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-02T23:15:53.000Z", + "fileChanged": "2", + "insertions": "40", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-02T23:02:48.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-02T22:57:32.000Z", + "fileChanged": "5", + "deletions": "1469", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-02T21:55:28.000Z", + "fileChanged": "4", + "insertions": "19", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-02T20:19:02.000Z", + "fileChanged": "3", + "insertions": "122", + "deletions": "116", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-01T23:46:37.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-01T23:24:31.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-04-01T22:53:48.000Z", + "fileChanged": "2", + "insertions": "76", + "deletions": "116", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-04-01T15:32:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-31T20:36:20.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-31T18:27:57.000Z", + "fileChanged": "4", + "insertions": "24", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Johan Dahlberg ", + "authorEmail": "dahlberg.johan@gmail.com", + "date": "2010-03-30T13:27:23.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-31T15:20:59.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Herbert Vojcik ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-03-31T14:59:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Herbert Vojcik ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-03-20T13:37:16.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-29T23:42:39.000Z", + "fileChanged": "25", + "insertions": "96", + "deletions": "320", + "type": "Commit" + }, + { + "authorName": "Matt Ranney ", + "authorEmail": "mjr@ranney.com", + "date": "2010-03-28T07:41:58.000Z", + "fileChanged": "1", + "insertions": "234", + "deletions": "100", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-29T08:04:53.000Z", + "fileChanged": "25", + "insertions": "320", + "deletions": "96", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-27T21:07:43.000Z", + "fileChanged": "1", + "insertions": "160", + "deletions": "189", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-27T02:32:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-03-26T19:39:35.000Z", + "fileChanged": "7", + "insertions": "2165", + "deletions": "2385", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-26T16:58:21.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-26T16:09:40.000Z", + "fileChanged": "43", + "insertions": "2594", + "deletions": "1823", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-26T15:35:46.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-26T15:34:56.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-25T22:01:59.000Z", + "fileChanged": "8", + "deletions": "6975", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-25T16:53:58.000Z", + "fileChanged": "180", + "insertions": "16938", + "deletions": "3555", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-25T16:50:49.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-24T14:20:56.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-24T04:41:17.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-24T04:31:44.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-24T04:10:01.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-24T04:02:30.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-24T03:56:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-24T03:54:16.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-24T01:10:13.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-24T00:28:20.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-23T22:19:12.000Z", + "fileChanged": "96", + "insertions": "107107", + "deletions": "894", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-03-23T00:22:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "arlolra ", + "authorEmail": "arlolra@gmail.com", + "date": "2010-03-23T01:47:04.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-22T16:00:24.000Z", + "fileChanged": "8", + "insertions": "195", + "deletions": "159", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-22T12:06:13.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-20T10:01:17.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-20T06:45:28.000Z", + "fileChanged": "1", + "deletions": "58", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-20T06:09:16.000Z", + "fileChanged": "1", + "insertions": "36", + "deletions": "36", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-20T04:51:50.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-20T04:51:04.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-20T04:49:00.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "7", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-20T04:48:39.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-20T04:25:29.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-20T04:22:11.000Z", + "fileChanged": "3", + "insertions": "35", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-20T04:07:03.000Z", + "fileChanged": "5", + "insertions": "20", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-20T03:50:29.000Z", + "fileChanged": "8", + "insertions": "36", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Zoka ", + "authorEmail": "ztomicic@gmail.com", + "date": "2010-03-20T03:56:03.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-20T03:33:09.000Z", + "fileChanged": "4", + "insertions": "58", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-20T02:22:04.000Z", + "fileChanged": "20", + "insertions": "886", + "deletions": "886", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-20T01:36:22.000Z", + "fileChanged": "2", + "insertions": "104", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-19T19:08:57.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-19T19:02:59.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-19T18:46:35.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-19T18:46:09.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-19T18:34:22.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-19T18:29:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-19T09:24:11.000Z", + "fileChanged": "2", + "insertions": "83", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Herbert Vojcik ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-03-18T23:29:49.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-18T22:49:42.000Z", + "fileChanged": "3", + "insertions": "43", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-18T21:33:42.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Carson McDonald ", + "authorEmail": "carson@ioncannon.net", + "date": "2010-03-18T15:50:15.000Z", + "fileChanged": "3", + "insertions": "23", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-18T21:01:17.000Z", + "fileChanged": "10", + "insertions": "21", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-18T20:21:33.000Z", + "fileChanged": "2", + "insertions": "290", + "deletions": "229", + "type": "Commit" + }, + { + "authorName": "Scott Taylor ", + "authorEmail": "scott@railsnewbie.com", + "date": "2010-03-18T06:59:01.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Tim-Smart ", + "authorEmail": "timehAndGod@gmail.com", + "date": "2010-03-17T02:33:29.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-17T23:31:24.000Z", + "fileChanged": "4", + "insertions": "44", + "deletions": "44", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-17T23:24:43.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-17T22:52:57.000Z", + "fileChanged": "82", + "insertions": "3732", + "deletions": "104751", + "type": "Commit" + }, + { + "authorName": "pyrotechnick ", + "authorEmail": "pyrotechnick@feistystudios.com", + "date": "2010-03-17T17:20:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-17T21:00:17.000Z", + "fileChanged": "25", + "insertions": "544", + "deletions": "546", + "type": "Commit" + }, + { + "authorName": "Krishna Rajendran ", + "authorEmail": "krishna@emptybox.org", + "date": "2010-03-17T05:13:45.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-03-17T01:36:42.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-16T17:48:14.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Krishna Rajendran ", + "authorEmail": "krishna@emptybox.org", + "date": "2010-03-16T08:54:47.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Krishna Rajendran ", + "authorEmail": "krishna@emptybox.org", + "date": "2010-03-16T08:18:21.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-03-16T06:27:21.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T23:44:50.000Z", + "fileChanged": "3", + "insertions": "50", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T22:53:44.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T22:11:40.000Z", + "fileChanged": "8", + "insertions": "76", + "deletions": "186", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T21:34:01.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T20:47:50.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T21:22:50.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T21:05:18.000Z", + "fileChanged": "11", + "insertions": "277", + "deletions": "278", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T20:48:03.000Z", + "fileChanged": "7", + "insertions": "167", + "deletions": "103", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T19:49:40.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T17:41:58.000Z", + "fileChanged": "2", + "insertions": "60", + "deletions": "61", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T16:02:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T15:18:45.000Z", + "fileChanged": "104", + "insertions": "107895", + "deletions": "1104", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T15:14:51.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T15:07:33.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-15T15:00:19.000Z", + "fileChanged": "8", + "insertions": "100", + "deletions": "77", + "type": "Commit" + }, + { + "authorName": "Krishna Rajendran ", + "authorEmail": "krishna@emptybox.org", + "date": "2010-03-15T03:24:29.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jed Schmidt ", + "authorEmail": "tr@nslator.jp", + "date": "2010-03-14T03:36:45.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Herbert Vojčík ", + "authorEmail": "herby@mailbox.sk", + "date": "2010-03-13T22:35:09.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-13T20:47:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Scott González ", + "authorEmail": "scott.gonzalez@gmail.com", + "date": "2010-03-13T20:21:21.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-13T20:20:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-13T02:50:46.000Z", + "fileChanged": "5", + "insertions": "28", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-13T02:39:02.000Z", + "fileChanged": "4", + "insertions": "201", + "deletions": "10", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T21:51:00.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T21:45:49.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T21:39:54.000Z", + "fileChanged": "2", + "insertions": "68", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T21:04:33.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T20:55:34.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T20:43:28.000Z", + "fileChanged": "2", + "insertions": "71", + "deletions": "71", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T20:42:15.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T20:38:27.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T20:34:17.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T20:27:41.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T20:20:41.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T20:15:25.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T17:23:05.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Tim-Smart ", + "authorEmail": "timehAndGod@gmail.com", + "date": "2010-03-12T08:36:00.000Z", + "fileChanged": "2", + "insertions": "75", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T07:50:41.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Vanilla Hsu ", + "authorEmail": "v@fatpipi.com", + "date": "2010-03-12T07:14:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Vanilla Hsu ", + "authorEmail": "v@fatpipi.com", + "date": "2010-03-12T04:05:47.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T06:05:09.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-12T06:03:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tim-Smart ", + "authorEmail": "timehAndGod@gmail.com", + "date": "2010-03-08T04:35:39.000Z", + "fileChanged": "4", + "insertions": "85", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-11T22:32:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-11T22:31:51.000Z", + "fileChanged": "4", + "insertions": "55", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2010-03-11T21:15:32.000Z", + "fileChanged": "1", + "insertions": "55", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-11T20:37:32.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-11T20:43:32.000Z", + "fileChanged": "1", + "insertions": "191", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-11T20:40:19.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-11T20:39:50.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-11T20:38:42.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-11T20:37:32.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-11T18:27:20.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-03-10T08:17:15.000Z", + "fileChanged": "3", + "insertions": "43", + "deletions": "9", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-10T19:03:32.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-10T19:03:26.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-10T19:02:01.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-10T18:50:46.000Z", + "fileChanged": "195", + "insertions": "10342", + "deletions": "3251", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-10T02:37:23.000Z", + "fileChanged": "4", + "insertions": "49", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-10T00:27:49.000Z", + "fileChanged": "5", + "insertions": "174", + "deletions": "109", + "type": "Commit" + }, + { + "authorName": "Standa Opichal ", + "authorEmail": "opichals@gmail.com", + "date": "2010-03-09T20:51:09.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-09T20:00:06.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-09T19:59:42.000Z", + "fileChanged": "3", + "insertions": "52", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-09T19:20:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-09T19:20:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-09T18:54:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-09T18:54:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-09T18:45:06.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-09T18:33:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Aaron Heckmann ", + "authorEmail": "aaron.heckmann@gmail.com", + "date": "2010-03-09T01:42:10.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-03-08T23:08:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-03-08T23:07:26.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-09T03:06:25.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-09T02:04:54.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-03-08T23:07:06.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-03-08T23:06:46.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-03-08T23:06:29.000Z", + "fileChanged": "77", + "insertions": "81", + "deletions": "82", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-09T01:45:57.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-08T21:35:08.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-08T19:14:11.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-08T19:13:24.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-08T18:03:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-08T18:02:19.000Z", + "fileChanged": "19", + "insertions": "32", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-08T18:18:24.000Z", + "fileChanged": "38", + "insertions": "1291", + "deletions": "700", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-08T17:33:11.000Z", + "fileChanged": "46", + "insertions": "335", + "deletions": "174", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-08T17:10:24.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-07T15:33:21.000Z", + "fileChanged": "4", + "insertions": "84", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-07T14:33:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-08T16:33:10.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-07T20:13:16.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-02-27T17:18:41.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "10", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-06T04:51:26.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-06T02:07:01.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-06T01:55:00.000Z", + "fileChanged": "5", + "insertions": "39", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-06T01:07:02.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rob Ellis ", + "authorEmail": "kazoomer@gmail.com", + "date": "2010-03-06T00:12:31.000Z", + "fileChanged": "3", + "insertions": "59", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-05T23:59:31.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-05T23:31:21.000Z", + "fileChanged": "3", + "insertions": "42", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-05T22:36:13.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "8", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-05T19:11:23.000Z" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-05T19:04:19.000Z", + "fileChanged": "2", + "insertions": "39", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-05T18:54:28.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-05T18:53:59.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-05T18:24:20.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-05T17:56:25.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-04T21:06:06.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-04T13:25:59.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-03T11:39:41.000Z", + "fileChanged": "2", + "insertions": "144", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-03T11:39:17.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-04T21:00:37.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-04T19:51:39.000Z", + "fileChanged": "1", + "deletions": "14", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-04T17:58:31.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-03T23:34:57.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-03T21:06:19.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-03T20:49:06.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-03T20:41:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-03-03T09:11:47.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-03T18:45:58.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Jacek Becela ", + "authorEmail": "jacek.becela@gmail.com", + "date": "2010-03-03T18:17:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-03T05:14:23.000Z", + "fileChanged": "8", + "insertions": "117", + "deletions": "111", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-03-03T01:08:53.000Z", + "fileChanged": "2", + "insertions": "360", + "deletions": "119", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-03T01:35:01.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-02T22:28:00.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-02T22:12:52.000Z", + "fileChanged": "2", + "insertions": "134", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-02T21:20:07.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-02T21:18:59.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-02T21:10:05.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-02T20:59:25.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-02T20:39:28.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-02T18:59:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-02T18:44:25.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-02T18:39:02.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-03-02T02:01:44.000Z", + "fileChanged": "3", + "insertions": "149", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-01T22:39:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-03-01T15:05:28.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Benjamin Thomas ", + "authorEmail": "benjamin@benjaminthomas.org", + "date": "2010-02-27T08:32:55.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-01T19:39:35.000Z", + "fileChanged": "4", + "insertions": "12", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-01T18:42:37.000Z", + "fileChanged": "4", + "insertions": "69", + "deletions": "68", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-01T18:14:49.000Z", + "fileChanged": "2", + "insertions": "299", + "deletions": "298", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-03-01T17:11:04.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "kriskowal ", + "authorEmail": "kris.kowal@cixar.com", + "date": "2010-02-28T00:58:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "arlolra ", + "authorEmail": "arlolra@gmail.com", + "date": "2010-02-26T20:06:32.000Z", + "fileChanged": "31", + "insertions": "31", + "deletions": "59", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-26T20:13:49.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-26T20:13:33.000Z", + "fileChanged": "10", + "insertions": "341", + "deletions": "341", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-26T19:34:24.000Z" + }, + { + "authorName": "Zoran Tomicic ", + "authorEmail": "ztomicic@gmail.com", + "date": "2010-02-26T08:30:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-26T02:58:59.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "arlolra ", + "authorEmail": "arlolra@gmail.com", + "date": "2010-02-26T00:32:30.000Z", + "fileChanged": "9", + "insertions": "14", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Benjamin Thomas ", + "authorEmail": "benjamin@benjaminthomas.org", + "date": "2010-02-26T01:41:02.000Z", + "fileChanged": "3", + "insertions": "75", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Benjamin Thomas ", + "authorEmail": "benjamin@benjaminthomas.org", + "date": "2010-02-25T21:12:39.000Z", + "fileChanged": "3", + "insertions": "36", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Benjamin Thomas ", + "authorEmail": "benjamin@benjaminthomas.org", + "date": "2010-02-25T20:54:48.000Z", + "fileChanged": "19", + "insertions": "29", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-25T20:01:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "arlolra ", + "authorEmail": "arlolra@gmail.com", + "date": "2010-02-25T06:36:17.000Z", + "fileChanged": "185", + "insertions": "5050", + "deletions": "4819", + "type": "Commit" + }, + { + "authorName": "Karl Guertin ", + "authorEmail": "grayrest@gr.ayre.st", + "date": "2010-02-24T22:26:46.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jonas Pfenniger ", + "authorEmail": "jonas@pfenniger.name", + "date": "2010-02-24T21:11:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-24T06:58:50.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-24T01:52:50.000Z", + "fileChanged": "49", + "insertions": "1618", + "deletions": "387", + "type": "Commit" + }, + { + "authorName": "James Duncan ", + "authorEmail": "james@joyent.com", + "date": "2010-02-23T22:45:02.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-23T21:08:04.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-23T06:12:21.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-02-23T00:46:03.000Z", + "fileChanged": "4", + "insertions": "161", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-22T22:22:20.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-22T22:04:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-22T21:58:48.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "holisme@gmail.com", + "date": "2010-02-22T21:25:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-22T20:07:07.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-22T14:49:14.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-22T07:31:08.000Z", + "fileChanged": "4", + "insertions": "46", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-22T09:26:35.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-22T07:13:40.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-22T07:02:36.000Z", + "fileChanged": "3", + "insertions": "51", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Benjamin Thomas ", + "authorEmail": "benjamin@benjaminthomas.org", + "date": "2010-02-22T06:47:15.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-22T05:52:56.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-02-22T04:10:23.000Z", + "fileChanged": "4", + "insertions": "45", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Zoran Tomicic ", + "authorEmail": "ztomicic@gmail.com", + "date": "2010-02-22T05:15:44.000Z", + "fileChanged": "2", + "insertions": "90", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-22T00:53:20.000Z", + "fileChanged": "21", + "insertions": "52", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-02-18T09:50:48.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-22T00:01:12.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-21T23:48:43.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Scott González ", + "authorEmail": "scott.gonzalez@gmail.com", + "date": "2010-02-21T13:21:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jeremy Ashkenas ", + "authorEmail": "jashkenas@gmail.com", + "date": "2010-02-21T06:41:27.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-21T06:38:42.000Z", + "fileChanged": "5", + "insertions": "19", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-21T06:30:56.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-02-21T04:53:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-21T04:36:31.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-21T03:45:39.000Z", + "fileChanged": "4", + "deletions": "306", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-21T03:44:47.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-21T03:16:57.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-21T02:23:21.000Z", + "fileChanged": "1", + "insertions": "39", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-20T02:54:25.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-02-20T01:17:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-20T00:55:46.000Z", + "fileChanged": "5", + "insertions": "57", + "deletions": "59", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-20T00:41:08.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "85", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-20T00:26:48.000Z", + "fileChanged": "4", + "insertions": "55", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-20T00:02:30.000Z", + "fileChanged": "12", + "insertions": "402", + "deletions": "384", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-20T00:02:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-19T19:25:40.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "59", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-19T18:29:41.000Z", + "fileChanged": "213", + "insertions": "23731", + "deletions": "4858", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-19T18:16:02.000Z", + "fileChanged": "6", + "insertions": "20", + "deletions": "222", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-19T17:37:20.000Z", + "fileChanged": "2", + "insertions": "156", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-18T19:38:49.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-18T18:17:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2010-02-18T16:50:48.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-02-18T08:02:55.000Z", + "fileChanged": "4", + "insertions": "68", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-18T06:43:28.000Z", + "fileChanged": "1", + "insertions": "51", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-18T05:28:31.000Z", + "fileChanged": "3", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-18T02:41:46.000Z", + "fileChanged": "1", + "insertions": "46", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-18T01:07:08.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T23:46:30.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T23:36:50.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T23:20:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T22:57:31.000Z", + "fileChanged": "4", + "insertions": "46", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T23:07:19.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T22:30:50.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T22:00:53.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T21:56:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T21:39:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T21:29:25.000Z", + "fileChanged": "1", + "deletions": "27", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T21:14:34.000Z", + "fileChanged": "2", + "insertions": "44", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T20:48:14.000Z", + "fileChanged": "1", + "insertions": "167", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T19:10:10.000Z", + "fileChanged": "18", + "insertions": "113", + "deletions": "82", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-02-17T07:06:26.000Z", + "fileChanged": "13", + "insertions": "124", + "deletions": "240", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T06:16:29.000Z", + "fileChanged": "20", + "insertions": "95", + "deletions": "87", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-02-17T05:14:00.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T03:34:42.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-17T00:24:02.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Jérémy Lal ", + "authorEmail": "holisme@gmail.com", + "date": "2010-02-17T00:16:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-16T22:38:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-16T21:15:30.000Z", + "fileChanged": "18", + "insertions": "56", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-16T17:32:25.000Z", + "fileChanged": "2", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Zoka ", + "authorEmail": "ztomicic@gmail.com", + "date": "2010-02-16T15:33:36.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-02-15T22:54:55.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Jonas Pfenniger ", + "authorEmail": "jonas@pfenniger.name", + "date": "2010-02-15T22:46:06.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-16T01:15:40.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Yuichiro MASUI ", + "authorEmail": "masui@masuidrive.jp", + "date": "2010-02-13T11:27:01.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Mark Hansen ", + "authorEmail": "mark@markhansen.co.nz", + "date": "2010-02-14T12:11:59.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "visionmedia ", + "authorEmail": "tj@vision-media.ca", + "date": "2010-02-10T01:27:23.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-12T09:04:14.000Z", + "fileChanged": "18", + "insertions": "77", + "deletions": "76", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-12T08:47:35.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-12T08:25:15.000Z", + "fileChanged": "18", + "insertions": "52", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-12T08:08:26.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-12T05:55:08.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-07T10:50:28.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-07T10:34:42.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-11T23:51:46.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-06T09:47:56.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-02-11T11:09:46.000Z", + "fileChanged": "4", + "insertions": "13", + "deletions": "4", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-10T22:05:29.000Z" + }, + { + "authorName": "masuidrive ", + "authorEmail": "masui@masuidrive.jp", + "date": "2010-02-10T10:21:54.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Michael Stillwell ", + "authorEmail": "mjs@beebo.org", + "date": "2010-02-09T22:32:52.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-09T22:42:56.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-09T22:11:58.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-09T21:20:20.000Z", + "fileChanged": "4", + "insertions": "24", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-02-09T17:15:02.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-02-09T16:50:05.000Z", + "fileChanged": "2", + "insertions": "131", + "deletions": "78", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@izs.me", + "date": "2010-02-05T22:26:44.000Z", + "fileChanged": "4", + "insertions": "1345", + "deletions": "338", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-08T17:47:01.000Z", + "fileChanged": "3", + "insertions": "3", + "deletions": "222", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-08T15:36:40.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Michael Carter ", + "authorEmail": "cartermichael@gmail.com", + "date": "2010-02-08T06:13:10.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-08T05:59:56.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-08T05:56:36.000Z", + "fileChanged": "5", + "insertions": "33", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-08T02:05:58.000Z", + "fileChanged": "3", + "insertions": "57", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-08T01:18:28.000Z", + "fileChanged": "3", + "insertions": "36", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-08T00:51:20.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-06T04:14:48.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-06T03:47:16.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-06T03:34:27.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-06T03:26:52.000Z", + "fileChanged": "1", + "insertions": "330", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-06T03:00:26.000Z" + }, + { + "authorName": "Matt Brubeck ", + "authorEmail": "mbrubeck@limpet.net", + "date": "2010-01-13T17:38:27.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-06T01:14:14.000Z", + "fileChanged": "3", + "insertions": "178", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "Mikeal Rogers ", + "authorEmail": "mikeal.rogers@gmail.com", + "date": "2010-01-07T08:41:59.000Z", + "fileChanged": "3", + "insertions": "38", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-02-04T21:28:04.000Z", + "fileChanged": "2", + "insertions": "32", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-03T20:57:05.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-03T20:14:51.000Z", + "fileChanged": "4", + "insertions": "39", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-03T20:19:08.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Aaron Heckmann ", + "authorEmail": "aaron.heckmann@gmail.com", + "date": "2010-01-31T04:41:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-03T18:05:24.000Z", + "fileChanged": "4", + "insertions": "146", + "deletions": "146", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-03T18:00:39.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-03T17:06:03.000Z", + "fileChanged": "215", + "insertions": "20122", + "deletions": "11866", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-03T03:35:06.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-03T02:40:26.000Z", + "fileChanged": "1", + "deletions": "10", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-03T02:37:14.000Z", + "fileChanged": "1", + "deletions": "8", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-03T00:40:54.000Z", + "fileChanged": "4", + "insertions": "121", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-02T19:04:20.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-02T02:19:08.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-02-01T16:24:44.000Z", + "fileChanged": "3", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-31T19:13:30.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-31T07:22:34.000Z", + "fileChanged": "2", + "insertions": "54", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Jonas Pfenniger ", + "authorEmail": "jonas@pfenniger.name", + "date": "2010-01-31T04:58:24.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-01-30T07:11:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-28T16:16:18.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-29T17:57:47.000Z", + "fileChanged": "3", + "insertions": "91", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-29T08:58:43.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-29T03:13:13.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-28T22:30:31.000Z", + "fileChanged": "2", + "insertions": "201", + "deletions": "150", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-28T19:17:21.000Z", + "fileChanged": "1", + "insertions": "425", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-28T02:45:07.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-28T02:23:35.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-28T02:23:35.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-28T00:07:15.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-27T23:40:09.000Z", + "fileChanged": "9", + "insertions": "293", + "deletions": "351", + "type": "Commit" + }, + { + "authorName": "Standa Opichal ", + "authorEmail": "opichals@gmail.com", + "date": "2010-01-26T19:48:51.000Z", + "fileChanged": "2", + "insertions": "88", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-27T18:00:46.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-27T17:34:45.000Z", + "fileChanged": "1", + "insertions": "42", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-27T02:37:16.000Z", + "fileChanged": "1", + "insertions": "51", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-27T02:36:24.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-27T02:35:01.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-27T02:34:42.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-26T20:00:17.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-26T01:55:02.000Z", + "fileChanged": "7", + "insertions": "124", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Blaine Cook ", + "authorEmail": "romeda@gmail.com", + "date": "2010-01-07T01:28:15.000Z", + "fileChanged": "5", + "insertions": "373", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-24T22:39:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "cloudhead ", + "authorEmail": "self@cloudhead.net", + "date": "2010-01-22T22:31:58.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-24T22:10:25.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-24T22:12:15.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-24T22:06:07.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-24T19:21:45.000Z", + "fileChanged": "5", + "insertions": "399", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Joseph Pecoraro ", + "authorEmail": "joepeck02@gmail.com", + "date": "2010-01-24T07:44:27.000Z", + "fileChanged": "1", + "insertions": "96", + "deletions": "88", + "type": "Commit" + }, + { + "authorName": "David Sklar ", + "authorEmail": "david.sklar@gmail.com", + "date": "2010-01-22T22:03:54.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-16T12:51:57.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-21T00:33:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-20T23:43:06.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-20T23:24:38.000Z" + }, + { + "authorName": "Jonas Pfenniger ", + "authorEmail": "jonas@pfenniger.name", + "date": "2010-01-20T22:21:44.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Jonas Pfenniger ", + "authorEmail": "jonas@pfenniger.name", + "date": "2010-01-20T21:04:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jonas Pfenniger ", + "authorEmail": "jonas@pfenniger.name", + "date": "2010-01-20T20:39:10.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "57", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-20T21:48:35.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-20T19:28:32.000Z", + "fileChanged": "4", + "insertions": "28", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-20T19:12:25.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-20T18:06:44.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-20T17:39:03.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-20T12:38:37.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-19T23:38:20.000Z", + "fileChanged": "17", + "insertions": "857", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-19T23:45:36.000Z", + "fileChanged": "128", + "insertions": "7605", + "deletions": "3274", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-19T21:27:55.000Z", + "fileChanged": "3", + "insertions": "79", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-19T20:58:26.000Z", + "fileChanged": "3", + "insertions": "69", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-19T20:09:14.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-19T20:02:48.000Z", + "fileChanged": "4", + "insertions": "1", + "deletions": "78", + "type": "Commit" + }, + { + "authorName": "Michaeljohn Clement ", + "authorEmail": "inimino@inimino.org", + "date": "2010-01-19T20:20:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@brandedcode.com", + "date": "2010-01-18T17:51:50.000Z", + "fileChanged": "3", + "insertions": "50", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-18T18:27:27.000Z", + "fileChanged": "4", + "insertions": "61", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-18T18:12:04.000Z", + "fileChanged": "6", + "insertions": "181", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Joseph Pecoraro ", + "authorEmail": "joepeck02@gmail.com", + "date": "2010-01-17T01:10:46.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Joseph Pecoraro ", + "authorEmail": "joepeck02@gmail.com", + "date": "2010-01-18T17:04:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-15T20:46:08.000Z", + "fileChanged": "12", + "insertions": "261", + "deletions": "237", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-15T18:45:04.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Vanilla Hsu ", + "authorEmail": "v@fatpipi.com", + "date": "2010-01-13T03:23:21.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-13T16:41:01.000Z", + "fileChanged": "2", + "insertions": "45", + "deletions": "41", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-13T00:59:14.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-12T09:09:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ben Williamson ", + "authorEmail": "benw@pobox.com", + "date": "2010-01-11T06:04:40.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-12T00:43:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-11T07:00:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-11T06:27:48.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ben Williamson ", + "authorEmail": "benw@pobox.com", + "date": "2010-01-11T06:06:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-09T10:11:54.000Z", + "fileChanged": "4", + "insertions": "30", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-09T09:52:49.000Z", + "fileChanged": "7", + "insertions": "137", + "deletions": "118", + "type": "Commit" + }, + { + "authorName": "David Sklar ", + "authorEmail": "david.sklar@gmail.com", + "date": "2010-01-07T21:50:19.000Z", + "fileChanged": "4", + "insertions": "364", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2010-01-08T20:47:01.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2010-01-08T20:46:50.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2010-01-08T20:46:13.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Benjamin Thomas ", + "authorEmail": "benjamin@benjaminthomas.org", + "date": "2010-01-08T07:03:23.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-09T06:18:18.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-08T02:36:28.000Z", + "fileChanged": "3", + "insertions": "68", + "deletions": "70", + "type": "Commit" + }, + { + "authorName": "Vanilla Hsu ", + "authorEmail": "v@fatpipi.com", + "date": "2010-01-07T07:37:27.000Z", + "fileChanged": "2", + "insertions": "43", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-07T01:12:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Benjamin Thomas ", + "authorEmail": "benjamin@benjaminthomas.org", + "date": "2010-01-06T03:03:14.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-06T09:47:56.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-06T09:17:58.000Z", + "fileChanged": "4", + "insertions": "102", + "deletions": "56", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-06T05:09:02.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-05T21:50:00.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-05T21:44:09.000Z", + "fileChanged": "1", + "insertions": "54", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-05T21:37:51.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-05T21:28:03.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2010-01-05T21:22:18.000Z", + "fileChanged": "2", + "insertions": "38", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "elliottcable ", + "authorEmail": "me@ell.io", + "date": "2010-01-05T08:00:41.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-05T07:26:58.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-05T06:52:48.000Z", + "fileChanged": "8", + "insertions": "207", + "deletions": "106", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2010-01-05T06:46:32.000Z", + "fileChanged": "5", + "insertions": "76", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Charles Lehner ", + "authorEmail": "celehner1@gmail.com", + "date": "2010-01-04T00:45:17.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "visionmedia ", + "authorEmail": "tj@vision-media.ca", + "date": "2010-01-04T16:10:53.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2010-01-05T05:07:50.000Z", + "fileChanged": "11", + "insertions": "76", + "deletions": "508", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2010-01-04T07:14:12.000Z", + "fileChanged": "5", + "insertions": "1189", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2010-01-04T07:34:46.000Z", + "fileChanged": "1", + "insertions": "67", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2010-01-04T07:24:25.000Z", + "fileChanged": "1", + "insertions": "17", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-01-03T20:04:35.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2010-01-03T00:25:09.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2009-12-31T17:41:35.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-31T08:30:53.000Z", + "fileChanged": "4", + "insertions": "19", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-31T06:16:10.000Z", + "fileChanged": "1", + "insertions": "58", + "deletions": "2", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-31T00:37:36.000Z" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-09T12:21:41.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-30T19:51:43.000Z", + "fileChanged": "3", + "insertions": "49", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-30T19:32:07.000Z", + "fileChanged": "3", + "insertions": "65", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-30T18:58:46.000Z", + "fileChanged": "2", + "insertions": "97", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-30T18:43:47.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "David Sklar ", + "authorEmail": "david.sklar@gmail.com", + "date": "2009-12-30T18:06:40.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-30T08:57:55.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-30T08:53:14.000Z", + "fileChanged": "3", + "insertions": "90", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-30T08:01:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-30T07:53:19.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-30T01:45:15.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-30T01:34:22.000Z", + "fileChanged": "109", + "insertions": "7704", + "deletions": "1621", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-28T16:52:26.000Z", + "fileChanged": "3", + "insertions": "20", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-28T16:01:49.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-28T15:42:48.000Z", + "fileChanged": "3", + "insertions": "42", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-28T15:18:03.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-18T13:52:02.000Z", + "fileChanged": "4", + "insertions": "320", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-17T08:31:10.000Z", + "fileChanged": "3", + "insertions": "209", + "deletions": "116", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-17T07:37:25.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-17T06:39:22.000Z", + "fileChanged": "2", + "insertions": "293", + "deletions": "293", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-16T12:50:28.000Z", + "fileChanged": "3", + "insertions": "227", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-16T07:35:09.000Z", + "fileChanged": "3", + "insertions": "116", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-15T16:17:45.000Z", + "fileChanged": "4", + "insertions": "144", + "deletions": "67", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-15T08:22:36.000Z", + "fileChanged": "4", + "insertions": "506", + "deletions": "96", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-14T08:42:02.000Z", + "fileChanged": "4", + "insertions": "194", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-13T14:43:58.000Z", + "fileChanged": "4", + "insertions": "173", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-13T07:58:12.000Z", + "fileChanged": "3", + "insertions": "23", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-13T07:57:54.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-13T07:42:45.000Z", + "fileChanged": "7", + "insertions": "348", + "deletions": "309", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-13T07:39:20.000Z", + "fileChanged": "4", + "insertions": "309", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-29T19:31:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-29T19:20:51.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-29T19:14:58.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-29T18:37:40.000Z", + "fileChanged": "2", + "insertions": "247", + "deletions": "217", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-27T21:07:06.000Z", + "fileChanged": "2", + "insertions": "66", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Michaeljohn Clement ", + "authorEmail": "inimino@inimino.org", + "date": "2009-12-23T20:48:14.000Z", + "fileChanged": "2", + "insertions": "75", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-22T22:11:54.000Z", + "fileChanged": "1", + "insertions": "55", + "deletions": "55", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-22T19:31:45.000Z", + "fileChanged": "4", + "insertions": "13", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-12-20T19:27:06.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Jonas Pfenniger ", + "authorEmail": "jonas@pfenniger.name", + "date": "2009-12-22T13:52:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-22T16:50:23.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2009-12-22T15:24:32.000Z", + "fileChanged": "10", + "insertions": "62", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-19T00:24:59.000Z", + "fileChanged": "4", + "insertions": "33", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-19T00:04:19.000Z", + "fileChanged": "108", + "insertions": "1615", + "deletions": "7621", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-18T23:45:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2009-12-17T22:06:56.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2009-12-16T23:18:27.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2009-12-16T22:15:24.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2009-12-16T21:08:14.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-18T22:58:04.000Z", + "fileChanged": "3", + "insertions": "17", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2009-12-13T00:29:12.000Z", + "fileChanged": "2", + "insertions": "77", + "deletions": "71", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2009-12-11T23:46:32.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2009-12-11T23:46:10.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2009-12-11T23:25:35.000Z", + "fileChanged": "2", + "insertions": "427", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "visionmedia ", + "authorEmail": "tj@vision-media.ca", + "date": "2009-12-18T02:27:48.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Joshaven Potter ", + "authorEmail": "yourtech@gmail.com", + "date": "2009-12-16T22:33:33.000Z", + "fileChanged": "1", + "insertions": "31", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Micheil Smith ", + "authorEmail": "micheil@yettobebranded.net", + "date": "2009-12-18T15:17:10.000Z", + "fileChanged": "1", + "insertions": "32", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-18T14:45:53.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2009-12-15T22:37:49.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-18T14:36:25.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2009-12-15T21:46:38.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Rasmus Andersson ", + "authorEmail": "rasmus@notion.se", + "date": "2009-12-15T21:32:50.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-18T14:05:04.000Z", + "fileChanged": "108", + "insertions": "7621", + "deletions": "1615", + "type": "Commit" + }, + { + "authorName": "Ryan McGrath ", + "authorEmail": "ryan@venodesigns.net", + "date": "2009-12-18T06:08:10.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-09T14:59:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Simon Cornelius P. Umacob ", + "authorEmail": "simoncpu@gmail.com", + "date": "2009-12-09T12:36:12.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-09T13:27:33.000Z", + "fileChanged": "46", + "insertions": "958", + "deletions": "720", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-09T09:32:19.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-09T08:02:21.000Z", + "fileChanged": "12", + "insertions": "270", + "deletions": "124", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-09T06:44:44.000Z", + "fileChanged": "2", + "deletions": "127", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-08T06:20:51.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-08T05:54:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Johan Dahlberg ", + "authorEmail": "jfd@distrop.com", + "date": "2009-12-05T12:33:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "visionmedia ", + "authorEmail": "tj@vision-media.ca", + "date": "2009-12-08T00:18:43.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-07T17:03:06.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-07T16:55:19.000Z", + "fileChanged": "10", + "insertions": "173", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-07T14:21:12.000Z", + "fileChanged": "3", + "insertions": "43", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Xavier Shay ", + "authorEmail": "xavier@rhnh.net", + "date": "2009-12-07T04:44:41.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-06T22:58:16.000Z", + "fileChanged": "4", + "insertions": "201", + "deletions": "190", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-12-06T18:02:55.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-12-06T17:57:20.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Christopher Lenz ", + "authorEmail": "chris@lamech.local", + "date": "2009-12-02T22:25:56.000Z", + "fileChanged": "9", + "insertions": "37", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-06T16:53:52.000Z", + "fileChanged": "4", + "insertions": "22", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Xavier Shay ", + "authorEmail": "xavier@rhnh.net", + "date": "2009-12-01T10:20:14.000Z", + "fileChanged": "2", + "insertions": "90", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-06T10:36:22.000Z", + "fileChanged": "5", + "insertions": "76", + "deletions": "203", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-06T09:50:03.000Z", + "fileChanged": "4", + "insertions": "419", + "deletions": "326", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-06T08:23:38.000Z", + "fileChanged": "4", + "insertions": "143", + "deletions": "57", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-06T06:35:26.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-05T17:25:07.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-05T14:27:56.000Z", + "fileChanged": "99", + "insertions": "4250", + "deletions": "1460", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-05T07:37:46.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-12-05T06:52:05.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Karl Guertin ", + "authorEmail": "grayrest@gr.ayre.st", + "date": "2009-11-30T02:20:37.000Z", + "fileChanged": "4", + "insertions": "287", + "deletions": "1084", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-11-28T17:26:59.000Z", + "fileChanged": "55", + "insertions": "1516", + "deletions": "302", + "type": "Commit" + }, + { + "authorName": "Michaeljohn Clement ", + "authorEmail": "inimino@inimino.org", + "date": "2009-12-02T05:38:42.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2009-11-30T15:51:20.000Z", + "fileChanged": "4", + "insertions": "145", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "jed ", + "authorEmail": "tr@nslator.jp", + "date": "2009-11-29T08:00:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Friedemann Altrock ", + "authorEmail": "frodenius@gmail.com", + "date": "2009-11-28T11:15:37.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-28T16:04:42.000Z", + "fileChanged": "4", + "insertions": "15", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-28T15:31:29.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-28T14:25:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "choonkeat ", + "authorEmail": "choonkeat@gmail.com", + "date": "2009-11-28T13:52:27.000Z", + "fileChanged": "7", + "insertions": "105", + "deletions": "78", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-28T00:49:11.000Z", + "fileChanged": "4", + "insertions": "32", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-28T00:38:32.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "simonw ", + "authorEmail": "simon@simonwillison.net", + "date": "2009-11-24T11:13:21.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-27T21:53:39.000Z", + "fileChanged": "28", + "insertions": "553", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-22T23:59:36.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Jan Lehnardt ", + "authorEmail": "jan@apache.org", + "date": "2009-11-22T22:32:53.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Friedemann Altrock ", + "authorEmail": "frodenius@gmail.com", + "date": "2009-11-22T18:52:52.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Friedemann Altrock ", + "authorEmail": "frodenius@gmail.com", + "date": "2009-11-22T18:18:24.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-11-22T12:47:20.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Rhys Jones ", + "authorEmail": "rhys@wave.to", + "date": "2009-11-22T02:58:08.000Z", + "fileChanged": "10", + "insertions": "743", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-21T23:47:26.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-21T21:03:52.000Z", + "fileChanged": "4", + "insertions": "97", + "deletions": "61", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-11-21T15:37:29.000Z", + "fileChanged": "3", + "insertions": "22", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-21T16:15:39.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-21T15:27:02.000Z", + "fileChanged": "12", + "insertions": "2135", + "deletions": "6904", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-18T01:12:55.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Onne ", + "authorEmail": "onne@onnlucky.com", + "date": "2009-11-19T18:12:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-19T18:08:47.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-18T14:54:27.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-18T14:25:58.000Z", + "fileChanged": "214", + "insertions": "11413", + "deletions": "6120", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-17T22:07:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-17T21:35:47.000Z", + "fileChanged": "3", + "insertions": "29", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-17T13:30:40.000Z", + "fileChanged": "4", + "insertions": "33", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-17T14:04:20.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-17T13:52:18.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-17T13:22:23.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-17T13:07:48.000Z", + "fileChanged": "7", + "insertions": "202", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-17T11:41:19.000Z", + "fileChanged": "25", + "insertions": "669", + "deletions": "41370", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-11-16T10:21:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-15T00:06:13.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-11-14T22:07:54.000Z", + "fileChanged": "3", + "insertions": "69", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "fwg ", + "authorEmail": "frodenius@gmail.com", + "date": "2009-11-13T16:12:41.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Johan Sørensen ", + "authorEmail": "johan@johansorensen.com", + "date": "2009-11-13T13:49:32.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-12T11:47:02.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-11-12T11:35:27.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-11-11T17:32:00.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-11-11T17:10:58.000Z", + "fileChanged": "2", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-11-11T16:03:13.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-07T15:19:00.000Z", + "fileChanged": "5", + "insertions": "20", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-07T19:20:30.000Z", + "fileChanged": "4", + "insertions": "15", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-11-07T16:56:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-07T16:31:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-07T16:18:23.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-07T15:27:18.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-07T14:08:46.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-07T13:57:49.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-07T13:45:39.000Z", + "fileChanged": "4", + "insertions": "30", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-07T13:37:22.000Z", + "fileChanged": "6", + "insertions": "183", + "deletions": "193", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-06T12:42:56.000Z", + "fileChanged": "1", + "insertions": "61", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-06T11:53:27.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-06T11:44:20.000Z", + "fileChanged": "13", + "insertions": "2992", + "deletions": "3170", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-04T23:02:15.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-04T11:39:08.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-04T11:37:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-04T01:18:31.000Z", + "fileChanged": "1", + "deletions": "3", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-03T23:18:05.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Brandon Beacher ", + "authorEmail": "brandon.beacher@gmail.com", + "date": "2009-11-03T18:13:38.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-03T12:48:02.000Z", + "fileChanged": "4", + "insertions": "31", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-03T12:00:42.000Z", + "fileChanged": "3", + "insertions": "112", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-03T00:30:01.000Z", + "fileChanged": "4", + "insertions": "110", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-02T23:21:00.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-02T21:55:39.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-11-02T20:21:02.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-11-01T23:34:16.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-02T11:28:08.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-11-01T14:34:46.000Z", + "fileChanged": "3", + "insertions": "62", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-11-01T08:27:21.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-31T19:26:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-31T19:06:46.000Z", + "fileChanged": "4", + "insertions": "13", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-31T18:56:27.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-31T18:53:07.000Z", + "fileChanged": "1", + "deletions": "5", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-31T18:47:41.000Z", + "fileChanged": "2", + "insertions": "29", + "deletions": "29", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-31T18:14:24.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-31T18:02:30.000Z", + "fileChanged": "50", + "insertions": "473", + "deletions": "387", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-31T11:19:23.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-29T22:59:35.000Z", + "fileChanged": "6", + "insertions": "18", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-29T22:34:10.000Z", + "fileChanged": "55", + "insertions": "339", + "deletions": "343", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-29T15:11:05.000Z", + "fileChanged": "54", + "insertions": "1022", + "deletions": "1370", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-10-29T10:19:47.000Z", + "fileChanged": "3", + "insertions": "98", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-29T10:17:26.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-28T22:02:52.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-28T21:45:40.000Z", + "fileChanged": "12", + "insertions": "88", + "deletions": "80", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-28T20:35:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-28T18:25:22.000Z", + "fileChanged": "136", + "insertions": "9070", + "deletions": "2021", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2009-10-28T16:49:22.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-28T15:36:44.000Z", + "fileChanged": "4", + "insertions": "23", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-28T14:37:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-16T12:55:30.000Z", + "fileChanged": "5", + "insertions": "9", + "deletions": "66", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-27T21:50:46.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-27T21:26:53.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-27T19:17:03.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-27T17:50:41.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-27T17:11:07.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-27T11:05:38.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-27T10:46:58.000Z", + "fileChanged": "43", + "insertions": "3758", + "deletions": "3759", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-27T10:08:50.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-26T22:07:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-26T21:27:52.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-25T21:51:10.000Z", + "fileChanged": "8", + "insertions": "10", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-16T20:53:44.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-16T15:59:54.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-16T12:05:12.000Z", + "fileChanged": "132", + "insertions": "7981", + "deletions": "2226", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-16T11:46:16.000Z", + "fileChanged": "2", + "insertions": "79", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-15T17:18:18.000Z", + "fileChanged": "13", + "insertions": "3176", + "deletions": "2998", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-15T13:45:04.000Z", + "fileChanged": "4", + "insertions": "43", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Brandon Beacher ", + "authorEmail": "brandon.beacher@gmail.com", + "date": "2009-10-14T21:56:12.000Z", + "fileChanged": "4", + "insertions": "81", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-14T17:28:51.000Z", + "fileChanged": "3", + "insertions": "57", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Connor Dunn ", + "authorEmail": "connorhd@gmail.com", + "date": "2009-10-14T16:50:51.000Z", + "fileChanged": "3", + "insertions": "50", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-14T15:07:50.000Z", + "fileChanged": "2", + "insertions": "25", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Tim Caswell ", + "authorEmail": "tim@creationix.com", + "date": "2009-10-13T18:08:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-10-13T17:45:13.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Timothy Caswell ", + "authorEmail": "tim@0-26-8-e9-4c-e1.dyn.utdallas.edu", + "date": "2009-09-22T15:48:29.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Timothy Caswell ", + "authorEmail": "tim@0-26-8-e9-4c-e1.dyn.utdallas.edu", + "date": "2009-09-22T15:58:14.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-13T11:26:00.000Z", + "fileChanged": "6", + "insertions": "95", + "deletions": "95", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-10-12T20:13:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-12T19:09:18.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-10-12T15:03:16.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-12T14:46:18.000Z", + "fileChanged": "1", + "insertions": "45", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-10-12T14:09:15.000Z", + "fileChanged": "3", + "insertions": "101", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-12T14:01:22.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-10T09:58:36.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-09T16:10:59.000Z", + "fileChanged": "4", + "insertions": "32", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-09T15:49:29.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-09T15:47:04.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-09T15:15:47.000Z", + "fileChanged": "1", + "insertions": "137", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-09T14:16:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-09T13:00:12.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-09T12:53:53.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-09T12:21:41.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-09T12:18:10.000Z", + "fileChanged": "2", + "insertions": "26", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-09T12:09:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-09T11:30:27.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-09T11:25:04.000Z", + "fileChanged": "5", + "insertions": "76", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-09T10:49:48.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-08T22:34:39.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-08T21:20:14.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-07T23:30:26.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-10-07T15:21:39.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-07T14:56:19.000Z", + "fileChanged": "3", + "insertions": "24", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-07T14:02:34.000Z", + "fileChanged": "9", + "insertions": "127", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-07T14:01:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-07T13:39:39.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-07T10:56:55.000Z", + "fileChanged": "4", + "insertions": "249", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-07T10:43:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-07T09:53:03.000Z", + "fileChanged": "123", + "insertions": "3495", + "deletions": "4380", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-07T08:24:50.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-10-06T19:38:35.000Z", + "fileChanged": "4", + "insertions": "41", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-10-06T18:53:05.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-06T23:35:21.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Brandon Beacher ", + "authorEmail": "brandon.beacher@gmail.com", + "date": "2009-10-06T00:56:33.000Z", + "fileChanged": "5", + "insertions": "140", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-06T23:04:27.000Z", + "fileChanged": "7", + "insertions": "93", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-06T14:28:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-06T08:45:18.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-05T22:43:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-05T19:01:30.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-05T18:35:48.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-05T18:35:05.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-05T18:29:59.000Z", + "fileChanged": "1", + "deletions": "4", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-05T17:15:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-05T13:46:31.000Z", + "fileChanged": "46", + "insertions": "136", + "deletions": "93", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-05T12:51:41.000Z", + "fileChanged": "3", + "insertions": "25", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-05T11:16:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-05T11:04:21.000Z", + "fileChanged": "2", + "deletions": "14", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-04T10:17:50.000Z", + "fileChanged": "4", + "insertions": "64", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-04T09:50:53.000Z", + "fileChanged": "2", + "insertions": "12", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-04T09:14:39.000Z", + "fileChanged": "1", + "insertions": "44", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-04T08:33:39.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-03T20:43:54.000Z", + "fileChanged": "3", + "insertions": "135", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-03T20:42:03.000Z", + "fileChanged": "8", + "insertions": "124", + "deletions": "6469", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-03T19:46:59.000Z", + "fileChanged": "3", + "insertions": "65", + "deletions": "140", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-03T17:08:05.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-10-03T14:40:06.000Z", + "fileChanged": "5", + "insertions": "444", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-03T13:08:03.000Z", + "fileChanged": "6", + "insertions": "11", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-03T12:45:35.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-02T15:05:42.000Z", + "fileChanged": "64", + "insertions": "15737", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-02T14:24:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-10-02T12:10:40.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-30T21:21:25.000Z", + "fileChanged": "6", + "insertions": "38", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-30T09:54:14.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "isaacs ", + "authorEmail": "i@foohack.com", + "date": "2009-09-29T23:38:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-29T17:28:54.000Z", + "fileChanged": "6", + "insertions": "39", + "deletions": "35", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-29T16:06:36.000Z", + "fileChanged": "4", + "insertions": "157", + "deletions": "122", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-29T16:06:14.000Z", + "fileChanged": "2", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T20:39:00.000Z", + "fileChanged": "1", + "insertions": "45", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T20:16:43.000Z", + "fileChanged": "4", + "insertions": "34", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T17:44:40.000Z", + "fileChanged": "4", + "insertions": "19", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T16:10:25.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T16:03:43.000Z", + "fileChanged": "4", + "insertions": "63", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T15:37:34.000Z", + "fileChanged": "6", + "insertions": "145", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T15:12:28.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T14:50:19.000Z", + "fileChanged": "7", + "insertions": "189", + "deletions": "185", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T14:50:03.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T14:13:33.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T14:08:09.000Z", + "fileChanged": "16", + "insertions": "99", + "deletions": "73", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T15:44:52.000Z", + "fileChanged": "1", + "insertions": "69", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T16:47:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T10:36:36.000Z", + "fileChanged": "25", + "insertions": "808", + "deletions": "761", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T10:06:30.000Z", + "fileChanged": "22", + "insertions": "269", + "deletions": "319", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-28T09:46:09.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-09-27T14:52:33.000Z", + "fileChanged": "2", + "insertions": "213", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-27T10:52:28.000Z", + "fileChanged": "1", + "insertions": "2059", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-27T10:33:44.000Z", + "fileChanged": "5", + "insertions": "37", + "deletions": "60", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-27T09:07:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Jeremy Lal ", + "authorEmail": "kapouer@melix.org", + "date": "2009-09-27T08:45:52.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-26T13:10:56.000Z", + "fileChanged": "3", + "insertions": "16", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-25T06:40:34.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "RayMorgan ", + "authorEmail": "rmorgan@zappos.com", + "date": "2009-09-25T05:16:07.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "RayMorgan ", + "authorEmail": "rmorgan@zappos.com", + "date": "2009-09-25T02:53:11.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "RayMorgan ", + "authorEmail": "rmorgan@zappos.com", + "date": "2009-09-25T01:56:37.000Z", + "fileChanged": "1", + "insertions": "156", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-24T11:51:10.000Z", + "fileChanged": "6", + "insertions": "26", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-24T11:44:25.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-23T22:56:24.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-23T15:54:38.000Z", + "fileChanged": "4", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-23T15:00:20.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-23T14:58:28.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-23T14:53:31.000Z", + "fileChanged": "3", + "insertions": "60", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-23T14:39:43.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-23T14:33:24.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "93", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-23T14:09:40.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-23T13:35:03.000Z", + "fileChanged": "8", + "insertions": "58", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-23T12:49:51.000Z", + "fileChanged": "68", + "insertions": "9195", + "deletions": "7200", + "type": "Commit" + }, + { + "authorName": "Felix Geisendörfer ", + "authorEmail": "felix@debuggable.com", + "date": "2009-09-22T22:46:56.000Z", + "fileChanged": "1", + "insertions": "31", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-22T22:14:28.000Z", + "fileChanged": "4", + "insertions": "32", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-22T16:35:15.000Z", + "fileChanged": "4", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-22T15:27:50.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-22T10:15:45.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-21T10:27:22.000Z", + "fileChanged": "14", + "insertions": "189", + "deletions": "281", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-20T18:54:19.000Z", + "fileChanged": "3", + "insertions": "44", + "deletions": "44", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-20T18:40:20.000Z", + "fileChanged": "2", + "insertions": "166", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-20T16:19:33.000Z", + "fileChanged": "38", + "insertions": "219", + "deletions": "212", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-20T16:03:55.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-20T15:40:14.000Z", + "fileChanged": "1", + "insertions": "11", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-20T15:35:07.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-20T15:34:27.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-18T13:45:47.000Z", + "fileChanged": "8", + "insertions": "161", + "deletions": "98", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-18T16:32:25.000Z", + "fileChanged": "6", + "insertions": "32", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-17T14:16:41.000Z", + "fileChanged": "56", + "insertions": "1881", + "deletions": "828", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-17T13:36:31.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-17T13:15:05.000Z", + "fileChanged": "3", + "insertions": "94", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-17T12:58:18.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Jon Crosby ", + "authorEmail": "jon@joncrosby.me", + "date": "2009-09-17T06:28:31.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-15T20:41:25.000Z", + "fileChanged": "6", + "insertions": "12", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-15T20:32:37.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-15T13:42:16.000Z", + "fileChanged": "5", + "insertions": "126", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-15T13:25:06.000Z", + "fileChanged": "3", + "insertions": "54", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-14T20:44:25.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-14T14:34:31.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-14T14:25:41.000Z", + "fileChanged": "2", + "insertions": "35", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-13T21:44:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-13T16:31:17.000Z", + "fileChanged": "6", + "insertions": "6", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-13T16:19:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-13T15:43:19.000Z", + "fileChanged": "1", + "insertions": "33", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-13T10:38:59.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan Dahl ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-12T17:14:16.000Z", + "fileChanged": "3", + "insertions": "9", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Jeff Smick ", + "authorEmail": "sprsquish@gmail.com", + "date": "2009-09-12T10:40:27.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-12T12:18:42.000Z", + "fileChanged": "11", + "insertions": "344", + "deletions": "434", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-12T11:01:03.000Z", + "fileChanged": "10", + "insertions": "35", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-11T19:27:20.000Z", + "fileChanged": "3", + "insertions": "33", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-11T19:06:50.000Z", + "fileChanged": "5", + "insertions": "30", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-11T19:04:02.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-11T18:51:39.000Z", + "fileChanged": "3", + "insertions": "3660", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-11T18:47:45.000Z", + "fileChanged": "10", + "insertions": "1", + "deletions": "421", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-11T18:34:55.000Z", + "fileChanged": "10", + "insertions": "421", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-11T18:32:24.000Z", + "fileChanged": "2", + "insertions": "44", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-11T18:05:22.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-11T14:02:29.000Z", + "fileChanged": "2", + "insertions": "110", + "deletions": "144", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-11T11:41:47.000Z", + "fileChanged": "5", + "insertions": "152", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-10T14:48:38.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-10T12:07:35.000Z", + "fileChanged": "2", + "insertions": "16", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-10T11:40:38.000Z", + "fileChanged": "18", + "insertions": "2132", + "deletions": "2122", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-10T10:41:18.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-10T10:34:29.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-09T20:35:40.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-09T20:01:54.000Z", + "fileChanged": "97", + "insertions": "3183", + "deletions": "980", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-09T16:06:58.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-09T15:35:59.000Z", + "fileChanged": "4", + "insertions": "10", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-09T15:22:20.000Z", + "fileChanged": "5", + "insertions": "104", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-09T13:51:49.000Z", + "fileChanged": "6", + "insertions": "139", + "deletions": "211", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-08T12:59:43.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-07T12:09:18.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-07T12:20:41.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-07T12:13:01.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-07T10:56:10.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-07T10:54:08.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-07T10:52:55.000Z", + "fileChanged": "4", + "insertions": "11", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-05T12:47:56.000Z", + "fileChanged": "4", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-05T12:13:06.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-05T12:32:19.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-04T15:35:38.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-04T10:35:30.000Z", + "fileChanged": "4", + "insertions": "36", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-04T10:15:21.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-04T09:46:56.000Z", + "fileChanged": "1", + "insertions": "16", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-04T09:46:31.000Z", + "fileChanged": "1", + "insertions": "30", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-03T19:59:31.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-03T19:57:15.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-03T19:29:20.000Z", + "fileChanged": "4", + "insertions": "79", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-25T00:29:45.000Z", + "fileChanged": "4", + "insertions": "290", + "deletions": "297", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-03T15:21:08.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-03T14:01:45.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-03T13:59:48.000Z", + "fileChanged": "5", + "insertions": "437", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-03T13:00:06.000Z", + "fileChanged": "1", + "insertions": "74", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-03T08:38:49.000Z", + "fileChanged": "4", + "insertions": "70", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-02T18:19:52.000Z", + "fileChanged": "3", + "insertions": "28", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-02T18:18:50.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-02T09:13:46.000Z", + "fileChanged": "106", + "insertions": "4662", + "deletions": "997", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-01T13:43:56.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-01T13:28:10.000Z", + "fileChanged": "3", + "insertions": "2", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-09-01T12:15:29.000Z", + "fileChanged": "4", + "insertions": "15", + "deletions": "43", + "type": "Commit" + }, + { + "authorName": "Michael Carter ", + "authorEmail": "cartermichael@gmail.com", + "date": "2009-09-01T09:39:30.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-31T16:57:01.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-31T16:48:47.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-31T16:22:09.000Z", + "fileChanged": "2", + "insertions": "30", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-31T16:15:27.000Z", + "fileChanged": "8", + "insertions": "169", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-31T14:12:27.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-31T09:14:34.000Z", + "fileChanged": "5", + "insertions": "84", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-27T00:15:11.000Z", + "fileChanged": "4", + "insertions": "42", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-26T23:11:16.000Z", + "fileChanged": "2", + "insertions": "41", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-20T13:07:10.000Z", + "fileChanged": "6", + "insertions": "70", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-27T10:31:52.000Z", + "fileChanged": "4", + "insertions": "29", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-27T10:23:53.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-26T20:11:51.000Z", + "fileChanged": "15", + "insertions": "497", + "deletions": "495", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-26T20:03:19.000Z", + "fileChanged": "29", + "insertions": "179", + "deletions": "176", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-26T16:51:04.000Z", + "fileChanged": "29", + "insertions": "77", + "deletions": "74", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-26T19:33:57.000Z", + "fileChanged": "3", + "insertions": "17", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-26T16:22:00.000Z", + "fileChanged": "26", + "insertions": "383", + "deletions": "429", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-26T16:02:45.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "34", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-26T16:01:54.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-26T15:12:44.000Z", + "fileChanged": "4", + "insertions": "120", + "deletions": "54", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-26T09:25:53.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-25T22:55:43.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-25T14:59:06.000Z", + "fileChanged": "3", + "insertions": "56", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-25T14:23:01.000Z", + "fileChanged": "7", + "insertions": "172", + "deletions": "148", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-25T11:47:18.000Z", + "fileChanged": "45", + "insertions": "436", + "deletions": "215", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-25T11:33:19.000Z", + "fileChanged": "1", + "insertions": "28", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-25T10:56:54.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-25T02:10:20.000Z", + "fileChanged": "7", + "insertions": "180", + "deletions": "71", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-24T23:18:44.000Z", + "fileChanged": "4", + "insertions": "1", + "deletions": "290", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-24T23:06:49.000Z", + "fileChanged": "6", + "insertions": "185", + "deletions": "298", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-24T18:25:24.000Z", + "fileChanged": "13", + "insertions": "793", + "deletions": "38", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-24T14:51:37.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-24T11:02:55.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-24T11:00:45.000Z", + "fileChanged": "1", + "deletions": "26", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-24T10:59:17.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-23T10:20:25.000Z", + "fileChanged": "11", + "insertions": "87", + "deletions": "66", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-22T11:07:31.000Z", + "fileChanged": "4", + "insertions": "10", + "deletions": "52", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-22T10:04:45.000Z", + "fileChanged": "5", + "insertions": "16", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-21T16:03:15.000Z", + "fileChanged": "4", + "insertions": "23", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Kevin van Zonneveld ", + "authorEmail": "kevin@vanzonneveld.net", + "date": "2009-08-21T15:54:10.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-21T12:53:58.000Z", + "fileChanged": "3", + "insertions": "78", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-21T12:47:33.000Z", + "fileChanged": "2", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-21T11:13:04.000Z", + "fileChanged": "33", + "insertions": "726", + "deletions": "145", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-19T15:46:23.000Z", + "fileChanged": "1", + "deletions": "6", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-19T15:28:41.000Z", + "fileChanged": "13", + "insertions": "1456", + "deletions": "540", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-19T14:37:15.000Z", + "fileChanged": "110", + "insertions": "6193", + "deletions": "1307", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-19T11:29:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Abe Fettig ", + "authorEmail": "abefettig@gmail.com", + "date": "2009-08-19T10:56:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-14T10:51:46.000Z", + "fileChanged": "10", + "insertions": "23", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-14T10:43:46.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-13T13:52:55.000Z", + "fileChanged": "4", + "insertions": "27", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-13T13:07:37.000Z", + "fileChanged": "20", + "insertions": "6945", + "deletions": "6509", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-13T13:06:34.000Z", + "fileChanged": "21", + "insertions": "325", + "deletions": "109", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-13T13:04:24.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "69", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-13T13:03:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-13T11:52:47.000Z", + "fileChanged": "52", + "insertions": "7229", + "deletions": "1232", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-13T11:47:16.000Z", + "fileChanged": "7", + "insertions": "652", + "deletions": "693", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-10T10:54:57.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-10T10:46:22.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-10T10:14:41.000Z", + "fileChanged": "3", + "insertions": "79", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-09T17:16:25.000Z", + "fileChanged": "2", + "insertions": "23", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-09T16:49:51.000Z", + "fileChanged": "4", + "insertions": "91", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-09T16:27:56.000Z", + "fileChanged": "6", + "insertions": "489", + "deletions": "496", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-09T16:10:16.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-09T16:04:10.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-08T19:51:28.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-08T14:58:06.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-07T16:25:25.000Z", + "fileChanged": "5", + "insertions": "948", + "deletions": "883", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-07T13:31:36.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-07T12:10:40.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-06T13:08:07.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-06T11:59:38.000Z", + "fileChanged": "4", + "insertions": "24", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-06T11:59:09.000Z", + "fileChanged": "1", + "deletions": "370", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-06T11:36:45.000Z", + "fileChanged": "53", + "insertions": "2256", + "deletions": "231", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-06T11:33:42.000Z", + "fileChanged": "2", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-06T11:29:24.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-06T11:17:30.000Z", + "fileChanged": "2", + "insertions": "34", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-05T13:33:42.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-05T09:17:26.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-04T12:44:40.000Z", + "fileChanged": "4", + "insertions": "115", + "deletions": "72", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-04T10:05:59.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-03T16:39:37.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-03T16:19:40.000Z", + "fileChanged": "1", + "insertions": "27", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-03T15:51:35.000Z", + "fileChanged": "3", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-01T12:56:45.000Z", + "fileChanged": "4", + "insertions": "22", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-08-01T10:58:39.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-31T17:56:53.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-31T17:48:19.000Z", + "fileChanged": "2", + "insertions": "36", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-31T17:16:08.000Z", + "fileChanged": "2", + "insertions": "48", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-31T16:49:30.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-31T16:34:27.000Z", + "fileChanged": "2", + "insertions": "74", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-31T12:36:48.000Z", + "fileChanged": "124", + "insertions": "7951", + "deletions": "2392", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-31T09:59:36.000Z", + "fileChanged": "3", + "insertions": "44", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-30T13:54:38.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-28T10:29:18.000Z", + "fileChanged": "46", + "insertions": "9585", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-27T13:48:16.000Z", + "fileChanged": "4", + "insertions": "38", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-27T13:30:07.000Z", + "fileChanged": "2", + "insertions": "69", + "deletions": "69", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-25T15:52:21.000Z", + "fileChanged": "17", + "insertions": "2030", + "deletions": "2030", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-24T20:23:50.000Z", + "fileChanged": "3", + "insertions": "55", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-24T20:22:08.000Z", + "fileChanged": "2", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-24T18:42:54.000Z", + "fileChanged": "1", + "deletions": "15", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-24T18:09:26.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-24T13:14:59.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-24T10:53:46.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-23T23:15:21.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-23T16:36:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-23T16:35:43.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-23T16:35:03.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-20T19:22:19.000Z", + "fileChanged": "4", + "insertions": "21", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-20T19:07:34.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-20T16:30:15.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-20T16:19:13.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-20T11:18:42.000Z", + "fileChanged": "153", + "insertions": "11061", + "deletions": "4631", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-20T11:01:40.000Z", + "fileChanged": "16", + "insertions": "994", + "deletions": "208", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-20T10:52:03.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-16T15:19:02.000Z", + "fileChanged": "5", + "insertions": "72", + "deletions": "73", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-16T14:54:55.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-16T13:43:03.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-16T08:59:40.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-15T15:52:38.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-15T15:52:11.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-15T15:00:15.000Z", + "fileChanged": "3", + "insertions": "71", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-15T12:36:38.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-15T05:54:01.000Z", + "fileChanged": "2", + "insertions": "93", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-14T16:31:50.000Z", + "fileChanged": "2", + "insertions": "262", + "deletions": "282", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-14T09:59:13.000Z", + "fileChanged": "1", + "insertions": "66", + "deletions": "36", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-13T22:00:07.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-13T14:35:48.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-13T13:36:14.000Z", + "fileChanged": "3", + "insertions": "27", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-13T10:48:59.000Z", + "fileChanged": "5", + "insertions": "96", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-13T09:44:41.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-12T13:02:13.000Z", + "fileChanged": "6", + "insertions": "37", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-12T09:49:37.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-12T09:48:37.000Z", + "fileChanged": "2", + "insertions": "8", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-13T14:38:24.000Z", + "fileChanged": "19", + "insertions": "2030", + "deletions": "1923", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-11T09:43:06.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-10T11:57:05.000Z", + "fileChanged": "5", + "insertions": "26", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-07-10T11:38:53.000Z", + "fileChanged": "13", + "insertions": "134", + "deletions": "202", + "type": "Commit" + }, + { + "authorName": "Joshaven Potter ", + "authorEmail": "yourtech@gmail.com", + "date": "2009-06-30T22:49:56.000Z", + "fileChanged": "5", + "insertions": "85", + "deletions": "99", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-30T13:56:52.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-30T13:18:05.000Z", + "fileChanged": "4", + "insertions": "25", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-30T13:10:15.000Z", + "fileChanged": "1", + "insertions": "55", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-30T11:58:30.000Z", + "fileChanged": "3", + "insertions": "52", + "deletions": "56", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-30T11:56:52.000Z", + "fileChanged": "5", + "insertions": "17", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-30T11:40:00.000Z", + "fileChanged": "9", + "insertions": "32", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-30T11:27:25.000Z", + "fileChanged": "3", + "insertions": "1018", + "deletions": "1105", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-29T19:17:06.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-29T18:53:54.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-29T12:11:26.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-29T12:11:01.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-29T11:18:30.000Z", + "fileChanged": "19", + "insertions": "97", + "deletions": "97", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-29T11:17:49.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-29T08:55:05.000Z", + "fileChanged": "162", + "insertions": "54859", + "deletions": "3108", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-28T18:11:55.000Z", + "fileChanged": "7", + "insertions": "21", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-28T17:58:13.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-28T17:55:35.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-28T17:34:54.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-28T17:05:58.000Z", + "fileChanged": "13", + "insertions": "416", + "deletions": "255", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-28T10:40:20.000Z", + "fileChanged": "4", + "insertions": "70", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-27T18:40:43.000Z", + "fileChanged": "12", + "insertions": "74", + "deletions": "76", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-26T23:02:03.000Z", + "fileChanged": "2", + "insertions": "13", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-26T16:30:55.000Z", + "fileChanged": "8", + "insertions": "103", + "deletions": "149", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-26T16:29:57.000Z", + "fileChanged": "1", + "insertions": "262", + "deletions": "254", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-26T10:51:27.000Z", + "fileChanged": "16", + "insertions": "138", + "deletions": "162", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-25T18:25:44.000Z", + "fileChanged": "3", + "insertions": "62", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-25T17:13:20.000Z", + "fileChanged": "8", + "insertions": "146", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-27T17:06:29.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-27T16:26:25.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-26T22:49:47.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-26T22:43:03.000Z", + "fileChanged": "1", + "insertions": "19", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-26T22:13:37.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-26T21:42:06.000Z", + "fileChanged": "1", + "insertions": "29", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-24T14:43:37.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-24T11:58:17.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-24T11:44:12.000Z", + "fileChanged": "3", + "insertions": "113", + "deletions": "32", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-23T09:27:18.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-23T08:26:17.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-22T17:48:02.000Z", + "fileChanged": "4", + "insertions": "30", + "deletions": "51", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-22T17:32:42.000Z", + "fileChanged": "4", + "insertions": "4", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-22T16:28:48.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-22T12:15:10.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-22T11:51:47.000Z", + "fileChanged": "46", + "insertions": "2278", + "deletions": "1052", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-22T11:12:47.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "55", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-22T11:08:32.000Z", + "fileChanged": "374", + "insertions": "47866", + "deletions": "47863", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-21T21:28:12.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-21T21:27:36.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Urban Hafner ", + "authorEmail": "urban@bettong.net", + "date": "2009-06-21T14:59:11.000Z", + "fileChanged": "5", + "insertions": "20", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Urban Hafner ", + "authorEmail": "urban@bettong.net", + "date": "2009-06-21T14:40:08.000Z", + "fileChanged": "2", + "insertions": "37", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Urban Hafner ", + "authorEmail": "urban@bettong.net", + "date": "2009-06-21T14:28:58.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Urban Hafner ", + "authorEmail": "urban@bettong.net", + "date": "2009-06-21T14:28:23.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Urban Hafner ", + "authorEmail": "urban@bettong.net", + "date": "2009-06-21T14:10:20.000Z" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-21T12:34:13.000Z", + "fileChanged": "1", + "insertions": "61", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-21T12:07:52.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-21T12:06:03.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-21T11:57:23.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-21T11:50:13.000Z", + "fileChanged": "1", + "insertions": "137", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-21T11:41:03.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-21T11:29:15.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-21T11:18:00.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-21T11:10:00.000Z", + "fileChanged": "2", + "insertions": "247", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-20T14:44:06.000Z", + "fileChanged": "4", + "insertions": "273", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-20T13:17:54.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Urban Hafner ", + "authorEmail": "urban@bettong.net", + "date": "2009-06-19T07:03:24.000Z" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-18T21:22:31.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-18T13:35:02.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-18T12:58:17.000Z", + "fileChanged": "3", + "insertions": "16", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-18T12:50:10.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-18T12:36:30.000Z", + "fileChanged": "3", + "insertions": "145", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-18T12:34:49.000Z", + "fileChanged": "5", + "insertions": "113", + "deletions": "140", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Urban Hafner ", + "authorEmail": "urban@bettong.net", + "date": "2009-06-18T07:27:12.000Z" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-17T16:15:28.000Z", + "fileChanged": "109", + "insertions": "6736", + "deletions": "2046", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-17T13:05:44.000Z", + "fileChanged": "3", + "insertions": "58", + "deletions": "56", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-17T08:16:48.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Urban Hafner ", + "authorEmail": "urban@bettong.net", + "date": "2009-06-17T06:52:47.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Urban Hafner ", + "authorEmail": "urban@bettong.net", + "date": "2009-06-17T06:01:28.000Z", + "fileChanged": "1", + "insertions": "23", + "deletions": "0", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Urban Hafner ", + "authorEmail": "urban@bettong.net", + "date": "2009-06-16T19:09:37.000Z" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-16T18:53:15.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-16T17:56:00.000Z", + "fileChanged": "1", + "insertions": "35", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-16T17:32:31.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-16T15:47:59.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-16T15:43:40.000Z", + "fileChanged": "1", + "insertions": "48", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-16T13:50:52.000Z", + "fileChanged": "4", + "insertions": "42", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-16T13:47:57.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Urban Hafner ", + "authorEmail": "urban@bettong.net", + "date": "2009-06-16T06:20:00.000Z", + "fileChanged": "1", + "insertions": "18", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-15T14:57:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-15T13:24:55.000Z", + "fileChanged": "5", + "insertions": "39", + "deletions": "60", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-15T12:35:02.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "24", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-13T14:50:37.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-13T14:47:09.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-13T12:13:42.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-12T15:37:43.000Z", + "fileChanged": "4", + "insertions": "35", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-12T15:30:37.000Z", + "fileChanged": "2", + "deletions": "7", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-12T15:27:44.000Z", + "fileChanged": "3", + "insertions": "415", + "deletions": "225", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-12T13:24:57.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-12T13:23:36.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-11T11:54:03.000Z", + "fileChanged": "2", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-11T11:43:00.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-11T11:40:25.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-11T11:40:14.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-11T09:42:43.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-11T00:34:04.000Z", + "fileChanged": "1", + "insertions": "25", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-10T17:05:54.000Z", + "fileChanged": "1", + "deletions": "2", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-10T16:35:05.000Z", + "fileChanged": "3", + "insertions": "429", + "deletions": "263", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-10T16:29:59.000Z", + "fileChanged": "1", + "insertions": "49", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-10T13:24:28.000Z", + "fileChanged": "1", + "deletions": "28", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-10T13:24:14.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-09T15:47:42.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-09T13:20:10.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-09T13:18:12.000Z", + "fileChanged": "4", + "insertions": "179", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-09T12:10:53.000Z", + "fileChanged": "2", + "insertions": "55", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-09T11:59:13.000Z", + "fileChanged": "1", + "insertions": "10", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-09T08:28:59.000Z", + "fileChanged": "1", + "insertions": "54", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-09T08:06:04.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-08T21:56:09.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-08T17:10:23.000Z", + "fileChanged": "14", + "insertions": "187", + "deletions": "173", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-08T16:34:06.000Z", + "fileChanged": "312", + "insertions": "14121", + "deletions": "8256", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-08T14:17:33.000Z", + "fileChanged": "7", + "insertions": "121", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-08T13:30:10.000Z", + "fileChanged": "13", + "insertions": "153", + "deletions": "162", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-06T21:57:15.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-05T18:15:54.000Z", + "fileChanged": "4", + "insertions": "31", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-05T13:18:05.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-05T13:10:46.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "14", + "type": "Commit" + }, + { + "type": "Merge", + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-05T12:32:53.000Z" + }, + { + "authorName": "Urban Hafner ", + "authorEmail": "urban@bettong.net", + "date": "2009-06-05T10:28:56.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-05T10:27:09.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Urban Hafner ", + "authorEmail": "urban@bettong.net", + "date": "2009-06-05T10:23:51.000Z", + "fileChanged": "2", + "insertions": "998", + "deletions": "812", + "type": "Commit" + }, + { + "authorName": "Urban Hafner ", + "authorEmail": "urban@bettong.net", + "date": "2009-06-05T08:38:41.000Z", + "fileChanged": "2", + "insertions": "19", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-04T13:41:40.000Z", + "fileChanged": "3", + "insertions": "17", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-04T10:36:08.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-04T10:31:45.000Z", + "fileChanged": "4", + "insertions": "38", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-04T08:49:01.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-03T09:43:54.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-01T18:59:33.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-06-01T10:56:28.000Z", + "fileChanged": "3", + "insertions": "21", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-31T12:25:07.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-31T12:24:10.000Z", + "fileChanged": "1", + "insertions": "20", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-30T17:36:41.000Z", + "fileChanged": "1", + "insertions": "36", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-30T16:14:26.000Z", + "fileChanged": "1", + "insertions": "51", + "deletions": "55", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-29T16:59:18.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-29T15:05:03.000Z", + "fileChanged": "1", + "deletions": "33", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-29T11:58:52.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-28T12:47:16.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-28T11:45:18.000Z", + "fileChanged": "2", + "insertions": "78", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-28T10:30:22.000Z", + "fileChanged": "1", + "insertions": "0", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-27T16:41:04.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-27T16:38:22.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-27T14:29:55.000Z", + "fileChanged": "4", + "insertions": "25", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-27T13:42:16.000Z", + "fileChanged": "3", + "insertions": "27", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-27T12:53:36.000Z", + "fileChanged": "3", + "insertions": "846", + "deletions": "840", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-26T23:59:31.000Z", + "fileChanged": "2", + "insertions": "42", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-26T23:35:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-26T18:35:42.000Z", + "fileChanged": "1", + "deletions": "16", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-26T17:48:49.000Z", + "fileChanged": "7", + "insertions": "482", + "deletions": "62", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-26T16:18:17.000Z", + "fileChanged": "6", + "insertions": "15", + "deletions": "15", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-26T16:14:32.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-26T16:06:53.000Z", + "fileChanged": "2", + "insertions": "21", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-26T15:46:56.000Z", + "fileChanged": "7", + "insertions": "137", + "deletions": "140", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-26T13:20:25.000Z", + "fileChanged": "2", + "insertions": "871", + "deletions": "737", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-26T10:11:31.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-26T09:39:40.000Z", + "fileChanged": "3", + "insertions": "178", + "deletions": "134", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-26T01:37:18.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-26T01:30:51.000Z", + "fileChanged": "5", + "insertions": "421", + "deletions": "515", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-25T17:52:05.000Z", + "fileChanged": "1", + "insertions": "22", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-25T11:38:36.000Z", + "fileChanged": "3", + "insertions": "26", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-25T11:17:35.000Z", + "fileChanged": "4", + "insertions": "238", + "deletions": "165", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-21T10:49:41.000Z", + "fileChanged": "5", + "insertions": "41", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-21T10:33:57.000Z", + "fileChanged": "3", + "insertions": "37", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-20T14:58:08.000Z", + "fileChanged": "1", + "insertions": "74", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-20T14:05:31.000Z", + "fileChanged": "3", + "insertions": "17", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-20T14:02:53.000Z", + "fileChanged": "2", + "insertions": "97", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-20T11:42:26.000Z", + "fileChanged": "1", + "insertions": "62", + "deletions": "73", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-20T11:00:20.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-20T08:28:10.000Z", + "fileChanged": "2", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-20T08:17:07.000Z", + "fileChanged": "3", + "insertions": "6", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-20T08:02:02.000Z", + "fileChanged": "4", + "insertions": "32", + "deletions": "48", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-19T20:32:41.000Z", + "fileChanged": "4", + "insertions": "105", + "deletions": "98", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-19T19:53:26.000Z", + "fileChanged": "4", + "insertions": "67", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-19T18:40:56.000Z", + "fileChanged": "1", + "deletions": "1", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-19T18:31:40.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-19T18:24:37.000Z", + "fileChanged": "5", + "insertions": "70", + "deletions": "27", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-19T14:19:47.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-19T12:49:28.000Z", + "fileChanged": "5", + "insertions": "79", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-19T12:46:07.000Z", + "fileChanged": "1", + "insertions": "26", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-19T11:16:36.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-19T11:12:46.000Z", + "fileChanged": "4", + "insertions": "167", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-18T22:01:11.000Z", + "fileChanged": "2", + "insertions": "15", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-18T21:21:11.000Z", + "fileChanged": "1", + "insertions": "59", + "deletions": "75", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-18T17:33:05.000Z", + "fileChanged": "6", + "insertions": "816", + "deletions": "185", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-18T12:02:50.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-18T11:48:58.000Z", + "fileChanged": "3", + "insertions": "41", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-18T11:38:15.000Z", + "fileChanged": "3", + "insertions": "63", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-18T10:44:01.000Z", + "fileChanged": "3", + "insertions": "170", + "deletions": "160", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-17T13:54:06.000Z", + "fileChanged": "5", + "insertions": "460", + "deletions": "445", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-16T11:53:18.000Z", + "fileChanged": "1", + "insertions": "38", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-16T10:54:44.000Z", + "fileChanged": "4", + "insertions": "39", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-16T10:49:33.000Z", + "fileChanged": "4", + "insertions": "15", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-16T10:44:49.000Z", + "fileChanged": "2", + "insertions": "27", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-15T20:41:36.000Z", + "fileChanged": "2", + "insertions": "31", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-15T16:11:49.000Z", + "fileChanged": "4", + "insertions": "149", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-15T14:28:10.000Z", + "fileChanged": "12", + "insertions": "69", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-14T23:47:17.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-14T23:36:51.000Z", + "fileChanged": "4", + "insertions": "23", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-14T23:12:46.000Z", + "fileChanged": "3", + "insertions": "36", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-14T21:47:21.000Z", + "fileChanged": "6", + "insertions": "139", + "deletions": "124", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-14T18:34:14.000Z", + "fileChanged": "6", + "insertions": "47", + "deletions": "31", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-14T16:37:53.000Z", + "fileChanged": "2", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-14T15:36:39.000Z", + "fileChanged": "1", + "deletions": "11", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-14T15:36:25.000Z", + "fileChanged": "2", + "insertions": "73", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-14T13:55:28.000Z", + "fileChanged": "1", + "insertions": "291", + "deletions": "168", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-14T12:05:07.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-14T11:16:45.000Z", + "fileChanged": "8", + "insertions": "37", + "deletions": "19", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-13T21:44:05.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-13T21:35:36.000Z", + "fileChanged": "3", + "insertions": "39", + "deletions": "40", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-13T19:43:24.000Z", + "fileChanged": "4", + "insertions": "182", + "deletions": "182", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-13T19:42:18.000Z", + "fileChanged": "4", + "insertions": "34", + "deletions": "28", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-13T19:37:01.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-13T15:46:00.000Z", + "fileChanged": "1", + "insertions": "222", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-12T09:39:42.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-12T01:46:30.000Z", + "fileChanged": "1", + "insertions": "1", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-12T01:46:04.000Z", + "fileChanged": "1", + "insertions": "37", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-11T22:12:56.000Z", + "fileChanged": "298", + "insertions": "53106", + "deletions": "40261", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-11T21:38:41.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-11T17:08:29.000Z", + "fileChanged": "1", + "insertions": "43", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-11T16:54:52.000Z", + "fileChanged": "1", + "insertions": "48", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-11T15:16:14.000Z", + "fileChanged": "2", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-07T14:18:33.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-07T14:15:07.000Z", + "fileChanged": "5", + "insertions": "119", + "deletions": "68", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-07T10:15:01.000Z", + "fileChanged": "2", + "insertions": "98", + "deletions": "49", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-06T17:07:43.000Z", + "fileChanged": "1", + "insertions": "43", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-06T13:03:13.000Z", + "fileChanged": "1", + "insertions": "9", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-06T12:54:28.000Z", + "fileChanged": "3", + "insertions": "202", + "deletions": "127", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-05T19:16:19.000Z", + "fileChanged": "2", + "insertions": "9", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-05T17:39:08.000Z", + "fileChanged": "3", + "insertions": "30", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-05T16:11:04.000Z", + "fileChanged": "7", + "insertions": "134", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-05T10:52:18.000Z", + "fileChanged": "19", + "insertions": "482", + "deletions": "914", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-04T15:38:17.000Z", + "fileChanged": "4", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-04T15:19:04.000Z", + "fileChanged": "5", + "insertions": "101", + "deletions": "20", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-04T14:36:57.000Z", + "fileChanged": "1", + "insertions": "21", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-04T14:23:30.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-04T13:39:36.000Z", + "fileChanged": "5", + "insertions": "100", + "deletions": "77", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-04T10:08:13.000Z", + "fileChanged": "5", + "insertions": "67", + "deletions": "61", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-03T19:37:10.000Z", + "fileChanged": "2", + "insertions": "68", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-03T19:06:20.000Z", + "fileChanged": "6", + "insertions": "211", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-03T12:09:16.000Z", + "fileChanged": "32", + "insertions": "7221", + "deletions": "4011", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-02T23:11:39.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-02T23:06:21.000Z", + "fileChanged": "2", + "insertions": "17", + "deletions": "16", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-02T23:01:42.000Z", + "fileChanged": "3", + "insertions": "65", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-05-02T14:34:24.000Z", + "fileChanged": "4", + "insertions": "412", + "deletions": "425", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-29T12:12:24.000Z", + "fileChanged": "1", + "insertions": "14", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-29T12:05:25.000Z", + "fileChanged": "3", + "insertions": "5", + "deletions": "12", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-29T12:00:22.000Z", + "fileChanged": "3", + "insertions": "89", + "deletions": "69", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-29T09:09:32.000Z", + "fileChanged": "7", + "insertions": "15", + "deletions": "67", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-29T09:00:46.000Z", + "fileChanged": "7", + "insertions": "139", + "deletions": "161", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-28T23:07:19.000Z", + "fileChanged": "4", + "insertions": "72", + "deletions": "101", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-28T21:09:56.000Z", + "fileChanged": "13", + "insertions": "67", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-28T20:37:03.000Z", + "fileChanged": "21", + "insertions": "105", + "deletions": "1573", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-23T17:26:56.000Z", + "fileChanged": "3", + "insertions": "11", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-23T17:04:01.000Z", + "fileChanged": "1", + "insertions": "3", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-23T15:29:31.000Z", + "fileChanged": "3", + "insertions": "28", + "deletions": "21", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-23T13:07:54.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-23T12:22:57.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-23T11:18:38.000Z", + "fileChanged": "4", + "insertions": "43", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-23T10:09:07.000Z", + "fileChanged": "2", + "insertions": "20", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-22T23:14:11.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-22T17:55:08.000Z", + "fileChanged": "178", + "insertions": "44921", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-22T17:35:47.000Z", + "fileChanged": "763", + "insertions": "265280", + "deletions": "22", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-22T16:17:56.000Z", + "fileChanged": "4", + "deletions": "12", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-22T15:19:08.000Z", + "fileChanged": "5", + "insertions": "44", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-22T14:05:14.000Z", + "fileChanged": "2", + "insertions": "51", + "deletions": "50", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-22T14:04:05.000Z", + "fileChanged": "1", + "insertions": "7", + "deletions": "6", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-22T13:52:23.000Z", + "fileChanged": "2", + "insertions": "49", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-22T13:48:29.000Z", + "fileChanged": "3", + "insertions": "36", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-22T12:09:17.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-22T12:01:06.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-22T11:59:28.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-22T11:52:30.000Z", + "fileChanged": "1", + "insertions": "73", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-22T08:29:45.000Z", + "fileChanged": "4", + "insertions": "134", + "deletions": "30", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-21T21:36:01.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-21T21:13:13.000Z", + "fileChanged": "4", + "insertions": "108", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-21T17:56:30.000Z", + "fileChanged": "3", + "insertions": "186", + "deletions": "236", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-21T14:30:47.000Z", + "fileChanged": "4", + "insertions": "12", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-21T14:22:14.000Z", + "fileChanged": "2", + "insertions": "75", + "deletions": "118", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-21T13:55:11.000Z", + "fileChanged": "4", + "insertions": "37", + "deletions": "53", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-21T12:38:55.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-21T11:52:21.000Z", + "fileChanged": "8", + "insertions": "81", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-21T11:51:05.000Z", + "fileChanged": "2", + "insertions": "14", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-20T16:48:25.000Z", + "fileChanged": "8", + "deletions": "189", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-20T16:46:09.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-20T16:44:30.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "33", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-20T00:55:08.000Z", + "fileChanged": "5", + "insertions": "162", + "deletions": "141", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-20T00:54:36.000Z", + "fileChanged": "1", + "insertions": "24", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-18T13:35:42.000Z", + "fileChanged": "10", + "insertions": "948", + "deletions": "929", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-18T12:34:30.000Z", + "fileChanged": "1", + "insertions": "41", + "deletions": "41", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-18T12:31:13.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-18T08:58:41.000Z", + "fileChanged": "4", + "insertions": "64", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-18T00:01:23.000Z", + "fileChanged": "4", + "insertions": "23", + "deletions": "9", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-17T16:54:29.000Z", + "fileChanged": "4", + "insertions": "209", + "deletions": "221", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-16T19:40:25.000Z", + "fileChanged": "1", + "deletions": "27", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-16T19:05:26.000Z", + "fileChanged": "4", + "insertions": "154", + "deletions": "77", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-16T18:09:55.000Z", + "fileChanged": "6", + "insertions": "199", + "deletions": "129", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-16T11:58:10.000Z", + "fileChanged": "4", + "insertions": "28", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-16T11:42:34.000Z", + "fileChanged": "2", + "insertions": "18", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-16T11:20:35.000Z", + "fileChanged": "2", + "insertions": "53", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-16T11:20:22.000Z", + "fileChanged": "1", + "insertions": "5", + "deletions": "3", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-16T11:20:02.000Z", + "fileChanged": "3", + "deletions": "95", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-16T09:37:44.000Z", + "fileChanged": "3", + "insertions": "145", + "deletions": "25", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-16T09:36:39.000Z", + "fileChanged": "2", + "deletions": "572", + "insertions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-15T19:23:10.000Z", + "fileChanged": "3", + "insertions": "217", + "deletions": "14", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-15T08:08:28.000Z", + "fileChanged": "17", + "insertions": "1759", + "deletions": "496", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-04T14:53:43.000Z", + "fileChanged": "3", + "insertions": "35", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-04T12:50:15.000Z", + "fileChanged": "22", + "insertions": "1829", + "deletions": "1564", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-04-03T11:43:03.000Z", + "fileChanged": "45", + "insertions": "28836", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-15T15:02:23.000Z", + "fileChanged": "1", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-15T11:53:04.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-15T11:51:51.000Z", + "fileChanged": "1", + "insertions": "13", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-15T11:31:35.000Z", + "fileChanged": "1", + "insertions": "12", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-15T10:11:51.000Z", + "fileChanged": "3", + "insertions": "13", + "deletions": "11", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-15T08:44:26.000Z", + "fileChanged": "2", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-13T11:22:35.000Z", + "fileChanged": "6", + "insertions": "30", + "deletions": "47", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-09T17:21:59.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-09T16:26:42.000Z", + "fileChanged": "2", + "insertions": "33", + "deletions": "8", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-09T13:09:09.000Z", + "fileChanged": "4", + "insertions": "65", + "deletions": "45", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-09T13:08:31.000Z", + "fileChanged": "1", + "insertions": "8", + "deletions": "18", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-09T00:23:41.000Z", + "fileChanged": "1", + "insertions": "108", + "deletions": "68", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-07T16:08:35.000Z", + "fileChanged": "4", + "insertions": "63", + "deletions": "138", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-06T18:49:52.000Z", + "fileChanged": "7", + "insertions": "350", + "deletions": "126", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-05T17:17:36.000Z", + "fileChanged": "2", + "insertions": "44", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-05T13:45:11.000Z", + "fileChanged": "2", + "insertions": "28", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-05T13:35:54.000Z", + "fileChanged": "3", + "insertions": "12", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-05T13:22:09.000Z", + "fileChanged": "2", + "insertions": "62", + "deletions": "39", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-05T12:53:21.000Z", + "fileChanged": "1", + "insertions": "75", + "deletions": "7", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-05T12:41:10.000Z", + "fileChanged": "4", + "insertions": "295", + "deletions": "124", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-04T18:16:07.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-04T18:15:39.000Z", + "fileChanged": "2", + "insertions": "359", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-04T11:04:04.000Z", + "fileChanged": "3", + "insertions": "15", + "deletions": "1", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-04T10:54:20.000Z", + "fileChanged": "3", + "insertions": "22", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-04T10:29:39.000Z", + "fileChanged": "6", + "insertions": "113", + "deletions": "4", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-04T09:22:37.000Z", + "fileChanged": "1", + "insertions": "2", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-04T09:08:33.000Z", + "fileChanged": "7", + "insertions": "9", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-03T23:31:37.000Z", + "fileChanged": "9", + "insertions": "95", + "deletions": "90", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-03T18:17:33.000Z", + "fileChanged": "5", + "insertions": "381", + "deletions": "212", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-03T01:36:08.000Z", + "fileChanged": "1", + "insertions": "81", + "deletions": "71", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-03T01:15:26.000Z", + "fileChanged": "2", + "insertions": "77", + "deletions": "26", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-03T00:56:15.000Z", + "fileChanged": "10", + "insertions": "969", + "deletions": "822", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-02T14:49:24.000Z", + "fileChanged": "7", + "insertions": "268", + "deletions": "37", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-03-01T11:15:27.000Z", + "fileChanged": "2", + "insertions": "22", + "deletions": "46", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-24T18:13:58.000Z", + "fileChanged": "2", + "insertions": "129", + "deletions": "10", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-23T21:43:50.000Z", + "fileChanged": "2", + "insertions": "11", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-23T20:53:03.000Z", + "fileChanged": "3", + "insertions": "18", + "deletions": "17", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-23T20:04:30.000Z", + "fileChanged": "3", + "insertions": "128", + "deletions": "63", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-23T12:48:34.000Z", + "fileChanged": "6", + "insertions": "248", + "deletions": "672", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-22T17:15:18.000Z", + "fileChanged": "3", + "insertions": "26", + "deletions": "13", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-22T16:50:43.000Z", + "fileChanged": "1", + "insertions": "4", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-22T16:46:11.000Z", + "fileChanged": "7", + "insertions": "47", + "deletions": "23", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-21T20:00:40.000Z", + "fileChanged": "5", + "insertions": "36", + "deletions": "88", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-20T16:49:47.000Z", + "fileChanged": "2", + "insertions": "7", + "deletions": "2", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-20T16:06:07.000Z", + "fileChanged": "3", + "insertions": "51", + "deletions": "113", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-20T15:34:18.000Z", + "fileChanged": "1", + "insertions": "6", + "deletions": "5", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-20T15:18:44.000Z", + "fileChanged": "3", + "insertions": "73", + "deletions": "65", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-16T00:34:45.000Z", + "fileChanged": "5", + "insertions": "993", + "deletions": "0", + "type": "Commit" + }, + { + "authorName": "Ryan ", + "authorEmail": "ry@tinyclouds.org", + "date": "2009-02-16T00:02:00.000Z", + "fileChanged": "3", + "insertions": "8", + "deletions": "0", + "type": "Commit" + } +] diff --git a/gruntfile.js b/gruntfile.js new file mode 100644 index 0000000..5ddf40a --- /dev/null +++ b/gruntfile.js @@ -0,0 +1,18 @@ +var grunt = require('grunt'); + +module.exports=function(grunt) { + +grunt.initConfig({ + jshint:{ + all:['fun.js','!**/node_modules/**/*.js'] +}, +copy:{ + main:{ + files:[{expand: true, src: ['routes/**'], dest: 'dest/', filter: 'isFile'}] + } +} +}) + +grunt.loadNpmTasks('grunt-contrib-jshint'); +grunt.loadNpmTasks('grunt-contrib-copy'); +} diff --git a/output b/output new file mode 100644 index 0000000..e69de29 diff --git a/package.json b/package.json index 6a36691..a31f3a5 100644 --- a/package.json +++ b/package.json @@ -13,10 +13,15 @@ "express": "~4.13.1", "express-session": "^1.13.0", "formidable": "^1.0.17", + "highland": "^2.7.2", "html": "0.0.10", "jade": "~1.11.0", "mongoose": "^4.4.7", "morgan": "~1.6.1", - "serve-favicon": "~2.3.0" + "serve-favicon": "~2.3.0", + "sift": "^3.2.1" + }, + "devDependencies": { + "should": "^8.3.0" } } diff --git a/query-executor/index.js b/query-executor/index.js new file mode 100644 index 0000000..ec9a336 --- /dev/null +++ b/query-executor/index.js @@ -0,0 +1,93 @@ +var sift = require('sift'); +var _ = require('highland'); +var rollingCount=require('../rollingCount') +var QueryExecutor = function(query) { + var self = this; + self.query = query; + var RC=new Array(); + var RT=new Array(); + self.getPipeline = function() { + return self.createPipeline(self.query); + } + + self.createPipeline = function(query) { + var pipeline = []; + if(query.hasOwnProperty('from') && query.from.hasOwnProperty('where')) { + var sifter = sift(query.from.where); + pipeline.push(_.filter(sifter)); + } + + pipeline.push(_.map(function(obj) { + if(query.eval.val1.rolling.over.time){ + RT.push(new rollingTime(query.eval.val1.rolling.over.time)); //rollingTime not available + } + else { + RC.push(new rollingCount(query.eval.val1.rolling.over.count));//assume every computation is either rollingTime or rollingCount + } + if(query.eval.val2.rolling.over.count){ + RC.push(new rollingCount(query.eval.val1.rolling.over.count)); + } + else { + RT.push(new rollingTime(query.eval.val1.rolling.over.time)); //assume every computation is either rollingTime or rollingCount + } + var siftobj=new Object(); + expkeys=query.select; + siftobj.filter=function(value) { + var temp=new Object(); + for (var i = 0; i < expkeys.length; i++) { + temp[expkeys[i]]=value[expkeys[i]]; + } + var RTCount=0, + RCCount=0; + if(query.eval.val1.rolling.over.time){ + temp.val1=RT[RTCount++][query.eval.val1.rolling.evaluate](value[query.eval.val1.rolling.on]); //rollingTime not available + } + else { + temp.val1=RC[RCCount++][query.eval.val1.rolling.evaluate](value[query.eval.val1.rolling.on]);//assume every computation is either rollingTime or rollingCount + } + if(query.eval.val1.rolling.over.count){ + temp.val2=RC[RCCount++][query.eval.val1.rolling.evaluate](value[query.eval.val1.rolling.on]); //rollingTime not available + } + else { + temp.val2=RT[RTCount++][query.eval.val1.rolling.evaluate](value[query.eval.val1.rolling.on]);//assume every computation is either rollingTime or rollingCount + } + return temp; + } + var data={ + filter:obj + }; + var testQuery=sift(siftobj); + var tempdata=testQuery(data); //testQuery returns object with val1 and val2 set + var condition=query.project.$highlight.$condition; + condition=condition.replace('val1','tempdata.val1'); + condition=condition.replace('val2','tempdata.val2') + //filter that returns true/false depending on query condition + //{val1: {$gte: '$val2'}}//query.project.$highlight.$condition + tempdata.highlight=eval(condition) //highlight set to true/false depending on val1 and val2 + console.log(tempdata); + return tempdata; //object with select parameters and highlight + })); + return _.pipeline.apply(this, pipeline); + }; +}; + +exports = module.exports = QueryExecutor; + + + +// DELETE AFTER: +/*index is greater than 20 and less than or equals to 50: {index: {$gt: 20}, index: {$lte: 50}} // This syntax doesn't work when properties are the same. Use and instead as the following version. +index is greater than 20 and less than or equals to 50: +{ + $and: [ + {index: {$gt: 20}}, + {index: {$lte: 50}} + ] +} +index is greater than 90 or less than 10: +{ + $or: [ + {index: {$gt: 90}}, + {index: {$lt: 10}} + ] +}*/ diff --git a/rollingCount.js b/rollingCount.js new file mode 100644 index 0000000..dfb56d5 --- /dev/null +++ b/rollingCount.js @@ -0,0 +1,165 @@ + + +module.exports=function myfunction(n) +{ + + var arr1= new Array(); + var count=0; + this.sum= function(value) + { + value=parseInt(value); + var length; + length=arr1.length; + if(count=n) + { + var k=count%n; + arr1[k]=value; + var sum=0; + for(var h=0;h=n) + { + var k=count%n; + arr1[k]=value; + var min=99999999999; + for(var h=0;harr1[h]) + { + min=arr1[h]; + } + + } + count++; + return min; + } + + } + + this.max= function(value) + { + value=parseInt(value); + var length; + length=arr1.length; + if(count=n) + { + var k=count%n; + arr1[k]=value; + var max=-99999999999; + for(var h=0;h=n) + { + var k=count%n; + arr1[k]=value; + var sum=0; + for(var h=0;h=n) + { + var k=count%n; + arr1[k]=value; + var sum=0; + for(var h=0;h 0) { + //Calculate past date + pastDate = new Date(); + pastDate.setSeconds(pastDate.getSeconds() - this.windowDuration); + //Compute COUNT + for (var counter = arr.length - 1; counter >= 0; counter--) { + var itemdate = arr[counter].date; + if (Date.parse(itemdate) >= Date.parse(pastDate)) { + if (arr[counter].data !== "") { + datacount += 1; + } + } else { + //console.log("loop3 " + counter); + arr.splice(0, counter + 1); + //console.log(lineArr.length); + } + } + } + } + return datacount; + } + this.sum=function(data){ + //console.log(data); + var sum = 0; + var arr = accumulateByTime(windowDuration, data); + //console.log(arr); + // the array is defined and has at least one element + if (typeof arr !== 'undefined' && arr!==null) { + if (arr.length > 0) { + //Calculate past date + pastDate = new Date(); + pastDate.setSeconds(pastDate.getSeconds() - this.windowDuration); + //Compute SUM + for (var counter = arr.length - 1; counter >= 0; counter--) { + var itemdate = arr[counter].date; + if (Date.parse(itemdate) >= Date.parse(pastDate)) { + if (arr[counter].data !== "") { + sum += parseFloat(arr[counter].data); + } + } else { + //console.log("loop3 " + counter); + arr.splice(0, counter + 1); + //console.log(lineArr.length); + } + } + } + } + return sum; + } + this.avg=function(data){ + //console.log(data); + var sum = 0, + avg = 0, + datacount = 0; + var arr = accumulateByTime(windowDuration, data); + //console.log(arr); + // the array is defined and has at least one element + if (typeof arr !== 'undefined' && arr!==null) { + if (arr.length > 0) { + //Calculate past date + pastDate = new Date(); + pastDate.setSeconds(pastDate.getSeconds() - this.windowDuration); + //Compute AVG + for (var counter = arr.length - 1; counter >= 0; counter--) { + var itemdate = arr[counter].date; + if (Date.parse(itemdate) >= Date.parse(pastDate)) { + if (arr[counter].data !== "") { + sum += parseFloat(arr[counter].data); + datacount += 1; + avg = sum / datacount; + } + } else { + //console.log("loop3 " + counter); + arr.splice(0, counter + 1); + //console.log(lineArr.length); + } + } + } + } + return avg; + } + this.min=function(data){ + //console.log(data); + var min = 0,minArr=[]; + + var arr = accumulateByTime(windowDuration, data); + //console.log(arr); + // the array is defined and has at least one element + if (typeof arr !== 'undefined' && arr!==null) { + if (arr.length > 0) { + //Calculate past date + pastDate = new Date(); + pastDate.setSeconds(pastDate.getSeconds() - this.windowDuration); + //Compute AVG + for (var counter = arr.length - 1; counter >= 0; counter--) { + var itemdate = arr[counter].date; + if (Date.parse(itemdate) >= Date.parse(pastDate)) { + if (arr[counter].data !== "") { + minArr.push(arr[counter].data); + min = Math.min.apply(null, minArr); + } + } else { + //console.log("loop3 " + counter); + arr.splice(0, counter + 1); + //console.log(lineArr.length); + } + } + } + } + return min; + } + this.max=function(data){ + //console.log(data); + var max = 0,maxArr=[]; + + var arr = accumulateByTime(windowDuration, data); + //console.log(arr); + // the array is defined and has at least one element + if (typeof arr !== 'undefined' && arr!==null) { + if (arr.length > 0) { + //Calculate past date + pastDate = new Date(); + pastDate.setSeconds(pastDate.getSeconds() - this.windowDuration); + //Compute AVG + for (var counter = arr.length - 1; counter >= 0; counter--) { + var itemdate = arr[counter].date; + if (Date.parse(itemdate) >= Date.parse(pastDate)) { + if (arr[counter].data !== "") { + maxArr.push(arr[counter].data); + max = Math.max.apply(null, maxArr); + } + } else { + //console.log("loop3 " + counter); + arr.splice(0, counter + 1); + //console.log(lineArr.length); + } + } + } + } + return max; + } +} + +function accumulateByTime(windowDuration, data) { + //creating array if it doesn't exist + + if (typeof lineArr == "undefined" || !(lineArr instanceof Array)) { + lineArr = []; + } + //accumulating data for 10secs + if (typeof data !== 'undefined') { + var obj = {}; + obj.data = data.trim(); + obj.date = new Date(); + + lineArr.push(obj); + } + + if (lineArr.length == 1) { + t0 = new Date(); + } + //Get current time + currentTime = new Date(); + //Check if window active + var diffMs = currentTime.getTime() - t0.getTime(); + if (diffMs < 10) { + //window not yet active + return null; + } else { + //window active now + //return true; + //console.log(lineArr); + return lineArr; + } +} diff --git a/rollingTimeExample.js b/rollingTimeExample.js new file mode 100644 index 0000000..64f9d27 --- /dev/null +++ b/rollingTimeExample.js @@ -0,0 +1,19 @@ +var fs = require('fs'); + + + +var rollingTimeWindow = require('./rollingTime.js'); +//Creating a new instance +var timeWindow1 = new rollingTimeWindow(20); +var timeWindow2 = new rollingTimeWindow(20); +var timeWindow3 = new rollingTimeWindow(20); +var timeWindow4 = new rollingTimeWindow(20); +var timeWindow5 = new rollingTimeWindow(20); +for (var i = 0; i < 100000000; i++) { + var str='0'; + str+=i; + console.log("avg ** "+timeWindow1.avg(str)); + console.log("min ** "+timeWindow2.min(str)); + console.log("max ** "+timeWindow3.max(str)); + console.log("sum ** "+timeWindow4.sum(str)); +} diff --git a/samplequery.js b/samplequery.js new file mode 100644 index 0000000..f75f926 --- /dev/null +++ b/samplequery.js @@ -0,0 +1,38 @@ +var query = { + + select: ['authorName', 'authorEmail','insertions','deletions'], + eval: { + val1: { + rolling: { + evaluate: 'average', + over: { + count: 10 + }, + on: 'deletions' // measure + } + }, + val2: { + rolling: { + evaluate: 'average', + over: { + count: 10 + }, + on: 'insertions' + } + }, + }, + project: { + $highlight: {$condition: 'tempdata.val1 == tempdata.val2'} + }, + to: 'streamB' +} +module.exports=query; +// var output = { +// dimension1: '', +// dimension2: '', +// measure3: '', +// measure4: '', +// val1: '', +// val2: '', +// $highlight: true // This property should either exist with a true value, or not exist at all. +// } diff --git a/start.js b/start.js new file mode 100644 index 0000000..8589d56 --- /dev/null +++ b/start.js @@ -0,0 +1,38 @@ +var fs = require('fs'); + +//Read Data file +var input = fs.createReadStream('datastream.csv'); + +var rollingTimeWindow = require('./rollingTime.js'); +//Creating a new instance +var timeWindow = new rollingTimeWindow(10); + +readLines(input,timeWindow); +//Function for sending streaming data as input +function readLines(input, timeWindow) { + var remaining = ''; + + input.on('data', function(data) { + remaining += data; + var index = remaining.indexOf('\n'); + var last = 0; + while (index > -1) { + var line = remaining.substring(last, index); + last = index + 1; + + //console.dir(timeWindow); + //console.log(timeWindow.count(line)); + //console.log(timeWindow.sum(line)); + // console.log(timeWindow.avg(line)); + //console.log(timeWindow.min(line)); + console.log(timeWindow.max(line)); + // console.log(timeWindow.StandardDeviation()); + + index = remaining.indexOf('\n', last); + } + remaining = remaining.substring(last); + }); + input.on('end', function() { + + }); +} diff --git a/test/queryParser.spec.js b/test/queryParser.spec.js new file mode 100644 index 0000000..a08202c --- /dev/null +++ b/test/queryParser.spec.js @@ -0,0 +1,68 @@ +var _ = require('highland'); +var QueryExecutor = require('../query-executor'); +var should = require('should'); + +describe('Query Parser', function() { + var inputStream = []; + var i; + for(i=0; i<100; i++) { + inputStream.push({index: i, + insertions:'2', + deletions:'4', + authorName:'rick', + authorEmail:'morph'}); + } + + it('Simple Filter Query', function(done) { + var query = { + from: { + where: { + $and: [ + {index: {$gt: 20}}, + {index: {$lte: 50}} + ], + } + }, + select:['insertions','deletions','authorName','authorEmail'], + eval: { + val1: { + rolling: { + evaluate: 'average', + over: { + count: 10 + }, + on: 'deletions' // measure + } + }, + val2: { + rolling: { + evaluate: 'average', + over: { + count: 10 + }, + on: 'insertions' + } + }, + }, + project: { + // $highlight: {$condition: {val1: {$eq: eval['val2']}}} + $highlight: {$condition: 'val1 ==val2'} + }, + to: 'streamB' + }; +console.log("****************************changed****************************************"); + var executor = new QueryExecutor(query); + + var pipeline = executor.getPipeline(); + + _(inputStream).pipe(pipeline).toArray(function(arr) { + // console.log(arr); + arr.should.be.instanceOf(Array).and.have.lengthOf(30); + var truthy = arr.every(function(x) { + return x>20 || x<=50 + }); + truthy.should.be.true; + done(); + }); + }); +}); diff --git a/trial.js b/trial.js index d8df0c1..39174a1 100644 --- a/trial.js +++ b/trial.js @@ -1,14 +1,14 @@ -var myfunction=require("./fun.js"); +var rollingCount=require("./rollingCount.js"); -var ins1=new myfunction(10); +var ins1=new rollingCount(10); -var ins2=new myfunction(10); +var ins2=new rollingCount(10); -var ins3=new myfunction(10); +var ins3=new rollingCount(10); -var ins4=new myfunction(10); +var ins4=new rollingCount(10); -var ins5=new myfunction(10); +var ins5=new rollingCount(10); @@ -29,8 +29,3 @@ for(var j=0;j<50;j++) } - - - - - diff --git a/tryquery.js b/tryquery.js new file mode 100644 index 0000000..a88ac46 --- /dev/null +++ b/tryquery.js @@ -0,0 +1,65 @@ +var sift = require('sift'); +var _ = require('highland'); +var rollingCount = require('./rollingCount'); +// var rollingTime = require('rollingTime'); +var query = require('./samplequery.js'); + +var RC=[],RT=[]; + +if(query.eval.val1.rolling.over.time){ +RT.push(new rollingTime(query.eval.val1.rolling.over.time)); //rollingTime not available +} +else { + RC.push(new rollingCount(query.eval.val1.rolling.over.count));//assume every computation is either rollingTime or rollingCount +} +if(query.eval.val2.rolling.over.count){ +RC.push(new rollingCount(query.eval.val1.rolling.over.count)); +} +else { +RT.push(new rollingTime(query.eval.val1.rolling.over.time)); //assume every computation is either rollingTime or rollingCount +} +var siftobj=new Object(); + +expkeys=query.select; +// console.log(query.eval); + + +siftobj.filter=function(value) { +var temp=new Object(); +for (var i = 0; i < expkeys.length; i++) { + temp[expkeys[i]]=value[expkeys[i]]; +} +var RTCount=0, + RCCount=0; +if(query.eval.val1.rolling.over.time){ +temp.val1=RT[RTCount++][query.eval.val1.rolling.evaluate](value[query.eval.val1.rolling.on]); //rollingTime not available +} +else { + temp.val1=RC[RCCount++][query.eval.val1.rolling.evaluate](value[query.eval.val1.rolling.on]);//assume every computation is either rollingTime or rollingCount +} +if(query.eval.val1.rolling.over.count){ +temp.val2=RC[RCCount++][query.eval.val1.rolling.evaluate](value[query.eval.val1.rolling.on]); //rollingTime not available +} +else { + temp.val2=RT[RTCount++][query.eval.val1.rolling.evaluate](value[query.eval.val1.rolling.on]);//assume every computation is either rollingTime or rollingCount +} + +return temp; +} + + +var data={filter:{ + authorName:'emil', + authorEmail:'some@noone.com', + insertions:'100', + deletions:'9' +} +}; + +var testQuery=sift(siftobj); +for (var i = 0; i < 10; i++) { + console.log(testQuery(data)); +} +// var output=testQuery(data); + +// console.log(output); From a366c5b8ffd1f76bbb9ae32ad22c8254d36076a4 Mon Sep 17 00:00:00 2001 From: rahildar Date: Mon, 11 Apr 2016 11:44:55 +0530 Subject: [PATCH 8/8] initiate queryexc --- .gitignore | 1 + angular.html | 31 + app.js | 38 + exam11.js | 46 + models/expression.model.js | 34 + npm-debug.log | 1148 +++++++++++++++++ public/angular.min.js | 295 +++++ .../queryBuilder/queryBuilderController.js | 157 +++ .../directives/html/aptCache/dropMode.html | 39 + .../directives/html/aptCache/dropMonth.html | 26 + .../directives/html/aptCache/dropYear.html | 26 + .../directives/html/aptCache/radioFilter.html | 30 + .../javascripts/aptCache/dropDownElement.js | 49 + .../trafficRate/trafficRate.directive.js | 271 ++++ .../userAgent/agentPieChart.directive.js | 230 ++++ public/modules/graphs/dataGraphCode.js | 137 ++ public/modules/graphs/gitOtherGraphs.js | 227 ++++ public/modules/graphs/gitOtherGraphs.js.orig | 249 ++++ .../graphs/gitOtherGraphs_BACKUP_4867.js | 249 ++++ .../graphs/gitOtherGraphs_BACKUP_4973.js | 249 ++++ .../graphs/gitOtherGraphs_BASE_4867.js | 216 ++++ .../graphs/gitOtherGraphs_BASE_4973.js | 216 ++++ .../graphs/gitOtherGraphs_LOCAL_4867.js | 217 ++++ .../graphs/gitOtherGraphs_LOCAL_4973.js | 217 ++++ .../graphs/gitOtherGraphs_REMOTE_4867.js | 227 ++++ .../graphs/gitOtherGraphs_REMOTE_4973.js | 227 ++++ public/modules/graphs/gitplotGraph.js | 351 +++++ public/modules/graphs/rateGraphCode.js | 124 ++ .../images/filters/aptCache/addParaFilter.js | 58 + .../nginx/logListing/logListingFilters.js | 69 + public/modules/images/log_aggregator_logo.png | Bin 0 -> 18577 bytes public/modules/images/logo.png | Bin 0 -> 2965 bytes public/routes/logAggregator.routes.js | 153 +++ .../queryBuilder/queryBuilderService | 0 .../stylesheets/queryBuilder/queryBuilder.css | 25 + public/stylesheets/style.css | 496 +++++++ .../dashboardWizard/dashboardWizard.html | 173 +++ .../views/gitLog/mainPage/mainPage.view.html | 228 ++++ .../queryBuilder/liveQueryWizard.html | 129 ++ .../realTimeLogs/queryBuilder/expressions.js | 37 + test/demo.js | 0 ttemp.txt | 0 views/footer_includes.ejs | 89 ++ 43 files changed, 6784 insertions(+) create mode 100644 .gitignore create mode 100644 angular.html create mode 100644 exam11.js create mode 100644 models/expression.model.js create mode 100644 npm-debug.log create mode 100644 public/angular.min.js create mode 100644 public/controllers/realTimeLogs/queryBuilder/queryBuilderController.js create mode 100644 public/modules/directives/html/aptCache/dropMode.html create mode 100644 public/modules/directives/html/aptCache/dropMonth.html create mode 100644 public/modules/directives/html/aptCache/dropYear.html create mode 100644 public/modules/directives/html/aptCache/radioFilter.html create mode 100644 public/modules/directives/javascripts/aptCache/dropDownElement.js create mode 100644 public/modules/directives/javascripts/nginx/trafficRate/trafficRate.directive.js create mode 100644 public/modules/directives/javascripts/nginx/trafficRate/userAgent/agentPieChart.directive.js create mode 100644 public/modules/graphs/dataGraphCode.js create mode 100644 public/modules/graphs/gitOtherGraphs.js create mode 100644 public/modules/graphs/gitOtherGraphs.js.orig create mode 100644 public/modules/graphs/gitOtherGraphs_BACKUP_4867.js create mode 100644 public/modules/graphs/gitOtherGraphs_BACKUP_4973.js create mode 100644 public/modules/graphs/gitOtherGraphs_BASE_4867.js create mode 100644 public/modules/graphs/gitOtherGraphs_BASE_4973.js create mode 100644 public/modules/graphs/gitOtherGraphs_LOCAL_4867.js create mode 100644 public/modules/graphs/gitOtherGraphs_LOCAL_4973.js create mode 100644 public/modules/graphs/gitOtherGraphs_REMOTE_4867.js create mode 100644 public/modules/graphs/gitOtherGraphs_REMOTE_4973.js create mode 100644 public/modules/graphs/gitplotGraph.js create mode 100644 public/modules/graphs/rateGraphCode.js create mode 100644 public/modules/images/filters/aptCache/addParaFilter.js create mode 100644 public/modules/images/filters/nginx/logListing/logListingFilters.js create mode 100644 public/modules/images/log_aggregator_logo.png create mode 100644 public/modules/images/logo.png create mode 100755 public/routes/logAggregator.routes.js create mode 100644 public/services/realTimeLogs/queryBuilder/queryBuilderService create mode 100644 public/stylesheets/queryBuilder/queryBuilder.css create mode 100644 public/views/gitLog/dashboardWizard/dashboardWizard.html create mode 100644 public/views/gitLog/mainPage/mainPage.view.html create mode 100644 public/views/realTimeLogs/queryBuilder/liveQueryWizard.html create mode 100644 routes/realTimeLogs/queryBuilder/expressions.js create mode 100644 test/demo.js create mode 100644 ttemp.txt create mode 100755 views/footer_includes.ejs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/angular.html b/angular.html new file mode 100644 index 0000000..f04531c --- /dev/null +++ b/angular.html @@ -0,0 +1,31 @@ + + + + + +
+ + +current time {{time}} +
+ + + + + diff --git a/app.js b/app.js index a55e70a..7b6f85b 100644 --- a/app.js +++ b/app.js @@ -8,9 +8,42 @@ var formidable = require('formidable'); var session = require('express-session'); var routes = require('./routes/index'); +<<<<<<< Updated upstream var dimensionRouter = require('./routes/dimensions'); var measuresRouter = require('./routes/measures'); var namespaceRouter = require('./routes/logdata'); +======= + +var configRoute = require('./routes/config'); +var serviceConfigRoute = require('./routes/serviceConfig'); +var authenticate = require('./routes/authenticate')(passport); +var userAgent = require('./routes/nginx/userAgent'); +var logListing = require('./routes/nginx/logListing'); +var trafficRate = require('./routes/nginx/trafficRate'); + +//Wave 2 code +var packageRoutes = require('./routes/aptCache/packageCount'); +var graphRoutes = require('./routes/aptCache/logRateData'); +var dataRateData = require('./routes/aptCache/dataRateData'); +var packageAnalytics = require('./routes/aptCache/packageAnalytics'); +var repRoutes = require('./routes/aptCache/repository'); +var getInfo = require('./routes/aptCache/getInfo'); +//end wave 2 code + +//wave 3 routes starts +var getFilterData = require('./routes/gitLog/getFilterData'); +var newfilter = require('./routes/gitLog/newfilter'); +var plotTheGraph = require('./routes/gitLog/plot_the_graph'); +var getProfile = require('./routes/gitLog/getProfile'); +var getDashBoardJson = require('./routes/gitLog/getDashBoardJson'); +var onPageLoadDashBoard = require('./routes/gitLog/onPageLoadDashBoard'); +var gitDashboardConfigData = require('./routes/gitLog/gitDashboardConfigData'); +//wave 3 routes ends + +//wave 4 starts +var expressions=require('./routes/realTimeLogs/queryBuilder/expressions.js') +//wave 4 ends +>>>>>>> Stashed changes var app = express(); // view engine setup @@ -44,6 +77,11 @@ app.use('/dimensions', dimensionRouter); app.use('/measures', measuresRouter); app.use('/logdata', namespaceRouter); +//wave 4 code +app.use('/exp',expressions); + +// wave 4 code ends + // catch 404 and forward to error handler app.use(function(req, res, next) { var err = new Error('Not Found'); diff --git a/exam11.js b/exam11.js new file mode 100644 index 0000000..fc00fb8 --- /dev/null +++ b/exam11.js @@ -0,0 +1,46 @@ +// custom element with data based on the data requested + +// You create directives with the Module.directive method +// using the name of the directive and the factory function +var app11 = angular.module('app11', []); + +app11.directive("player", function() { + + // Create a directive object + var directive = {}; + + // Define that we are using an element directive instead of + // a A: attribute, C: class, or M: comment + // I covered how to apply as an attribute previously + // I normally only apply as elements or attributes because + // it is easy to figure out where the directive was applied. + directive.restrict = 'E'; + + // The template is filled with the data and replaces the element + directive.template = "{{player.name}} had a {{player.avg}} AVG with {{player.hr}} homeruns and a {{player.obp}} OBP"; + + // Scope defines what is unique about each element + directive.scope = { player: "=name" }; + + // compile is called during the initialization phase + directive.compile = function(element, attributes){ + + // The link function receives the scope, the element The + // directive is associated with and that elements + // attributes. Here we can handle events on that element + var linkFunc = function($scope, element, attributes){ + element.bind('click', function() { + element.html('Barry disappeared'); + }); + } + return linkFunc; + } + return directive; +}); + +app11.controller("mainCtrl", function($scope,$window) { +$scope.greet=function(username) { + $window.alert("hello "+username ) +} + }); +- See more at: http://www.newthinktank.com/2016/02/angularjs-tutorial-3/#sthash.0jrfTOEM.dpuf diff --git a/models/expression.model.js b/models/expression.model.js new file mode 100644 index 0000000..18108de --- /dev/null +++ b/models/expression.model.js @@ -0,0 +1,34 @@ +var mongoose = require('mongoose'); +var Schema = mongoose.Schema; + +var expSchema = new Schema({ + + +},{collection: "expressions"}); + + +expSchema.statics.addExp=function addExp(obj,cb) { +obj.save(function(err,doc) { + if (err) { + console.error(err); + cb(err,null); + } + else { + console.log(doc); + cb(null,doc); + } + }) +} + +expSchema.statics.searchQuery=function searchQuery(searchquery,cb) { + this.find({sqlquery:searchquery},function(err,doc) { + if (!err) { + cb(null,doc); + } + else { + cb(err,null); + } + }) +} + +mongoose.model('Expression', expSchema); diff --git a/npm-debug.log b/npm-debug.log new file mode 100644 index 0000000..59c49b9 --- /dev/null +++ b/npm-debug.log @@ -0,0 +1,1148 @@ +0 info it worked if it ends with ok +1 verbose cli [ '/usr/bin/nodejs', +1 verbose cli '/usr/bin/npm', +1 verbose cli 'install', +1 verbose cli '-g', +1 verbose cli 'mocha', +1 verbose cli '--no-bin-link' ] +2 info using npm@3.6.0 +3 info using node@v5.7.1 +4 silly loadCurrentTree Starting +5 silly install loadCurrentTree +6 silly install readGlobalPackageData +7 silly fetchPackageMetaData mocha +8 silly fetchNamedPackageData mocha +9 silly mapToRegistry name mocha +10 silly mapToRegistry using default registry +11 silly mapToRegistry registry http://172.23.238.253:4873/ +12 silly mapToRegistry uri http://172.23.238.253:4873/mocha +13 verbose request uri http://172.23.238.253:4873/mocha +14 verbose request no auth needed +15 info attempt registry request try #1 at 6:12:56 AM +16 verbose request id db49dd2354495e15 +17 verbose etag "c8c78067ecc0a66a8d0ca509b9ab9dfd" +18 http request GET http://172.23.238.253:4873/mocha +19 http 304 http://172.23.238.253:4873/mocha +20 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +20 verbose headers etag: '"c8c78067ecc0a66a8d0ca509b9ab9dfd"', +20 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +20 verbose headers date: 'Mon, 11 Apr 2016 06:13:34 GMT', +20 verbose headers connection: 'keep-alive' } +21 silly get cb [ 304, +21 silly get { 'x-powered-by': 'Sinopia/1.4.0', +21 silly get etag: '"c8c78067ecc0a66a8d0ca509b9ab9dfd"', +21 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +21 silly get date: 'Mon, 11 Apr 2016 06:13:34 GMT', +21 silly get connection: 'keep-alive' } ] +22 verbose etag http://172.23.238.253:4873/mocha from cache +23 verbose get saving mocha to /home/vagrant/.npm/172.23.238.253_4873/mocha/.cache.json +24 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +25 silly install normalizeTree +26 silly loadCurrentTree Finishing +27 silly loadIdealTree Starting +28 silly install loadIdealTree +29 silly cloneCurrentTree Starting +30 silly install cloneCurrentTreeToIdealTree +31 silly cloneCurrentTree Finishing +32 silly loadShrinkwrap Starting +33 silly install loadShrinkwrap +34 silly loadShrinkwrap Finishing +35 silly loadAllDepsIntoIdealTree Starting +36 silly install loadAllDepsIntoIdealTree +37 silly resolveWithNewModule mocha@2.4.5 checking installable status +38 silly cache add args [ 'mocha', null ] +39 verbose cache add spec mocha +40 silly cache add parsed spec Result { +40 silly cache add raw: 'mocha', +40 silly cache add scope: null, +40 silly cache add name: 'mocha', +40 silly cache add rawSpec: '', +40 silly cache add spec: 'latest', +40 silly cache add type: 'tag' } +41 silly addNamed mocha@latest +42 verbose addNamed "latest" is being treated as a dist-tag for mocha +43 info addNameTag [ 'mocha', 'latest' ] +44 silly mapToRegistry name mocha +45 silly mapToRegistry using default registry +46 silly mapToRegistry registry http://172.23.238.253:4873/ +47 silly mapToRegistry uri http://172.23.238.253:4873/mocha +48 verbose addNameTag registry:http://172.23.238.253:4873/mocha not in flight; fetching +49 verbose get http://172.23.238.253:4873/mocha not expired, no request +50 silly addNameTag next cb for mocha with tag latest +51 silly addNamed mocha@2.4.5 +52 verbose addNamed "2.4.5" is a plain semver version for mocha +53 silly cache afterAdd mocha@2.4.5 +54 verbose afterAdd /home/vagrant/.npm/mocha/2.4.5/package/package.json not in flight; writing +55 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +56 verbose afterAdd /home/vagrant/.npm/mocha/2.4.5/package/package.json written +57 silly fetchNamedPackageData commander +58 silly mapToRegistry name commander +59 silly mapToRegistry using default registry +60 silly mapToRegistry registry http://172.23.238.253:4873/ +61 silly mapToRegistry uri http://172.23.238.253:4873/commander +62 silly fetchNamedPackageData debug +63 silly mapToRegistry name debug +64 silly mapToRegistry using default registry +65 silly mapToRegistry registry http://172.23.238.253:4873/ +66 silly mapToRegistry uri http://172.23.238.253:4873/debug +67 silly fetchNamedPackageData diff +68 silly mapToRegistry name diff +69 silly mapToRegistry using default registry +70 silly mapToRegistry registry http://172.23.238.253:4873/ +71 silly mapToRegistry uri http://172.23.238.253:4873/diff +72 silly fetchNamedPackageData escape-string-regexp +73 silly mapToRegistry name escape-string-regexp +74 silly mapToRegistry using default registry +75 silly mapToRegistry registry http://172.23.238.253:4873/ +76 silly mapToRegistry uri http://172.23.238.253:4873/escape-string-regexp +77 silly fetchNamedPackageData glob +78 silly mapToRegistry name glob +79 silly mapToRegistry using default registry +80 silly mapToRegistry registry http://172.23.238.253:4873/ +81 silly mapToRegistry uri http://172.23.238.253:4873/glob +82 silly fetchNamedPackageData growl +83 silly mapToRegistry name growl +84 silly mapToRegistry using default registry +85 silly mapToRegistry registry http://172.23.238.253:4873/ +86 silly mapToRegistry uri http://172.23.238.253:4873/growl +87 silly fetchNamedPackageData jade +88 silly mapToRegistry name jade +89 silly mapToRegistry using default registry +90 silly mapToRegistry registry http://172.23.238.253:4873/ +91 silly mapToRegistry uri http://172.23.238.253:4873/jade +92 silly fetchNamedPackageData mkdirp +93 silly mapToRegistry name mkdirp +94 silly mapToRegistry using default registry +95 silly mapToRegistry registry http://172.23.238.253:4873/ +96 silly mapToRegistry uri http://172.23.238.253:4873/mkdirp +97 silly fetchNamedPackageData supports-color +98 silly mapToRegistry name supports-color +99 silly mapToRegistry using default registry +100 silly mapToRegistry registry http://172.23.238.253:4873/ +101 silly mapToRegistry uri http://172.23.238.253:4873/supports-color +102 verbose request uri http://172.23.238.253:4873/commander +103 verbose request no auth needed +104 info attempt registry request try #1 at 6:12:57 AM +105 verbose etag "83ee45b6ed25bed8bd639237ee026731" +106 http request GET http://172.23.238.253:4873/commander +107 verbose request uri http://172.23.238.253:4873/debug +108 verbose request no auth needed +109 info attempt registry request try #1 at 6:12:57 AM +110 verbose etag "a1aaa03e028f58a65bdc27d3868dda61" +111 http request GET http://172.23.238.253:4873/debug +112 verbose request uri http://172.23.238.253:4873/diff +113 verbose request no auth needed +114 info attempt registry request try #1 at 6:12:57 AM +115 verbose etag "711d1a20ce5377e9feb4f7b44c7daf63" +116 http request GET http://172.23.238.253:4873/diff +117 verbose request uri http://172.23.238.253:4873/escape-string-regexp +118 verbose request no auth needed +119 info attempt registry request try #1 at 6:12:57 AM +120 verbose etag "f7a1b6f8ec135fd9e3f6f65b4af33ced" +121 http request GET http://172.23.238.253:4873/escape-string-regexp +122 verbose request uri http://172.23.238.253:4873/glob +123 verbose request no auth needed +124 info attempt registry request try #1 at 6:12:57 AM +125 verbose etag "d46bcd79cf1d551f5cdc96e7ae048036" +126 http request GET http://172.23.238.253:4873/glob +127 verbose request uri http://172.23.238.253:4873/growl +128 verbose request no auth needed +129 info attempt registry request try #1 at 6:12:57 AM +130 verbose etag "46163309fdff19a4c2311256422ca8c1" +131 http request GET http://172.23.238.253:4873/growl +132 verbose request uri http://172.23.238.253:4873/jade +133 verbose request no auth needed +134 info attempt registry request try #1 at 6:12:57 AM +135 verbose etag "f68be4f26ce000f95bd5481707ff7e74" +136 http request GET http://172.23.238.253:4873/jade +137 verbose request uri http://172.23.238.253:4873/mkdirp +138 verbose request no auth needed +139 info attempt registry request try #1 at 6:12:57 AM +140 verbose etag "60f7cf2672457488a3232df9b8f49298" +141 http request GET http://172.23.238.253:4873/mkdirp +142 verbose request uri http://172.23.238.253:4873/supports-color +143 verbose request no auth needed +144 info attempt registry request try #1 at 6:12:57 AM +145 verbose etag "9c6519df626c98a739c8ae4583153b34" +146 http request GET http://172.23.238.253:4873/supports-color +147 http 304 http://172.23.238.253:4873/mkdirp +148 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +148 verbose headers etag: '"60f7cf2672457488a3232df9b8f49298"', +148 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +148 verbose headers date: 'Mon, 11 Apr 2016 06:13:35 GMT', +148 verbose headers connection: 'keep-alive' } +149 silly get cb [ 304, +149 silly get { 'x-powered-by': 'Sinopia/1.4.0', +149 silly get etag: '"60f7cf2672457488a3232df9b8f49298"', +149 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +149 silly get date: 'Mon, 11 Apr 2016 06:13:35 GMT', +149 silly get connection: 'keep-alive' } ] +150 verbose etag http://172.23.238.253:4873/mkdirp from cache +151 verbose get saving mkdirp to /home/vagrant/.npm/172.23.238.253_4873/mkdirp/.cache.json +152 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +153 silly resolveWithNewModule mkdirp@0.5.1 checking installable status +154 silly cache add args [ 'mkdirp@0.5.1', null ] +155 verbose cache add spec mkdirp@0.5.1 +156 silly cache add parsed spec Result { +156 silly cache add raw: 'mkdirp@0.5.1', +156 silly cache add scope: null, +156 silly cache add name: 'mkdirp', +156 silly cache add rawSpec: '0.5.1', +156 silly cache add spec: '0.5.1', +156 silly cache add type: 'version' } +157 silly addNamed mkdirp@0.5.1 +158 verbose addNamed "0.5.1" is a plain semver version for mkdirp +159 silly mapToRegistry name mkdirp +160 silly mapToRegistry using default registry +161 silly mapToRegistry registry http://172.23.238.253:4873/ +162 silly mapToRegistry uri http://172.23.238.253:4873/mkdirp +163 verbose addNameVersion registry:http://172.23.238.253:4873/mkdirp not in flight; fetching +164 verbose get http://172.23.238.253:4873/mkdirp not expired, no request +165 silly cache afterAdd mkdirp@0.5.1 +166 verbose afterAdd /home/vagrant/.npm/mkdirp/0.5.1/package/package.json not in flight; writing +167 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +168 verbose afterAdd /home/vagrant/.npm/mkdirp/0.5.1/package/package.json written +169 http 304 http://172.23.238.253:4873/diff +170 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +170 verbose headers etag: '"711d1a20ce5377e9feb4f7b44c7daf63"', +170 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +170 verbose headers date: 'Mon, 11 Apr 2016 06:13:36 GMT', +170 verbose headers connection: 'keep-alive' } +171 silly get cb [ 304, +171 silly get { 'x-powered-by': 'Sinopia/1.4.0', +171 silly get etag: '"711d1a20ce5377e9feb4f7b44c7daf63"', +171 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +171 silly get date: 'Mon, 11 Apr 2016 06:13:36 GMT', +171 silly get connection: 'keep-alive' } ] +172 verbose etag http://172.23.238.253:4873/diff from cache +173 verbose get saving diff to /home/vagrant/.npm/172.23.238.253_4873/diff/.cache.json +174 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +175 silly resolveWithNewModule diff@1.4.0 checking installable status +176 silly cache add args [ 'diff@1.4.0', null ] +177 verbose cache add spec diff@1.4.0 +178 silly cache add parsed spec Result { +178 silly cache add raw: 'diff@1.4.0', +178 silly cache add scope: null, +178 silly cache add name: 'diff', +178 silly cache add rawSpec: '1.4.0', +178 silly cache add spec: '1.4.0', +178 silly cache add type: 'version' } +179 silly addNamed diff@1.4.0 +180 verbose addNamed "1.4.0" is a plain semver version for diff +181 silly mapToRegistry name diff +182 silly mapToRegistry using default registry +183 silly mapToRegistry registry http://172.23.238.253:4873/ +184 silly mapToRegistry uri http://172.23.238.253:4873/diff +185 verbose addNameVersion registry:http://172.23.238.253:4873/diff not in flight; fetching +186 http 200 http://172.23.238.253:4873/supports-color +187 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +187 verbose headers 'content-type': 'application/json; charset=utf-8', +187 verbose headers etag: '"eb746f279b072e3ac324ec71bcea8dec"', +187 verbose headers vary: 'Accept-Encoding', +187 verbose headers 'content-encoding': 'gzip', +187 verbose headers 'x-status-cat': 'http://flic.kr/p/aVuVsF', +187 verbose headers date: 'Mon, 11 Apr 2016 06:13:37 GMT', +187 verbose headers connection: 'keep-alive', +187 verbose headers 'transfer-encoding': 'chunked' } +188 silly get cb [ 200, +188 silly get { 'x-powered-by': 'Sinopia/1.4.0', +188 silly get 'content-type': 'application/json; charset=utf-8', +188 silly get etag: '"eb746f279b072e3ac324ec71bcea8dec"', +188 silly get vary: 'Accept-Encoding', +188 silly get 'content-encoding': 'gzip', +188 silly get 'x-status-cat': 'http://flic.kr/p/aVuVsF', +188 silly get date: 'Mon, 11 Apr 2016 06:13:37 GMT', +188 silly get connection: 'keep-alive', +188 silly get 'transfer-encoding': 'chunked' } ] +189 verbose get saving supports-color to /home/vagrant/.npm/172.23.238.253_4873/supports-color/.cache.json +190 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +191 verbose get http://172.23.238.253:4873/diff not expired, no request +192 http 304 http://172.23.238.253:4873/commander +193 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +193 verbose headers etag: '"83ee45b6ed25bed8bd639237ee026731"', +193 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +193 verbose headers date: 'Mon, 11 Apr 2016 06:13:37 GMT', +193 verbose headers connection: 'keep-alive' } +194 silly get cb [ 304, +194 silly get { 'x-powered-by': 'Sinopia/1.4.0', +194 silly get etag: '"83ee45b6ed25bed8bd639237ee026731"', +194 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +194 silly get date: 'Mon, 11 Apr 2016 06:13:37 GMT', +194 silly get connection: 'keep-alive' } ] +195 verbose etag http://172.23.238.253:4873/commander from cache +196 verbose get saving commander to /home/vagrant/.npm/172.23.238.253_4873/commander/.cache.json +197 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +198 silly cache afterAdd diff@1.4.0 +199 verbose afterAdd /home/vagrant/.npm/diff/1.4.0/package/package.json not in flight; writing +200 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +201 silly resolveWithNewModule supports-color@1.2.0 checking installable status +202 silly cache add args [ 'supports-color@1.2.0', null ] +203 verbose cache add spec supports-color@1.2.0 +204 silly cache add parsed spec Result { +204 silly cache add raw: 'supports-color@1.2.0', +204 silly cache add scope: null, +204 silly cache add name: 'supports-color', +204 silly cache add rawSpec: '1.2.0', +204 silly cache add spec: '1.2.0', +204 silly cache add type: 'version' } +205 silly addNamed supports-color@1.2.0 +206 verbose addNamed "1.2.0" is a plain semver version for supports-color +207 silly mapToRegistry name supports-color +208 silly mapToRegistry using default registry +209 silly mapToRegistry registry http://172.23.238.253:4873/ +210 silly mapToRegistry uri http://172.23.238.253:4873/supports-color +211 verbose addNameVersion registry:http://172.23.238.253:4873/supports-color not in flight; fetching +212 http 304 http://172.23.238.253:4873/escape-string-regexp +213 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +213 verbose headers etag: '"f7a1b6f8ec135fd9e3f6f65b4af33ced"', +213 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +213 verbose headers date: 'Mon, 11 Apr 2016 06:13:37 GMT', +213 verbose headers connection: 'keep-alive' } +214 silly get cb [ 304, +214 silly get { 'x-powered-by': 'Sinopia/1.4.0', +214 silly get etag: '"f7a1b6f8ec135fd9e3f6f65b4af33ced"', +214 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +214 silly get date: 'Mon, 11 Apr 2016 06:13:37 GMT', +214 silly get connection: 'keep-alive' } ] +215 verbose etag http://172.23.238.253:4873/escape-string-regexp from cache +216 verbose get saving escape-string-regexp to /home/vagrant/.npm/172.23.238.253_4873/escape-string-regexp/.cache.json +217 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +218 silly resolveWithNewModule commander@2.3.0 checking installable status +219 silly cache add args [ 'commander@2.3.0', null ] +220 verbose cache add spec commander@2.3.0 +221 silly cache add parsed spec Result { +221 silly cache add raw: 'commander@2.3.0', +221 silly cache add scope: null, +221 silly cache add name: 'commander', +221 silly cache add rawSpec: '2.3.0', +221 silly cache add spec: '2.3.0', +221 silly cache add type: 'version' } +222 silly addNamed commander@2.3.0 +223 verbose addNamed "2.3.0" is a plain semver version for commander +224 silly mapToRegistry name commander +225 silly mapToRegistry using default registry +226 silly mapToRegistry registry http://172.23.238.253:4873/ +227 silly mapToRegistry uri http://172.23.238.253:4873/commander +228 verbose addNameVersion registry:http://172.23.238.253:4873/commander not in flight; fetching +229 verbose afterAdd /home/vagrant/.npm/diff/1.4.0/package/package.json written +230 verbose get http://172.23.238.253:4873/supports-color not expired, no request +231 verbose get http://172.23.238.253:4873/commander not expired, no request +232 http 304 http://172.23.238.253:4873/jade +233 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +233 verbose headers etag: '"f68be4f26ce000f95bd5481707ff7e74"', +233 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +233 verbose headers date: 'Mon, 11 Apr 2016 06:13:37 GMT', +233 verbose headers connection: 'keep-alive' } +234 silly get cb [ 304, +234 silly get { 'x-powered-by': 'Sinopia/1.4.0', +234 silly get etag: '"f68be4f26ce000f95bd5481707ff7e74"', +234 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +234 silly get date: 'Mon, 11 Apr 2016 06:13:37 GMT', +234 silly get connection: 'keep-alive' } ] +235 verbose etag http://172.23.238.253:4873/jade from cache +236 verbose get saving jade to /home/vagrant/.npm/172.23.238.253_4873/jade/.cache.json +237 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +238 silly resolveWithNewModule escape-string-regexp@1.0.2 checking installable status +239 silly cache add args [ 'escape-string-regexp@1.0.2', null ] +240 verbose cache add spec escape-string-regexp@1.0.2 +241 silly cache add parsed spec Result { +241 silly cache add raw: 'escape-string-regexp@1.0.2', +241 silly cache add scope: null, +241 silly cache add name: 'escape-string-regexp', +241 silly cache add rawSpec: '1.0.2', +241 silly cache add spec: '1.0.2', +241 silly cache add type: 'version' } +242 silly addNamed escape-string-regexp@1.0.2 +243 verbose addNamed "1.0.2" is a plain semver version for escape-string-regexp +244 silly mapToRegistry name escape-string-regexp +245 silly mapToRegistry using default registry +246 silly mapToRegistry registry http://172.23.238.253:4873/ +247 silly mapToRegistry uri http://172.23.238.253:4873/escape-string-regexp +248 verbose addNameVersion registry:http://172.23.238.253:4873/escape-string-regexp not in flight; fetching +249 http 304 http://172.23.238.253:4873/growl +250 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +250 verbose headers etag: '"46163309fdff19a4c2311256422ca8c1"', +250 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +250 verbose headers date: 'Mon, 11 Apr 2016 06:13:37 GMT', +250 verbose headers connection: 'keep-alive' } +251 silly get cb [ 304, +251 silly get { 'x-powered-by': 'Sinopia/1.4.0', +251 silly get etag: '"46163309fdff19a4c2311256422ca8c1"', +251 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +251 silly get date: 'Mon, 11 Apr 2016 06:13:37 GMT', +251 silly get connection: 'keep-alive' } ] +252 verbose etag http://172.23.238.253:4873/growl from cache +253 verbose get saving growl to /home/vagrant/.npm/172.23.238.253_4873/growl/.cache.json +254 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +255 silly cache afterAdd supports-color@1.2.0 +256 verbose afterAdd /home/vagrant/.npm/supports-color/1.2.0/package/package.json not in flight; writing +257 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +258 silly cache afterAdd commander@2.3.0 +259 verbose afterAdd /home/vagrant/.npm/commander/2.3.0/package/package.json not in flight; writing +260 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +261 verbose get http://172.23.238.253:4873/escape-string-regexp not expired, no request +262 silly resolveWithNewModule jade@0.26.3 checking installable status +263 silly cache add args [ 'jade@0.26.3', null ] +264 verbose cache add spec jade@0.26.3 +265 silly cache add parsed spec Result { +265 silly cache add raw: 'jade@0.26.3', +265 silly cache add scope: null, +265 silly cache add name: 'jade', +265 silly cache add rawSpec: '0.26.3', +265 silly cache add spec: '0.26.3', +265 silly cache add type: 'version' } +266 silly addNamed jade@0.26.3 +267 verbose addNamed "0.26.3" is a plain semver version for jade +268 silly mapToRegistry name jade +269 silly mapToRegistry using default registry +270 silly mapToRegistry registry http://172.23.238.253:4873/ +271 silly mapToRegistry uri http://172.23.238.253:4873/jade +272 verbose addNameVersion registry:http://172.23.238.253:4873/jade not in flight; fetching +273 silly resolveWithNewModule growl@1.8.1 checking installable status +274 silly cache add args [ 'growl@1.8.1', null ] +275 verbose cache add spec growl@1.8.1 +276 silly cache add parsed spec Result { +276 silly cache add raw: 'growl@1.8.1', +276 silly cache add scope: null, +276 silly cache add name: 'growl', +276 silly cache add rawSpec: '1.8.1', +276 silly cache add spec: '1.8.1', +276 silly cache add type: 'version' } +277 silly addNamed growl@1.8.1 +278 verbose addNamed "1.8.1" is a plain semver version for growl +279 silly mapToRegistry name growl +280 silly mapToRegistry using default registry +281 silly mapToRegistry registry http://172.23.238.253:4873/ +282 silly mapToRegistry uri http://172.23.238.253:4873/growl +283 verbose addNameVersion registry:http://172.23.238.253:4873/growl not in flight; fetching +284 verbose afterAdd /home/vagrant/.npm/supports-color/1.2.0/package/package.json written +285 verbose afterAdd /home/vagrant/.npm/commander/2.3.0/package/package.json written +286 silly cache afterAdd escape-string-regexp@1.0.2 +287 verbose afterAdd /home/vagrant/.npm/escape-string-regexp/1.0.2/package/package.json not in flight; writing +288 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +289 verbose get http://172.23.238.253:4873/jade not expired, no request +290 verbose get http://172.23.238.253:4873/growl not expired, no request +291 http 304 http://172.23.238.253:4873/glob +292 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +292 verbose headers etag: '"d46bcd79cf1d551f5cdc96e7ae048036"', +292 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +292 verbose headers date: 'Mon, 11 Apr 2016 06:13:37 GMT', +292 verbose headers connection: 'keep-alive' } +293 silly get cb [ 304, +293 silly get { 'x-powered-by': 'Sinopia/1.4.0', +293 silly get etag: '"d46bcd79cf1d551f5cdc96e7ae048036"', +293 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +293 silly get date: 'Mon, 11 Apr 2016 06:13:37 GMT', +293 silly get connection: 'keep-alive' } ] +294 verbose etag http://172.23.238.253:4873/glob from cache +295 verbose get saving glob to /home/vagrant/.npm/172.23.238.253_4873/glob/.cache.json +296 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +297 http 304 http://172.23.238.253:4873/debug +298 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +298 verbose headers etag: '"a1aaa03e028f58a65bdc27d3868dda61"', +298 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +298 verbose headers date: 'Mon, 11 Apr 2016 06:13:37 GMT', +298 verbose headers connection: 'keep-alive' } +299 silly get cb [ 304, +299 silly get { 'x-powered-by': 'Sinopia/1.4.0', +299 silly get etag: '"a1aaa03e028f58a65bdc27d3868dda61"', +299 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +299 silly get date: 'Mon, 11 Apr 2016 06:13:37 GMT', +299 silly get connection: 'keep-alive' } ] +300 verbose etag http://172.23.238.253:4873/debug from cache +301 verbose get saving debug to /home/vagrant/.npm/172.23.238.253_4873/debug/.cache.json +302 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +303 verbose afterAdd /home/vagrant/.npm/escape-string-regexp/1.0.2/package/package.json written +304 silly cache afterAdd jade@0.26.3 +305 verbose afterAdd /home/vagrant/.npm/jade/0.26.3/package/package.json not in flight; writing +306 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +307 silly cache afterAdd growl@1.8.1 +308 verbose afterAdd /home/vagrant/.npm/growl/1.8.1/package/package.json not in flight; writing +309 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +310 silly resolveWithNewModule glob@3.2.3 checking installable status +311 silly cache add args [ 'glob@3.2.3', null ] +312 verbose cache add spec glob@3.2.3 +313 silly cache add parsed spec Result { +313 silly cache add raw: 'glob@3.2.3', +313 silly cache add scope: null, +313 silly cache add name: 'glob', +313 silly cache add rawSpec: '3.2.3', +313 silly cache add spec: '3.2.3', +313 silly cache add type: 'version' } +314 silly addNamed glob@3.2.3 +315 verbose addNamed "3.2.3" is a plain semver version for glob +316 silly mapToRegistry name glob +317 silly mapToRegistry using default registry +318 silly mapToRegistry registry http://172.23.238.253:4873/ +319 silly mapToRegistry uri http://172.23.238.253:4873/glob +320 verbose addNameVersion registry:http://172.23.238.253:4873/glob not in flight; fetching +321 silly resolveWithNewModule debug@2.2.0 checking installable status +322 silly cache add args [ 'debug@2.2.0', null ] +323 verbose cache add spec debug@2.2.0 +324 silly cache add parsed spec Result { +324 silly cache add raw: 'debug@2.2.0', +324 silly cache add scope: null, +324 silly cache add name: 'debug', +324 silly cache add rawSpec: '2.2.0', +324 silly cache add spec: '2.2.0', +324 silly cache add type: 'version' } +325 silly addNamed debug@2.2.0 +326 verbose addNamed "2.2.0" is a plain semver version for debug +327 silly mapToRegistry name debug +328 silly mapToRegistry using default registry +329 silly mapToRegistry registry http://172.23.238.253:4873/ +330 silly mapToRegistry uri http://172.23.238.253:4873/debug +331 verbose addNameVersion registry:http://172.23.238.253:4873/debug not in flight; fetching +332 verbose afterAdd /home/vagrant/.npm/jade/0.26.3/package/package.json written +333 verbose afterAdd /home/vagrant/.npm/growl/1.8.1/package/package.json written +334 verbose get http://172.23.238.253:4873/glob not expired, no request +335 verbose get http://172.23.238.253:4873/debug not expired, no request +336 silly cache afterAdd glob@3.2.3 +337 verbose afterAdd /home/vagrant/.npm/glob/3.2.3/package/package.json not in flight; writing +338 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +339 silly cache afterAdd debug@2.2.0 +340 verbose afterAdd /home/vagrant/.npm/debug/2.2.0/package/package.json not in flight; writing +341 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +342 verbose afterAdd /home/vagrant/.npm/glob/3.2.3/package/package.json written +343 verbose afterAdd /home/vagrant/.npm/debug/2.2.0/package/package.json written +344 silly fetchNamedPackageData ms +345 silly mapToRegistry name ms +346 silly mapToRegistry using default registry +347 silly mapToRegistry registry http://172.23.238.253:4873/ +348 silly mapToRegistry uri http://172.23.238.253:4873/ms +349 verbose request uri http://172.23.238.253:4873/ms +350 verbose request no auth needed +351 info attempt registry request try #1 at 6:12:59 AM +352 verbose etag "be47e60b6cb79751d90e815a1bb46902" +353 http request GET http://172.23.238.253:4873/ms +354 http 200 http://172.23.238.253:4873/ms +355 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +355 verbose headers 'content-type': 'application/json; charset=utf-8', +355 verbose headers etag: '"6cec9d788fcc1bbede509df8b977a12b"', +355 verbose headers vary: 'Accept-Encoding', +355 verbose headers 'content-encoding': 'gzip', +355 verbose headers 'x-status-cat': 'http://flic.kr/p/aVuVsF', +355 verbose headers date: 'Mon, 11 Apr 2016 06:13:43 GMT', +355 verbose headers connection: 'keep-alive', +355 verbose headers 'transfer-encoding': 'chunked' } +356 silly get cb [ 200, +356 silly get { 'x-powered-by': 'Sinopia/1.4.0', +356 silly get 'content-type': 'application/json; charset=utf-8', +356 silly get etag: '"6cec9d788fcc1bbede509df8b977a12b"', +356 silly get vary: 'Accept-Encoding', +356 silly get 'content-encoding': 'gzip', +356 silly get 'x-status-cat': 'http://flic.kr/p/aVuVsF', +356 silly get date: 'Mon, 11 Apr 2016 06:13:43 GMT', +356 silly get connection: 'keep-alive', +356 silly get 'transfer-encoding': 'chunked' } ] +357 verbose get saving ms to /home/vagrant/.npm/172.23.238.253_4873/ms/.cache.json +358 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +359 silly resolveWithNewModule ms@0.7.1 checking installable status +360 silly cache add args [ 'ms@0.7.1', null ] +361 verbose cache add spec ms@0.7.1 +362 silly cache add parsed spec Result { +362 silly cache add raw: 'ms@0.7.1', +362 silly cache add scope: null, +362 silly cache add name: 'ms', +362 silly cache add rawSpec: '0.7.1', +362 silly cache add spec: '0.7.1', +362 silly cache add type: 'version' } +363 silly addNamed ms@0.7.1 +364 verbose addNamed "0.7.1" is a plain semver version for ms +365 silly mapToRegistry name ms +366 silly mapToRegistry using default registry +367 silly mapToRegistry registry http://172.23.238.253:4873/ +368 silly mapToRegistry uri http://172.23.238.253:4873/ms +369 verbose addNameVersion registry:http://172.23.238.253:4873/ms not in flight; fetching +370 verbose get http://172.23.238.253:4873/ms not expired, no request +371 silly cache afterAdd ms@0.7.1 +372 verbose afterAdd /home/vagrant/.npm/ms/0.7.1/package/package.json not in flight; writing +373 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +374 verbose afterAdd /home/vagrant/.npm/ms/0.7.1/package/package.json written +375 silly fetchNamedPackageData minimatch +376 silly mapToRegistry name minimatch +377 silly mapToRegistry using default registry +378 silly mapToRegistry registry http://172.23.238.253:4873/ +379 silly mapToRegistry uri http://172.23.238.253:4873/minimatch +380 silly fetchNamedPackageData graceful-fs +381 silly mapToRegistry name graceful-fs +382 silly mapToRegistry using default registry +383 silly mapToRegistry registry http://172.23.238.253:4873/ +384 silly mapToRegistry uri http://172.23.238.253:4873/graceful-fs +385 silly fetchNamedPackageData inherits +386 silly mapToRegistry name inherits +387 silly mapToRegistry using default registry +388 silly mapToRegistry registry http://172.23.238.253:4873/ +389 silly mapToRegistry uri http://172.23.238.253:4873/inherits +390 verbose request uri http://172.23.238.253:4873/minimatch +391 verbose request no auth needed +392 info attempt registry request try #1 at 6:13:06 AM +393 verbose etag "2fa23b9b6bc960b6b876a99e87ebf033" +394 http request GET http://172.23.238.253:4873/minimatch +395 verbose request uri http://172.23.238.253:4873/graceful-fs +396 verbose request no auth needed +397 info attempt registry request try #1 at 6:13:06 AM +398 verbose etag "fe22221783b15d9ae0cf838d625b67b7" +399 http request GET http://172.23.238.253:4873/graceful-fs +400 verbose request uri http://172.23.238.253:4873/inherits +401 verbose request no auth needed +402 info attempt registry request try #1 at 6:13:06 AM +403 verbose etag "ac8f8bd1f52554417a077dc746a562cd" +404 http request GET http://172.23.238.253:4873/inherits +405 http 304 http://172.23.238.253:4873/minimatch +406 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +406 verbose headers etag: '"2fa23b9b6bc960b6b876a99e87ebf033"', +406 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +406 verbose headers date: 'Mon, 11 Apr 2016 06:13:45 GMT', +406 verbose headers connection: 'keep-alive' } +407 silly get cb [ 304, +407 silly get { 'x-powered-by': 'Sinopia/1.4.0', +407 silly get etag: '"2fa23b9b6bc960b6b876a99e87ebf033"', +407 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +407 silly get date: 'Mon, 11 Apr 2016 06:13:45 GMT', +407 silly get connection: 'keep-alive' } ] +408 verbose etag http://172.23.238.253:4873/minimatch from cache +409 verbose get saving minimatch to /home/vagrant/.npm/172.23.238.253_4873/minimatch/.cache.json +410 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +411 silly resolveWithNewModule minimatch@0.2.14 checking installable status +412 silly cache add args [ 'minimatch@~0.2.11', null ] +413 verbose cache add spec minimatch@~0.2.11 +414 silly cache add parsed spec Result { +414 silly cache add raw: 'minimatch@~0.2.11', +414 silly cache add scope: null, +414 silly cache add name: 'minimatch', +414 silly cache add rawSpec: '~0.2.11', +414 silly cache add spec: '>=0.2.11 <0.3.0', +414 silly cache add type: 'range' } +415 silly addNamed minimatch@>=0.2.11 <0.3.0 +416 verbose addNamed ">=0.2.11 <0.3.0" is a valid semver range for minimatch +417 silly addNameRange { name: 'minimatch', range: '>=0.2.11 <0.3.0', hasData: false } +418 silly mapToRegistry name minimatch +419 silly mapToRegistry using default registry +420 silly mapToRegistry registry http://172.23.238.253:4873/ +421 silly mapToRegistry uri http://172.23.238.253:4873/minimatch +422 verbose addNameRange registry:http://172.23.238.253:4873/minimatch not in flight; fetching +423 verbose get http://172.23.238.253:4873/minimatch not expired, no request +424 silly addNameRange number 2 { name: 'minimatch', range: '>=0.2.11 <0.3.0', hasData: true } +425 silly addNameRange versions [ 'minimatch', +425 silly addNameRange [ '0.0.1', +425 silly addNameRange '0.0.2', +425 silly addNameRange '0.0.4', +425 silly addNameRange '0.0.5', +425 silly addNameRange '0.1.1', +425 silly addNameRange '0.1.2', +425 silly addNameRange '0.1.3', +425 silly addNameRange '0.1.4', +425 silly addNameRange '0.1.5', +425 silly addNameRange '0.2.0', +425 silly addNameRange '0.2.2', +425 silly addNameRange '0.2.3', +425 silly addNameRange '0.2.4', +425 silly addNameRange '0.2.5', +425 silly addNameRange '0.2.6', +425 silly addNameRange '0.2.7', +425 silly addNameRange '0.2.8', +425 silly addNameRange '0.2.9', +425 silly addNameRange '0.2.10', +425 silly addNameRange '0.2.11', +425 silly addNameRange '0.2.12', +425 silly addNameRange '0.2.13', +425 silly addNameRange '0.2.14', +425 silly addNameRange '0.3.0', +425 silly addNameRange '0.4.0', +425 silly addNameRange '1.0.0', +425 silly addNameRange '2.0.0', +425 silly addNameRange '2.0.1', +425 silly addNameRange '2.0.2', +425 silly addNameRange '2.0.3', +425 silly addNameRange '2.0.4', +425 silly addNameRange '2.0.5', +425 silly addNameRange '2.0.6', +425 silly addNameRange '2.0.7', +425 silly addNameRange '2.0.8', +425 silly addNameRange '2.0.9', +425 silly addNameRange '2.0.10', +425 silly addNameRange '3.0.0' ] ] +426 silly addNamed minimatch@0.2.14 +427 verbose addNamed "0.2.14" is a plain semver version for minimatch +428 silly cache afterAdd minimatch@0.2.14 +429 verbose afterAdd /home/vagrant/.npm/minimatch/0.2.14/package/package.json not in flight; writing +430 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +431 verbose afterAdd /home/vagrant/.npm/minimatch/0.2.14/package/package.json written +432 http 304 http://172.23.238.253:4873/graceful-fs +433 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +433 verbose headers etag: '"fe22221783b15d9ae0cf838d625b67b7"', +433 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +433 verbose headers date: 'Mon, 11 Apr 2016 06:13:45 GMT', +433 verbose headers connection: 'keep-alive' } +434 silly get cb [ 304, +434 silly get { 'x-powered-by': 'Sinopia/1.4.0', +434 silly get etag: '"fe22221783b15d9ae0cf838d625b67b7"', +434 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +434 silly get date: 'Mon, 11 Apr 2016 06:13:45 GMT', +434 silly get connection: 'keep-alive' } ] +435 verbose etag http://172.23.238.253:4873/graceful-fs from cache +436 verbose get saving graceful-fs to /home/vagrant/.npm/172.23.238.253_4873/graceful-fs/.cache.json +437 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +438 silly resolveWithNewModule graceful-fs@2.0.3 checking installable status +439 silly cache add args [ 'graceful-fs@~2.0.0', null ] +440 verbose cache add spec graceful-fs@~2.0.0 +441 silly cache add parsed spec Result { +441 silly cache add raw: 'graceful-fs@~2.0.0', +441 silly cache add scope: null, +441 silly cache add name: 'graceful-fs', +441 silly cache add rawSpec: '~2.0.0', +441 silly cache add spec: '>=2.0.0 <2.1.0', +441 silly cache add type: 'range' } +442 silly addNamed graceful-fs@>=2.0.0 <2.1.0 +443 verbose addNamed ">=2.0.0 <2.1.0" is a valid semver range for graceful-fs +444 silly addNameRange { name: 'graceful-fs', range: '>=2.0.0 <2.1.0', hasData: false } +445 silly mapToRegistry name graceful-fs +446 silly mapToRegistry using default registry +447 silly mapToRegistry registry http://172.23.238.253:4873/ +448 silly mapToRegistry uri http://172.23.238.253:4873/graceful-fs +449 verbose addNameRange registry:http://172.23.238.253:4873/graceful-fs not in flight; fetching +450 verbose get http://172.23.238.253:4873/graceful-fs not expired, no request +451 silly addNameRange number 2 { name: 'graceful-fs', range: '>=2.0.0 <2.1.0', hasData: true } +452 silly addNameRange versions [ 'graceful-fs', +452 silly addNameRange [ '1.0.0', +452 silly addNameRange '1.0.1', +452 silly addNameRange '1.0.2', +452 silly addNameRange '1.1.0', +452 silly addNameRange '1.1.1', +452 silly addNameRange '1.1.2', +452 silly addNameRange '1.1.3', +452 silly addNameRange '1.1.4', +452 silly addNameRange '1.1.5', +452 silly addNameRange '1.1.6', +452 silly addNameRange '1.1.7', +452 silly addNameRange '1.1.8', +452 silly addNameRange '1.1.9', +452 silly addNameRange '1.1.10', +452 silly addNameRange '1.1.11', +452 silly addNameRange '1.1.12', +452 silly addNameRange '1.1.13', +452 silly addNameRange '1.1.14', +452 silly addNameRange '1.2.0', +452 silly addNameRange '1.2.1', +452 silly addNameRange '1.2.2', +452 silly addNameRange '1.2.3', +452 silly addNameRange '2.0.0', +452 silly addNameRange '2.0.1', +452 silly addNameRange '2.0.2', +452 silly addNameRange '2.0.3', +452 silly addNameRange '3.0.0', +452 silly addNameRange '3.0.1', +452 silly addNameRange '3.0.2', +452 silly addNameRange '3.0.3', +452 silly addNameRange '3.0.4', +452 silly addNameRange '3.0.5', +452 silly addNameRange '3.0.6', +452 silly addNameRange '3.0.7', +452 silly addNameRange '3.0.8', +452 silly addNameRange '4.1.0', +452 silly addNameRange '4.1.1', +452 silly addNameRange '4.1.2', +452 silly addNameRange '4.1.3' ] ] +453 silly addNamed graceful-fs@2.0.3 +454 verbose addNamed "2.0.3" is a plain semver version for graceful-fs +455 silly cache afterAdd graceful-fs@2.0.3 +456 verbose afterAdd /home/vagrant/.npm/graceful-fs/2.0.3/package/package.json not in flight; writing +457 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +458 verbose afterAdd /home/vagrant/.npm/graceful-fs/2.0.3/package/package.json written +459 http 304 http://172.23.238.253:4873/inherits +460 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +460 verbose headers etag: '"ac8f8bd1f52554417a077dc746a562cd"', +460 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +460 verbose headers date: 'Mon, 11 Apr 2016 06:13:45 GMT', +460 verbose headers connection: 'keep-alive' } +461 silly get cb [ 304, +461 silly get { 'x-powered-by': 'Sinopia/1.4.0', +461 silly get etag: '"ac8f8bd1f52554417a077dc746a562cd"', +461 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +461 silly get date: 'Mon, 11 Apr 2016 06:13:45 GMT', +461 silly get connection: 'keep-alive' } ] +462 verbose etag http://172.23.238.253:4873/inherits from cache +463 verbose get saving inherits to /home/vagrant/.npm/172.23.238.253_4873/inherits/.cache.json +464 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +465 silly resolveWithNewModule inherits@2.0.1 checking installable status +466 silly cache add args [ 'inherits@2', null ] +467 verbose cache add spec inherits@2 +468 silly cache add parsed spec Result { +468 silly cache add raw: 'inherits@2', +468 silly cache add scope: null, +468 silly cache add name: 'inherits', +468 silly cache add rawSpec: '2', +468 silly cache add spec: '>=2.0.0 <3.0.0', +468 silly cache add type: 'range' } +469 silly addNamed inherits@>=2.0.0 <3.0.0 +470 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for inherits +471 silly addNameRange { name: 'inherits', range: '>=2.0.0 <3.0.0', hasData: false } +472 silly mapToRegistry name inherits +473 silly mapToRegistry using default registry +474 silly mapToRegistry registry http://172.23.238.253:4873/ +475 silly mapToRegistry uri http://172.23.238.253:4873/inherits +476 verbose addNameRange registry:http://172.23.238.253:4873/inherits not in flight; fetching +477 verbose get http://172.23.238.253:4873/inherits not expired, no request +478 silly addNameRange number 2 { name: 'inherits', range: '>=2.0.0 <3.0.0', hasData: true } +479 silly addNameRange versions [ 'inherits', [ '1.0.0', '2.0.0', '2.0.1', '1.0.1', '1.0.2' ] ] +480 silly addNamed inherits@2.0.1 +481 verbose addNamed "2.0.1" is a plain semver version for inherits +482 silly cache afterAdd inherits@2.0.1 +483 verbose afterAdd /home/vagrant/.npm/inherits/2.0.1/package/package.json not in flight; writing +484 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +485 verbose afterAdd /home/vagrant/.npm/inherits/2.0.1/package/package.json written +486 silly fetchNamedPackageData lru-cache +487 silly mapToRegistry name lru-cache +488 silly mapToRegistry using default registry +489 silly mapToRegistry registry http://172.23.238.253:4873/ +490 silly mapToRegistry uri http://172.23.238.253:4873/lru-cache +491 silly fetchNamedPackageData sigmund +492 silly mapToRegistry name sigmund +493 silly mapToRegistry using default registry +494 silly mapToRegistry registry http://172.23.238.253:4873/ +495 silly mapToRegistry uri http://172.23.238.253:4873/sigmund +496 verbose request uri http://172.23.238.253:4873/lru-cache +497 verbose request no auth needed +498 info attempt registry request try #1 at 6:13:08 AM +499 verbose etag "268cd4eab5a69f21014610d3413f3780" +500 http request GET http://172.23.238.253:4873/lru-cache +501 verbose request uri http://172.23.238.253:4873/sigmund +502 verbose request no auth needed +503 info attempt registry request try #1 at 6:13:08 AM +504 verbose etag "7be52962cd7dde50bcd45287393ca9e1" +505 http request GET http://172.23.238.253:4873/sigmund +506 http 304 http://172.23.238.253:4873/lru-cache +507 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +507 verbose headers etag: '"268cd4eab5a69f21014610d3413f3780"', +507 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +507 verbose headers date: 'Mon, 11 Apr 2016 06:13:47 GMT', +507 verbose headers connection: 'keep-alive' } +508 silly get cb [ 304, +508 silly get { 'x-powered-by': 'Sinopia/1.4.0', +508 silly get etag: '"268cd4eab5a69f21014610d3413f3780"', +508 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +508 silly get date: 'Mon, 11 Apr 2016 06:13:47 GMT', +508 silly get connection: 'keep-alive' } ] +509 verbose etag http://172.23.238.253:4873/lru-cache from cache +510 verbose get saving lru-cache to /home/vagrant/.npm/172.23.238.253_4873/lru-cache/.cache.json +511 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +512 silly resolveWithNewModule lru-cache@2.7.3 checking installable status +513 silly cache add args [ 'lru-cache@2', null ] +514 verbose cache add spec lru-cache@2 +515 silly cache add parsed spec Result { +515 silly cache add raw: 'lru-cache@2', +515 silly cache add scope: null, +515 silly cache add name: 'lru-cache', +515 silly cache add rawSpec: '2', +515 silly cache add spec: '>=2.0.0 <3.0.0', +515 silly cache add type: 'range' } +516 silly addNamed lru-cache@>=2.0.0 <3.0.0 +517 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for lru-cache +518 silly addNameRange { name: 'lru-cache', range: '>=2.0.0 <3.0.0', hasData: false } +519 silly mapToRegistry name lru-cache +520 silly mapToRegistry using default registry +521 silly mapToRegistry registry http://172.23.238.253:4873/ +522 silly mapToRegistry uri http://172.23.238.253:4873/lru-cache +523 verbose addNameRange registry:http://172.23.238.253:4873/lru-cache not in flight; fetching +524 verbose get http://172.23.238.253:4873/lru-cache not expired, no request +525 silly addNameRange number 2 { name: 'lru-cache', range: '>=2.0.0 <3.0.0', hasData: true } +526 silly addNameRange versions [ 'lru-cache', +526 silly addNameRange [ '1.0.1', +526 silly addNameRange '1.0.2', +526 silly addNameRange '1.0.3', +526 silly addNameRange '1.0.4', +526 silly addNameRange '1.0.5', +526 silly addNameRange '1.0.6', +526 silly addNameRange '1.1.0', +526 silly addNameRange '1.1.1', +526 silly addNameRange '2.0.0', +526 silly addNameRange '2.0.1', +526 silly addNameRange '2.0.2', +526 silly addNameRange '2.0.3', +526 silly addNameRange '2.0.4', +526 silly addNameRange '2.1.0', +526 silly addNameRange '2.2.0', +526 silly addNameRange '2.2.1', +526 silly addNameRange '2.2.2', +526 silly addNameRange '2.2.4', +526 silly addNameRange '2.3.0', +526 silly addNameRange '2.3.1', +526 silly addNameRange '2.5.0', +526 silly addNameRange '2.5.1', +526 silly addNameRange '2.5.2', +526 silly addNameRange '2.6.0', +526 silly addNameRange '2.6.1', +526 silly addNameRange '2.6.2', +526 silly addNameRange '2.6.3', +526 silly addNameRange '2.6.4', +526 silly addNameRange '2.6.5', +526 silly addNameRange '2.7.0', +526 silly addNameRange '2.7.1', +526 silly addNameRange '2.7.2', +526 silly addNameRange '2.7.3', +526 silly addNameRange '3.0.0', +526 silly addNameRange '3.1.0', +526 silly addNameRange '3.1.1', +526 silly addNameRange '3.1.2', +526 silly addNameRange '3.2.0', +526 silly addNameRange '4.0.0', +526 silly addNameRange '4.0.1' ] ] +527 silly addNamed lru-cache@2.7.3 +528 verbose addNamed "2.7.3" is a plain semver version for lru-cache +529 silly cache afterAdd lru-cache@2.7.3 +530 verbose afterAdd /home/vagrant/.npm/lru-cache/2.7.3/package/package.json not in flight; writing +531 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +532 verbose afterAdd /home/vagrant/.npm/lru-cache/2.7.3/package/package.json written +533 http 304 http://172.23.238.253:4873/sigmund +534 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +534 verbose headers etag: '"7be52962cd7dde50bcd45287393ca9e1"', +534 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +534 verbose headers date: 'Mon, 11 Apr 2016 06:13:48 GMT', +534 verbose headers connection: 'keep-alive' } +535 silly get cb [ 304, +535 silly get { 'x-powered-by': 'Sinopia/1.4.0', +535 silly get etag: '"7be52962cd7dde50bcd45287393ca9e1"', +535 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +535 silly get date: 'Mon, 11 Apr 2016 06:13:48 GMT', +535 silly get connection: 'keep-alive' } ] +536 verbose etag http://172.23.238.253:4873/sigmund from cache +537 verbose get saving sigmund to /home/vagrant/.npm/172.23.238.253_4873/sigmund/.cache.json +538 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +539 silly resolveWithNewModule sigmund@1.0.1 checking installable status +540 silly cache add args [ 'sigmund@~1.0.0', null ] +541 verbose cache add spec sigmund@~1.0.0 +542 silly cache add parsed spec Result { +542 silly cache add raw: 'sigmund@~1.0.0', +542 silly cache add scope: null, +542 silly cache add name: 'sigmund', +542 silly cache add rawSpec: '~1.0.0', +542 silly cache add spec: '>=1.0.0 <1.1.0', +542 silly cache add type: 'range' } +543 silly addNamed sigmund@>=1.0.0 <1.1.0 +544 verbose addNamed ">=1.0.0 <1.1.0" is a valid semver range for sigmund +545 silly addNameRange { name: 'sigmund', range: '>=1.0.0 <1.1.0', hasData: false } +546 silly mapToRegistry name sigmund +547 silly mapToRegistry using default registry +548 silly mapToRegistry registry http://172.23.238.253:4873/ +549 silly mapToRegistry uri http://172.23.238.253:4873/sigmund +550 verbose addNameRange registry:http://172.23.238.253:4873/sigmund not in flight; fetching +551 verbose get http://172.23.238.253:4873/sigmund not expired, no request +552 silly addNameRange number 2 { name: 'sigmund', range: '>=1.0.0 <1.1.0', hasData: true } +553 silly addNameRange versions [ 'sigmund', [ '1.0.0', '1.0.1' ] ] +554 silly addNamed sigmund@1.0.1 +555 verbose addNamed "1.0.1" is a plain semver version for sigmund +556 silly cache afterAdd sigmund@1.0.1 +557 verbose afterAdd /home/vagrant/.npm/sigmund/1.0.1/package/package.json not in flight; writing +558 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +559 verbose afterAdd /home/vagrant/.npm/sigmund/1.0.1/package/package.json written +560 silly fetchNamedPackageData commander +561 silly mapToRegistry name commander +562 silly mapToRegistry using default registry +563 silly mapToRegistry registry http://172.23.238.253:4873/ +564 silly mapToRegistry uri http://172.23.238.253:4873/commander +565 silly resolveWithNewModule commander@0.6.1 checking installable status +566 silly cache add args [ 'commander@0.6.1', null ] +567 verbose cache add spec commander@0.6.1 +568 silly fetchNamedPackageData mkdirp +569 silly mapToRegistry name mkdirp +570 silly mapToRegistry using default registry +571 silly mapToRegistry registry http://172.23.238.253:4873/ +572 silly mapToRegistry uri http://172.23.238.253:4873/mkdirp +573 silly resolveWithNewModule mkdirp@0.3.0 checking installable status +574 silly cache add args [ 'mkdirp@0.3.0', null ] +575 verbose cache add spec mkdirp@0.3.0 +576 silly cache add parsed spec Result { +576 silly cache add raw: 'commander@0.6.1', +576 silly cache add scope: null, +576 silly cache add name: 'commander', +576 silly cache add rawSpec: '0.6.1', +576 silly cache add spec: '0.6.1', +576 silly cache add type: 'version' } +577 silly addNamed commander@0.6.1 +578 verbose addNamed "0.6.1" is a plain semver version for commander +579 silly mapToRegistry name commander +580 silly mapToRegistry using default registry +581 silly mapToRegistry registry http://172.23.238.253:4873/ +582 silly mapToRegistry uri http://172.23.238.253:4873/commander +583 verbose addNameVersion registry:http://172.23.238.253:4873/commander not in flight; fetching +584 silly cache add parsed spec Result { +584 silly cache add raw: 'mkdirp@0.3.0', +584 silly cache add scope: null, +584 silly cache add name: 'mkdirp', +584 silly cache add rawSpec: '0.3.0', +584 silly cache add spec: '0.3.0', +584 silly cache add type: 'version' } +585 silly addNamed mkdirp@0.3.0 +586 verbose addNamed "0.3.0" is a plain semver version for mkdirp +587 silly mapToRegistry name mkdirp +588 silly mapToRegistry using default registry +589 silly mapToRegistry registry http://172.23.238.253:4873/ +590 silly mapToRegistry uri http://172.23.238.253:4873/mkdirp +591 verbose addNameVersion registry:http://172.23.238.253:4873/mkdirp not in flight; fetching +592 verbose request uri http://172.23.238.253:4873/commander +593 verbose request no auth needed +594 info attempt registry request try #1 at 6:13:11 AM +595 verbose etag "83ee45b6ed25bed8bd639237ee026731" +596 http request GET http://172.23.238.253:4873/commander +597 verbose request uri http://172.23.238.253:4873/mkdirp +598 verbose request no auth needed +599 info attempt registry request try #1 at 6:13:11 AM +600 verbose etag "60f7cf2672457488a3232df9b8f49298" +601 http request GET http://172.23.238.253:4873/mkdirp +602 http 304 http://172.23.238.253:4873/mkdirp +603 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +603 verbose headers etag: '"60f7cf2672457488a3232df9b8f49298"', +603 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +603 verbose headers date: 'Mon, 11 Apr 2016 06:13:48 GMT', +603 verbose headers connection: 'keep-alive' } +604 silly get cb [ 304, +604 silly get { 'x-powered-by': 'Sinopia/1.4.0', +604 silly get etag: '"60f7cf2672457488a3232df9b8f49298"', +604 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +604 silly get date: 'Mon, 11 Apr 2016 06:13:48 GMT', +604 silly get connection: 'keep-alive' } ] +605 verbose etag http://172.23.238.253:4873/mkdirp from cache +606 verbose get saving mkdirp to /home/vagrant/.npm/172.23.238.253_4873/mkdirp/.cache.json +607 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +608 silly cache afterAdd mkdirp@0.3.0 +609 verbose afterAdd /home/vagrant/.npm/mkdirp/0.3.0/package/package.json not in flight; writing +610 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +611 verbose afterAdd /home/vagrant/.npm/mkdirp/0.3.0/package/package.json written +612 http 304 http://172.23.238.253:4873/commander +613 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +613 verbose headers etag: '"83ee45b6ed25bed8bd639237ee026731"', +613 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +613 verbose headers date: 'Mon, 11 Apr 2016 06:13:50 GMT', +613 verbose headers connection: 'keep-alive' } +614 silly get cb [ 304, +614 silly get { 'x-powered-by': 'Sinopia/1.4.0', +614 silly get etag: '"83ee45b6ed25bed8bd639237ee026731"', +614 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +614 silly get date: 'Mon, 11 Apr 2016 06:13:50 GMT', +614 silly get connection: 'keep-alive' } ] +615 verbose etag http://172.23.238.253:4873/commander from cache +616 verbose get saving commander to /home/vagrant/.npm/172.23.238.253_4873/commander/.cache.json +617 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +618 silly cache afterAdd commander@0.6.1 +619 verbose afterAdd /home/vagrant/.npm/commander/0.6.1/package/package.json not in flight; writing +620 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +621 verbose afterAdd /home/vagrant/.npm/commander/0.6.1/package/package.json written +622 silly fetchNamedPackageData minimist +623 silly mapToRegistry name minimist +624 silly mapToRegistry using default registry +625 silly mapToRegistry registry http://172.23.238.253:4873/ +626 silly mapToRegistry uri http://172.23.238.253:4873/minimist +627 verbose request uri http://172.23.238.253:4873/minimist +628 verbose request no auth needed +629 info attempt registry request try #1 at 6:13:12 AM +630 verbose etag "e3f8e00333e08a64e20afcf8bdece438" +631 http request GET http://172.23.238.253:4873/minimist +632 http 304 http://172.23.238.253:4873/minimist +633 verbose headers { 'x-powered-by': 'Sinopia/1.4.0', +633 verbose headers etag: '"e3f8e00333e08a64e20afcf8bdece438"', +633 verbose headers 'x-status-cat': 'http://flic.kr/p/aXY3dH', +633 verbose headers date: 'Mon, 11 Apr 2016 06:13:51 GMT', +633 verbose headers connection: 'keep-alive' } +634 silly get cb [ 304, +634 silly get { 'x-powered-by': 'Sinopia/1.4.0', +634 silly get etag: '"e3f8e00333e08a64e20afcf8bdece438"', +634 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH', +634 silly get date: 'Mon, 11 Apr 2016 06:13:51 GMT', +634 silly get connection: 'keep-alive' } ] +635 verbose etag http://172.23.238.253:4873/minimist from cache +636 verbose get saving minimist to /home/vagrant/.npm/172.23.238.253_4873/minimist/.cache.json +637 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +638 silly resolveWithNewModule minimist@0.0.8 checking installable status +639 silly cache add args [ 'minimist@0.0.8', null ] +640 verbose cache add spec minimist@0.0.8 +641 silly cache add parsed spec Result { +641 silly cache add raw: 'minimist@0.0.8', +641 silly cache add scope: null, +641 silly cache add name: 'minimist', +641 silly cache add rawSpec: '0.0.8', +641 silly cache add spec: '0.0.8', +641 silly cache add type: 'version' } +642 silly addNamed minimist@0.0.8 +643 verbose addNamed "0.0.8" is a plain semver version for minimist +644 silly mapToRegistry name minimist +645 silly mapToRegistry using default registry +646 silly mapToRegistry registry http://172.23.238.253:4873/ +647 silly mapToRegistry uri http://172.23.238.253:4873/minimist +648 verbose addNameVersion registry:http://172.23.238.253:4873/minimist not in flight; fetching +649 verbose get http://172.23.238.253:4873/minimist not expired, no request +650 silly cache afterAdd minimist@0.0.8 +651 verbose afterAdd /home/vagrant/.npm/minimist/0.0.8/package/package.json not in flight; writing +652 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing +653 verbose afterAdd /home/vagrant/.npm/minimist/0.0.8/package/package.json written +654 silly loadAllDepsIntoIdealTree Finishing +655 silly idealTree:prePrune lib +655 silly idealTree:prePrune └─┬ mocha@2.4.5 +655 silly idealTree:prePrune ├── commander@2.3.0 +655 silly idealTree:prePrune ├── debug@2.2.0 +655 silly idealTree:prePrune ├── diff@1.4.0 +655 silly idealTree:prePrune ├── escape-string-regexp@1.0.2 +655 silly idealTree:prePrune ├── glob@3.2.3 +655 silly idealTree:prePrune ├── graceful-fs@2.0.3 +655 silly idealTree:prePrune ├── growl@1.8.1 +655 silly idealTree:prePrune ├── inherits@2.0.1 +655 silly idealTree:prePrune ├─┬ jade@0.26.3 +655 silly idealTree:prePrune │ ├── commander@0.6.1 +655 silly idealTree:prePrune │ └── mkdirp@0.3.0 +655 silly idealTree:prePrune ├── lru-cache@2.7.3 +655 silly idealTree:prePrune ├── minimatch@0.2.14 +655 silly idealTree:prePrune ├── minimist@0.0.8 +655 silly idealTree:prePrune ├── mkdirp@0.5.1 +655 silly idealTree:prePrune ├── ms@0.7.1 +655 silly idealTree:prePrune ├── sigmund@1.0.1 +655 silly idealTree:prePrune └── supports-color@1.2.0 +656 silly loadIdealTree Finishing +657 silly currentTree lib +658 silly idealTree lib +658 silly idealTree └─┬ mocha@2.4.5 +658 silly idealTree ├── commander@2.3.0 +658 silly idealTree ├── debug@2.2.0 +658 silly idealTree ├── diff@1.4.0 +658 silly idealTree ├── escape-string-regexp@1.0.2 +658 silly idealTree ├── glob@3.2.3 +658 silly idealTree ├── graceful-fs@2.0.3 +658 silly idealTree ├── growl@1.8.1 +658 silly idealTree ├── inherits@2.0.1 +658 silly idealTree ├─┬ jade@0.26.3 +658 silly idealTree │ ├── commander@0.6.1 +658 silly idealTree │ └── mkdirp@0.3.0 +658 silly idealTree ├── lru-cache@2.7.3 +658 silly idealTree ├── minimatch@0.2.14 +658 silly idealTree ├── minimist@0.0.8 +658 silly idealTree ├── mkdirp@0.5.1 +658 silly idealTree ├── ms@0.7.1 +658 silly idealTree ├── sigmund@1.0.1 +658 silly idealTree └── supports-color@1.2.0 +659 silly generateActionsToTake Starting +660 silly install generateActionsToTake +661 warn checkPermissions Missing write access to /usr/lib/node_modules +662 silly rollbackFailedOptional Starting +663 silly rollbackFailedOptional Finishing +664 silly runTopLevelLifecycles Starting +665 silly runTopLevelLifecycles Finishing +666 silly install printInstalled +667 verbose stack Error: EACCES: permission denied, access '/usr/lib/node_modules' +667 verbose stack at Error (native) +668 verbose cwd /vagrant/LogAggregator-4 +669 error Linux 4.2.0-22-generic +670 error argv "/usr/bin/nodejs" "/usr/bin/npm" "install" "-g" "mocha" "--no-bin-link" +671 error node v5.7.1 +672 error npm v3.6.0 +673 error path /usr/lib/node_modules +674 error code EACCES +675 error errno -13 +676 error syscall access +677 error Error: EACCES: permission denied, access '/usr/lib/node_modules' +677 error at Error (native) +677 error { [Error: EACCES: permission denied, access '/usr/lib/node_modules'] +677 error errno: -13, +677 error code: 'EACCES', +677 error syscall: 'access', +677 error path: '/usr/lib/node_modules' } +678 error Please try running this command again as root/Administrator. +679 verbose exit [ -13, true ] diff --git a/public/angular.min.js b/public/angular.min.js new file mode 100644 index 0000000..b4f9b07 --- /dev/null +++ b/public/angular.min.js @@ -0,0 +1,295 @@ +/* + AngularJS v1.4.8 + (c) 2010-2015 Google, Inc. http://angularjs.org + License: MIT +*/ +(function(S,X,u){'use strict';function G(a){return function(){var b=arguments[0],d;d="["+(a?a+":":"")+b+"] http://errors.angularjs.org/1.4.8/"+(a?a+"/":"")+b;for(b=1;b").append(a).html();try{return a[0].nodeType===Na?F(d):d.match(/^(<[^>]+>)/)[1].replace(/^<([\w\-]+)/,function(a,b){return"<"+F(b)})}catch(c){return F(d)}}function wc(a){try{return decodeURIComponent(a)}catch(b){}} +function xc(a){var b={};n((a||"").split("&"),function(a){var c,e,f;a&&(e=a=a.replace(/\+/g,"%20"),c=a.indexOf("="),-1!==c&&(e=a.substring(0,c),f=a.substring(c+1)),e=wc(e),y(e)&&(f=y(f)?wc(f):!0,qa.call(b,e)?I(b[e])?b[e].push(f):b[e]=[b[e],f]:b[e]=f))});return b}function Qb(a){var b=[];n(a,function(a,c){I(a)?n(a,function(a){b.push(ja(c,!0)+(!0===a?"":"="+ja(a,!0)))}):b.push(ja(c,!0)+(!0===a?"":"="+ja(a,!0)))});return b.length?b.join("&"):""}function ob(a){return ja(a,!0).replace(/%26/gi,"&").replace(/%3D/gi, +"=").replace(/%2B/gi,"+")}function ja(a,b){return encodeURIComponent(a).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%3B/gi,";").replace(/%20/g,b?"%20":"+")}function Yd(a,b){var d,c,e=Oa.length;for(c=0;c/,">"));}b=b||[];b.unshift(["$provide",function(b){b.value("$rootElement",a)}]);d.debugInfoEnabled&&b.push(["$compileProvider",function(a){a.debugInfoEnabled(!0)}]);b.unshift("ng");c=eb(b,d.strictDi);c.invoke(["$rootScope", +"$rootElement","$compile","$injector",function(a,b,c,d){a.$apply(function(){b.data("$injector",d);c(b)(a)})}]);return c},e=/^NG_ENABLE_DEBUG_INFO!/,f=/^NG_DEFER_BOOTSTRAP!/;S&&e.test(S.name)&&(d.debugInfoEnabled=!0,S.name=S.name.replace(e,""));if(S&&!f.test(S.name))return c();S.name=S.name.replace(f,"");fa.resumeBootstrap=function(a){n(a,function(a){b.push(a)});return c()};z(fa.resumeDeferredBootstrap)&&fa.resumeDeferredBootstrap()}function $d(){S.name="NG_ENABLE_DEBUG_INFO!"+S.name;S.location.reload()} +function ae(a){a=fa.element(a).injector();if(!a)throw Aa("test");return a.get("$$testability")}function zc(a,b){b=b||"_";return a.replace(be,function(a,c){return(c?b:"")+a.toLowerCase()})}function ce(){var a;if(!Ac){var b=pb();(oa=q(b)?S.jQuery:b?S[b]:u)&&oa.fn.on?(B=oa,M(oa.fn,{scope:Pa.scope,isolateScope:Pa.isolateScope,controller:Pa.controller,injector:Pa.injector,inheritedData:Pa.inheritedData}),a=oa.cleanData,oa.cleanData=function(b){var c;if(Rb)Rb=!1;else for(var e=0,f;null!=(f=b[e]);e++)(c= +oa._data(f,"events"))&&c.$destroy&&oa(f).triggerHandler("$destroy");a(b)}):B=N;fa.element=B;Ac=!0}}function qb(a,b,d){if(!a)throw Aa("areq",b||"?",d||"required");return a}function Qa(a,b,d){d&&I(a)&&(a=a[a.length-1]);qb(z(a),b,"not a function, got "+(a&&"object"===typeof a?a.constructor.name||"Object":typeof a));return a}function Ra(a,b){if("hasOwnProperty"===a)throw Aa("badname",b);}function Bc(a,b,d){if(!b)return a;b=b.split(".");for(var c,e=a,f=b.length,g=0;g")+c[2];for(c=c[0];c--;)d=d.lastChild;f=cb(f,d.childNodes);d=e.firstChild;d.textContent=""}else f.push(b.createTextNode(a));e.textContent="";e.innerHTML="";n(f,function(a){e.appendChild(a)});return e}function N(a){if(a instanceof N)return a;var b;E(a)&&(a=U(a), +b=!0);if(!(this instanceof N)){if(b&&"<"!=a.charAt(0))throw Ub("nosel");return new N(a)}if(b){b=X;var d;a=(d=Ef.exec(a))?[b.createElement(d[1])]:(d=Lc(a,b))?d.childNodes:[]}Mc(this,a)}function Vb(a){return a.cloneNode(!0)}function ub(a,b){b||vb(a);if(a.querySelectorAll)for(var d=a.querySelectorAll("*"),c=0,e=d.length;cl&&this.remove(t.key);return b}},get:function(a){if(l").parent()[0])});var f=O(a,b,a,c,d,e);K.$$addScopeClass(a);var g=null;return function(b,c,d){qb(b,"scope");e&&e.needsNewScope&&(b=b.$parent.$new());d=d||{};var h=d.parentBoundTranscludeFn,k=d.transcludeControllers;d=d.futureParentElement;h&&h.$$boundTransclude&&(h=h.$$boundTransclude);g||(g=(d= +d&&d[0])?"foreignobject"!==ta(d)&&d.toString().match(/SVG/)?"svg":"html":"html");d="html"!==g?B(Yb(g,B("
").append(a).html())):c?Pa.clone.call(a):a;if(k)for(var l in k)d.data("$"+l+"Controller",k[l].instance);K.$$addScopeInfo(d,b);c&&c(d,b);f&&f(b,d,d,h);return d}}function O(a,b,c,d,e,f){function g(a,c,d,e){var f,k,l,m,t,w,D;if(p)for(D=Array(c.length),m=0;mq.priority)break;if(P=q.scope)q.templateUrl||(H(P)?(Ua("new/isolated scope",O||R,q,Z),O=q):Ua("new/isolated scope",O,q,Z)),R=R||q;x=q.name;!q.templateUrl&&q.controller&&(P=q.controller,T=T||$(),Ua("'"+x+"' controller",T[x],q,Z),T[x]=q);if(P=q.transclude)ga=!0,q.$$tlb||(Ua("transclusion",n,q,Z),n=q),"element"==P?(aa=!0,A=q.priority,P=Z,Z=d.$$element=B(X.createComment(" "+x+": "+d[x]+" ")),b=Z[0],Y(f,ra.call(P,0), +b),Ia=K(P,e,A,g&&g.name,{nonTlbTranscludeDirective:n})):(P=B(Vb(b)).contents(),Z.empty(),Ia=K(P,e,u,u,{needsNewScope:q.$$isolateScope||q.$$newScope}));if(q.template)if(L=!0,Ua("template",J,q,Z),J=q,P=z(q.template)?q.template(Z,d):q.template,P=ja(P),q.replace){g=q;P=Tb.test(P)?Xc(Yb(q.templateNamespace,U(P))):[];b=P[0];if(1!=P.length||1!==b.nodeType)throw ha("tplrt",x,"");Y(f,Z,b);P={$attr:{}};var Wc=V(b,[],P),W=a.splice(F+1,a.length-(F+1));(O||R)&&y(Wc,O,R);a=a.concat(Wc).concat(W);S(d,P);M=a.length}else Z.html(P); +if(q.templateUrl)L=!0,Ua("template",J,q,Z),J=q,q.replace&&(g=q),D=Of(a.splice(F,a.length-F),Z,d,f,ga&&Ia,h,l,{controllerDirectives:T,newScopeDirective:R!==q&&R,newIsolateScopeDirective:O,templateDirective:J,nonTlbTranscludeDirective:n}),M=a.length;else if(q.compile)try{G=q.compile(Z,d,Ia),z(G)?t(null,G,N,Q):G&&t(G.pre,G.post,N,Q)}catch(da){c(da,ua(Z))}q.terminal&&(D.terminal=!0,A=Math.max(A,q.priority))}D.scope=R&&!0===R.scope;D.transcludeOnThisElement=ga;D.templateOnThisElement=L;D.transclude=Ia; +m.hasElementTranscludeDirective=aa;return D}function y(a,b,c){for(var d=0,e=a.length;dm.priority)&&-1!=m.restrict.indexOf(f)&&(k&&(m=Ob(m,{$$start:k,$$end:l})),b.push(m),h=m)}catch(D){c(D)}}return h}function G(b){if(e.hasOwnProperty(b))for(var c=a.get(b+"Directive"),d=0,f=c.length;d"+b+"";return c.childNodes[0].childNodes;default:return b}}function Q(a,b){if("srcdoc"==b)return L.HTML;var c=ta(a);if("xlinkHref"==b||"form"==c&&"action"==b||"img"!=c&&("src"==b||"ngSrc"==b))return L.RESOURCE_URL}function W(a,c,d,e,f){var g=Q(a,e);f=h[e]||f;var k=b(d,!0,g,f);if(k){if("multiple"===e&&"select"===ta(a))throw ha("selmulti",ua(a));c.push({priority:100,compile:function(){return{pre:function(a,c,h){c=h.$$observers||(h.$$observers=$());if(l.test(e))throw ha("nodomevents"); +var m=h[e];m!==d&&(k=m&&b(m,!0,g,f),d=m);k&&(h[e]=k(a),(c[e]||(c[e]=[])).$$inter=!0,(h.$$observers&&h.$$observers[e].$$scope||a).$watch(k,function(a,b){"class"===e&&a!=b?h.$updateClass(a,b):h.$set(e,a)}))}}}})}}function Y(a,b,c){var d=b[0],e=b.length,f=d.parentNode,g,h;if(a)for(g=0,h=a.length;g=b)return a;for(;b--;)8===a[b].nodeType&&Pf.call(a,b,1);return a}function Xe(){var a={},b=!1;this.register=function(b,c){Ra(b,"controller");H(b)?M(a,b):a[b]=c};this.allowGlobals=function(){b=!0};this.$get=["$injector","$window",function(d,c){function e(a,b,c,d){if(!a||!H(a.$scope))throw G("$controller")("noscp", +d,b);a.$scope[b]=c}return function(f,g,h,k){var l,m,r;h=!0===h;k&&E(k)&&(r=k);if(E(f)){k=f.match(Uc);if(!k)throw Qf("ctrlfmt",f);m=k[1];r=r||k[3];f=a.hasOwnProperty(m)?a[m]:Bc(g.$scope,m,!0)||(b?Bc(c,m,!0):u);Qa(f,m,!0)}if(h)return h=(I(f)?f[f.length-1]:f).prototype,l=Object.create(h||null),r&&e(g,r,l,m||f.name),M(function(){var a=d.invoke(f,l,g,m);a!==l&&(H(a)||z(a))&&(l=a,r&&e(g,r,l,m||f.name));return l},{instance:l,identifier:r});l=d.instantiate(f,g,m);r&&e(g,r,l,m||f.name);return l}}]}function Ye(){this.$get= +["$window",function(a){return B(a.document)}]}function Ze(){this.$get=["$log",function(a){return function(b,d){a.error.apply(a,arguments)}}]}function Zb(a){return H(a)?da(a)?a.toISOString():db(a):a}function df(){this.$get=function(){return function(a){if(!a)return"";var b=[];oc(a,function(a,c){null===a||q(a)||(I(a)?n(a,function(a,d){b.push(ja(c)+"="+ja(Zb(a)))}):b.push(ja(c)+"="+ja(Zb(a))))});return b.join("&")}}}function ef(){this.$get=function(){return function(a){function b(a,e,f){null===a||q(a)|| +(I(a)?n(a,function(a,c){b(a,e+"["+(H(a)?c:"")+"]")}):H(a)&&!da(a)?oc(a,function(a,c){b(a,e+(f?"":"[")+c+(f?"":"]"))}):d.push(ja(e)+"="+ja(Zb(a))))}if(!a)return"";var d=[];b(a,"",!0);return d.join("&")}}}function $b(a,b){if(E(a)){var d=a.replace(Rf,"").trim();if(d){var c=b("Content-Type");(c=c&&0===c.indexOf($c))||(c=(c=d.match(Sf))&&Tf[c[0]].test(d));c&&(a=uc(d))}}return a}function ad(a){var b=$(),d;E(a)?n(a.split("\n"),function(a){d=a.indexOf(":");var e=F(U(a.substr(0,d)));a=U(a.substr(d+1));e&& +(b[e]=b[e]?b[e]+", "+a:a)}):H(a)&&n(a,function(a,d){var f=F(d),g=U(a);f&&(b[f]=b[f]?b[f]+", "+g:g)});return b}function bd(a){var b;return function(d){b||(b=ad(a));return d?(d=b[F(d)],void 0===d&&(d=null),d):b}}function cd(a,b,d,c){if(z(c))return c(a,b,d);n(c,function(c){a=c(a,b,d)});return a}function cf(){var a=this.defaults={transformResponse:[$b],transformRequest:[function(a){return H(a)&&"[object File]"!==sa.call(a)&&"[object Blob]"!==sa.call(a)&&"[object FormData]"!==sa.call(a)?db(a):a}],headers:{common:{Accept:"application/json, text/plain, */*"}, +post:ia(ac),put:ia(ac),patch:ia(ac)},xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",paramSerializer:"$httpParamSerializer"},b=!1;this.useApplyAsync=function(a){return y(a)?(b=!!a,this):b};var d=!0;this.useLegacyPromiseExtensions=function(a){return y(a)?(d=!!a,this):d};var c=this.interceptors=[];this.$get=["$httpBackend","$$cookieReader","$cacheFactory","$rootScope","$q","$injector",function(e,f,g,h,k,l){function m(b){function c(a){var b=M({},a);b.data=cd(a.data,a.headers,a.status,f.transformResponse); +a=a.status;return 200<=a&&300>a?b:k.reject(b)}function e(a,b){var c,d={};n(a,function(a,e){z(a)?(c=a(b),null!=c&&(d[e]=c)):d[e]=a});return d}if(!fa.isObject(b))throw G("$http")("badreq",b);var f=M({method:"get",transformRequest:a.transformRequest,transformResponse:a.transformResponse,paramSerializer:a.paramSerializer},b);f.headers=function(b){var c=a.headers,d=M({},b.headers),f,g,h,c=M({},c.common,c[F(b.method)]);a:for(f in c){g=F(f);for(h in d)if(F(h)===g)continue a;d[f]=c[f]}return e(d,ia(b))}(b); +f.method=sb(f.method);f.paramSerializer=E(f.paramSerializer)?l.get(f.paramSerializer):f.paramSerializer;var g=[function(b){var d=b.headers,e=cd(b.data,bd(d),u,b.transformRequest);q(e)&&n(d,function(a,b){"content-type"===F(b)&&delete d[b]});q(b.withCredentials)&&!q(a.withCredentials)&&(b.withCredentials=a.withCredentials);return r(b,e).then(c,c)},u],h=k.when(f);for(n(v,function(a){(a.request||a.requestError)&&g.unshift(a.request,a.requestError);(a.response||a.responseError)&&g.push(a.response,a.responseError)});g.length;){b= +g.shift();var m=g.shift(),h=h.then(b,m)}d?(h.success=function(a){Qa(a,"fn");h.then(function(b){a(b.data,b.status,b.headers,f)});return h},h.error=function(a){Qa(a,"fn");h.then(null,function(b){a(b.data,b.status,b.headers,f)});return h}):(h.success=dd("success"),h.error=dd("error"));return h}function r(c,d){function g(a,c,d,e){function f(){l(c,a,d,e)}J&&(200<=a&&300>a?J.put(R,[a,c,ad(d),e]):J.remove(R));b?h.$applyAsync(f):(f(),h.$$phase||h.$apply())}function l(a,b,d,e){b=-1<=b?b:0;(200<=b&&300>b?n.resolve: +n.reject)({data:a,status:b,headers:bd(d),config:c,statusText:e})}function r(a){l(a.data,a.status,ia(a.headers()),a.statusText)}function v(){var a=m.pendingRequests.indexOf(c);-1!==a&&m.pendingRequests.splice(a,1)}var n=k.defer(),D=n.promise,J,K,O=c.headers,R=t(c.url,c.paramSerializer(c.params));m.pendingRequests.push(c);D.then(v,v);!c.cache&&!a.cache||!1===c.cache||"GET"!==c.method&&"JSONP"!==c.method||(J=H(c.cache)?c.cache:H(a.cache)?a.cache:A);J&&(K=J.get(R),y(K)?K&&z(K.then)?K.then(r,r):I(K)?l(K[1], +K[0],ia(K[2]),K[3]):l(K,200,{},"OK"):J.put(R,D));q(K)&&((K=ed(c.url)?f()[c.xsrfCookieName||a.xsrfCookieName]:u)&&(O[c.xsrfHeaderName||a.xsrfHeaderName]=K),e(c.method,R,d,g,O,c.timeout,c.withCredentials,c.responseType));return D}function t(a,b){0=k&&(p.resolve(v),A(C.$$intervalId),delete f[C.$$intervalId]);n||a.$apply()},h);f[C.$$intervalId]=p;return C}var f={};e.cancel=function(a){return a&&a.$$intervalId in f?(f[a.$$intervalId].reject("canceled"),b.clearInterval(a.$$intervalId),delete f[a.$$intervalId],!0):!1};return e}]}function bc(a){a=a.split("/");for(var b=a.length;b--;)a[b]=ob(a[b]);return a.join("/")}function fd(a,b){var d=wa(a);b.$$protocol=d.protocol;b.$$host=d.hostname;b.$$port=ea(d.port)||Vf[d.protocol]|| +null}function gd(a,b){var d="/"!==a.charAt(0);d&&(a="/"+a);var c=wa(a);b.$$path=decodeURIComponent(d&&"/"===c.pathname.charAt(0)?c.pathname.substring(1):c.pathname);b.$$search=xc(c.search);b.$$hash=decodeURIComponent(c.hash);b.$$path&&"/"!=b.$$path.charAt(0)&&(b.$$path="/"+b.$$path)}function pa(a,b){if(0===b.indexOf(a))return b.substr(a.length)}function Fa(a){var b=a.indexOf("#");return-1==b?a:a.substr(0,b)}function ib(a){return a.replace(/(#.+)|#$/,"$1")}function cc(a,b,d){this.$$html5=!0;d=d||""; +fd(a,this);this.$$parse=function(a){var d=pa(b,a);if(!E(d))throw Db("ipthprfx",a,b);gd(d,this);this.$$path||(this.$$path="/");this.$$compose()};this.$$compose=function(){var a=Qb(this.$$search),d=this.$$hash?"#"+ob(this.$$hash):"";this.$$url=bc(this.$$path)+(a?"?"+a:"")+d;this.$$absUrl=b+this.$$url.substr(1)};this.$$parseLinkUrl=function(c,e){if(e&&"#"===e[0])return this.hash(e.slice(1)),!0;var f,g;y(f=pa(a,c))?(g=f,g=y(f=pa(d,f))?b+(pa("/",f)||f):a+g):y(f=pa(b,c))?g=b+f:b==c+"/"&&(g=b);g&&this.$$parse(g); +return!!g}}function dc(a,b,d){fd(a,this);this.$$parse=function(c){var e=pa(a,c)||pa(b,c),f;q(e)||"#"!==e.charAt(0)?this.$$html5?f=e:(f="",q(e)&&(a=c,this.replace())):(f=pa(d,e),q(f)&&(f=e));gd(f,this);c=this.$$path;var e=a,g=/^\/[A-Z]:(\/.*)/;0===f.indexOf(e)&&(f=f.replace(e,""));g.exec(f)||(c=(f=g.exec(c))?f[1]:c);this.$$path=c;this.$$compose()};this.$$compose=function(){var b=Qb(this.$$search),e=this.$$hash?"#"+ob(this.$$hash):"";this.$$url=bc(this.$$path)+(b?"?"+b:"")+e;this.$$absUrl=a+(this.$$url? +d+this.$$url:"")};this.$$parseLinkUrl=function(b,d){return Fa(a)==Fa(b)?(this.$$parse(b),!0):!1}}function hd(a,b,d){this.$$html5=!0;dc.apply(this,arguments);this.$$parseLinkUrl=function(c,e){if(e&&"#"===e[0])return this.hash(e.slice(1)),!0;var f,g;a==Fa(c)?f=c:(g=pa(b,c))?f=a+d+g:b===c+"/"&&(f=b);f&&this.$$parse(f);return!!f};this.$$compose=function(){var b=Qb(this.$$search),e=this.$$hash?"#"+ob(this.$$hash):"";this.$$url=bc(this.$$path)+(b?"?"+b:"")+e;this.$$absUrl=a+d+this.$$url}}function Eb(a){return function(){return this[a]}} +function id(a,b){return function(d){if(q(d))return this[a];this[a]=b(d);this.$$compose();return this}}function hf(){var a="",b={enabled:!1,requireBase:!0,rewriteLinks:!0};this.hashPrefix=function(b){return y(b)?(a=b,this):a};this.html5Mode=function(a){return $a(a)?(b.enabled=a,this):H(a)?($a(a.enabled)&&(b.enabled=a.enabled),$a(a.requireBase)&&(b.requireBase=a.requireBase),$a(a.rewriteLinks)&&(b.rewriteLinks=a.rewriteLinks),this):b};this.$get=["$rootScope","$browser","$sniffer","$rootElement","$window", +function(d,c,e,f,g){function h(a,b,d){var e=l.url(),f=l.$$state;try{c.url(a,b,d),l.$$state=c.state()}catch(g){throw l.url(e),l.$$state=f,g;}}function k(a,b){d.$broadcast("$locationChangeSuccess",l.absUrl(),a,l.$$state,b)}var l,m;m=c.baseHref();var r=c.url(),t;if(b.enabled){if(!m&&b.requireBase)throw Db("nobase");t=r.substring(0,r.indexOf("/",r.indexOf("//")+2))+(m||"/");m=e.history?cc:hd}else t=Fa(r),m=dc;var A=t.substr(0,Fa(t).lastIndexOf("/")+1);l=new m(t,A,"#"+a);l.$$parseLinkUrl(r,r);l.$$state= +c.state();var v=/^\s*(javascript|mailto):/i;f.on("click",function(a){if(b.rewriteLinks&&!a.ctrlKey&&!a.metaKey&&!a.shiftKey&&2!=a.which&&2!=a.button){for(var e=B(a.target);"a"!==ta(e[0]);)if(e[0]===f[0]||!(e=e.parent())[0])return;var h=e.prop("href"),k=e.attr("href")||e.attr("xlink:href");H(h)&&"[object SVGAnimatedString]"===h.toString()&&(h=wa(h.animVal).href);v.test(h)||!h||e.attr("target")||a.isDefaultPrevented()||!l.$$parseLinkUrl(h,k)||(a.preventDefault(),l.absUrl()!=c.url()&&(d.$apply(),g.angular["ff-684208-preventDefault"]= +!0))}});ib(l.absUrl())!=ib(r)&&c.url(l.absUrl(),!0);var n=!0;c.onUrlChange(function(a,b){q(pa(A,a))?g.location.href=a:(d.$evalAsync(function(){var c=l.absUrl(),e=l.$$state,f;a=ib(a);l.$$parse(a);l.$$state=b;f=d.$broadcast("$locationChangeStart",a,c,b,e).defaultPrevented;l.absUrl()===a&&(f?(l.$$parse(c),l.$$state=e,h(c,!1,e)):(n=!1,k(c,e)))}),d.$$phase||d.$digest())});d.$watch(function(){var a=ib(c.url()),b=ib(l.absUrl()),f=c.state(),g=l.$$replace,m=a!==b||l.$$html5&&e.history&&f!==l.$$state;if(n|| +m)n=!1,d.$evalAsync(function(){var b=l.absUrl(),c=d.$broadcast("$locationChangeStart",b,a,l.$$state,f).defaultPrevented;l.absUrl()===b&&(c?(l.$$parse(a),l.$$state=f):(m&&h(b,g,f===l.$$state?null:l.$$state),k(a,f)))});l.$$replace=!1});return l}]}function jf(){var a=!0,b=this;this.debugEnabled=function(b){return y(b)?(a=b,this):a};this.$get=["$window",function(d){function c(a){a instanceof Error&&(a.stack?a=a.message&&-1===a.stack.indexOf(a.message)?"Error: "+a.message+"\n"+a.stack:a.stack:a.sourceURL&& +(a=a.message+"\n"+a.sourceURL+":"+a.line));return a}function e(a){var b=d.console||{},e=b[a]||b.log||x;a=!1;try{a=!!e.apply}catch(k){}return a?function(){var a=[];n(arguments,function(b){a.push(c(b))});return e.apply(b,a)}:function(a,b){e(a,null==b?"":b)}}return{log:e("log"),info:e("info"),warn:e("warn"),error:e("error"),debug:function(){var c=e("debug");return function(){a&&c.apply(b,arguments)}}()}}]}function Va(a,b){if("__defineGetter__"===a||"__defineSetter__"===a||"__lookupGetter__"===a||"__lookupSetter__"=== +a||"__proto__"===a)throw ba("isecfld",b);return a}function jd(a,b){a+="";if(!E(a))throw ba("iseccst",b);return a}function xa(a,b){if(a){if(a.constructor===a)throw ba("isecfn",b);if(a.window===a)throw ba("isecwindow",b);if(a.children&&(a.nodeName||a.prop&&a.attr&&a.find))throw ba("isecdom",b);if(a===Object)throw ba("isecobj",b);}return a}function kd(a,b){if(a){if(a.constructor===a)throw ba("isecfn",b);if(a===Wf||a===Xf||a===Yf)throw ba("isecff",b);}}function ld(a,b){if(a&&(a===(0).constructor||a=== +(!1).constructor||a==="".constructor||a==={}.constructor||a===[].constructor||a===Function.constructor))throw ba("isecaf",b);}function Zf(a,b){return"undefined"!==typeof a?a:b}function md(a,b){return"undefined"===typeof a?b:"undefined"===typeof b?a:a+b}function W(a,b){var d,c;switch(a.type){case s.Program:d=!0;n(a.body,function(a){W(a.expression,b);d=d&&a.expression.constant});a.constant=d;break;case s.Literal:a.constant=!0;a.toWatch=[];break;case s.UnaryExpression:W(a.argument,b);a.constant=a.argument.constant; +a.toWatch=a.argument.toWatch;break;case s.BinaryExpression:W(a.left,b);W(a.right,b);a.constant=a.left.constant&&a.right.constant;a.toWatch=a.left.toWatch.concat(a.right.toWatch);break;case s.LogicalExpression:W(a.left,b);W(a.right,b);a.constant=a.left.constant&&a.right.constant;a.toWatch=a.constant?[]:[a];break;case s.ConditionalExpression:W(a.test,b);W(a.alternate,b);W(a.consequent,b);a.constant=a.test.constant&&a.alternate.constant&&a.consequent.constant;a.toWatch=a.constant?[]:[a];break;case s.Identifier:a.constant= +!1;a.toWatch=[a];break;case s.MemberExpression:W(a.object,b);a.computed&&W(a.property,b);a.constant=a.object.constant&&(!a.computed||a.property.constant);a.toWatch=[a];break;case s.CallExpression:d=a.filter?!b(a.callee.name).$stateful:!1;c=[];n(a.arguments,function(a){W(a,b);d=d&&a.constant;a.constant||c.push.apply(c,a.toWatch)});a.constant=d;a.toWatch=a.filter&&!b(a.callee.name).$stateful?c:[a];break;case s.AssignmentExpression:W(a.left,b);W(a.right,b);a.constant=a.left.constant&&a.right.constant; +a.toWatch=[a];break;case s.ArrayExpression:d=!0;c=[];n(a.elements,function(a){W(a,b);d=d&&a.constant;a.constant||c.push.apply(c,a.toWatch)});a.constant=d;a.toWatch=c;break;case s.ObjectExpression:d=!0;c=[];n(a.properties,function(a){W(a.value,b);d=d&&a.value.constant;a.value.constant||c.push.apply(c,a.value.toWatch)});a.constant=d;a.toWatch=c;break;case s.ThisExpression:a.constant=!1,a.toWatch=[]}}function nd(a){if(1==a.length){a=a[0].expression;var b=a.toWatch;return 1!==b.length?b:b[0]!==a?b:u}} +function od(a){return a.type===s.Identifier||a.type===s.MemberExpression}function pd(a){if(1===a.body.length&&od(a.body[0].expression))return{type:s.AssignmentExpression,left:a.body[0].expression,right:{type:s.NGValueParameter},operator:"="}}function qd(a){return 0===a.body.length||1===a.body.length&&(a.body[0].expression.type===s.Literal||a.body[0].expression.type===s.ArrayExpression||a.body[0].expression.type===s.ObjectExpression)}function rd(a,b){this.astBuilder=a;this.$filter=b}function sd(a, +b){this.astBuilder=a;this.$filter=b}function Fb(a){return"constructor"==a}function ec(a){return z(a.valueOf)?a.valueOf():$f.call(a)}function kf(){var a=$(),b=$();this.$get=["$filter",function(d){function c(a,b){return null==a||null==b?a===b:"object"===typeof a&&(a=ec(a),"object"===typeof a)?!1:a===b||a!==a&&b!==b}function e(a,b,d,e,f){var g=e.inputs,h;if(1===g.length){var k=c,g=g[0];return a.$watch(function(a){var b=g(a);c(b,k)||(h=e(a,u,u,[b]),k=b&&ec(b));return h},b,d,f)}for(var l=[],m=[],r=0,n= +g.length;r=this.promise.$$state.status&&d&&d.length&&a(function(){for(var a,e,f=0,g=d.length;fa)for(b in l++,f)qa.call(e,b)||(n--,delete f[b])}else f!==e&&(f=e,l++);return l}}c.$stateful=!0;var d=this,e,f,g,k=1n&&(v=4-n,q[v]||(q[v]=[]),q[v].push({msg:z(a.exp)?"fn: "+(a.exp.name||a.exp.toString()):a.exp,newVal:f,oldVal:h}));else if(a===c){r=!1;break a}}catch(y){g(y)}if(!(l=A.$$watchersCount&&A.$$childHead||A!==this&&A.$$nextSibling))for(;A!==this&&!(l=A.$$nextSibling);)A=A.$parent}while(A=l);if((r||u.length)&&!n--)throw w.$$phase=null,d("infdig", +b,q);}while(r||u.length);for(w.$$phase=null;L.length;)try{L.shift()()}catch(x){g(x)}},$destroy:function(){if(!this.$$destroyed){var a=this.$parent;this.$broadcast("$destroy");this.$$destroyed=!0;this===w&&k.$$applicationDestroyed();A(this,-this.$$watchersCount);for(var b in this.$$listenerCount)v(this,this.$$listenerCount[b],b);a&&a.$$childHead==this&&(a.$$childHead=this.$$nextSibling);a&&a.$$childTail==this&&(a.$$childTail=this.$$prevSibling);this.$$prevSibling&&(this.$$prevSibling.$$nextSibling= +this.$$nextSibling);this.$$nextSibling&&(this.$$nextSibling.$$prevSibling=this.$$prevSibling);this.$destroy=this.$digest=this.$apply=this.$evalAsync=this.$applyAsync=x;this.$on=this.$watch=this.$watchGroup=function(){return x};this.$$listeners={};this.$$nextSibling=null;m(this)}},$eval:function(a,b){return h(a)(this,b)},$evalAsync:function(a,b){w.$$phase||u.length||k.defer(function(){u.length&&w.$digest()});u.push({scope:this,expression:a,locals:b})},$$postDigest:function(a){L.push(a)},$apply:function(a){try{t("$apply"); +try{return this.$eval(a)}finally{w.$$phase=null}}catch(b){g(b)}finally{try{w.$digest()}catch(c){throw g(c),c;}}},$applyAsync:function(a){function b(){c.$eval(a)}var c=this;a&&aa.push(b);C()},$on:function(a,b){var c=this.$$listeners[a];c||(this.$$listeners[a]=c=[]);c.push(b);var d=this;do d.$$listenerCount[a]||(d.$$listenerCount[a]=0),d.$$listenerCount[a]++;while(d=d.$parent);var e=this;return function(){var d=c.indexOf(b);-1!==d&&(c[d]=null,v(e,1,a))}},$emit:function(a,b){var c=[],d,e=this,f=!1,h= +{name:a,targetScope:e,stopPropagation:function(){f=!0},preventDefault:function(){h.defaultPrevented=!0},defaultPrevented:!1},k=cb([h],arguments,1),l,m;do{d=e.$$listeners[a]||c;h.currentScope=e;l=0;for(m=d.length;lHa)throw ya("iequirks");var c=ia(la);c.isEnabled=function(){return a};c.trustAs=d.trustAs;c.getTrusted=d.getTrusted;c.valueOf=d.valueOf;a||(c.trustAs=c.getTrusted=function(a,b){return b},c.valueOf=Ya);c.parseAs=function(a,d){var e=b(d);return e.literal&&e.constant?e:b(d,function(b){return c.getTrusted(a,b)})};var e=c.parseAs,f=c.getTrusted,g=c.trustAs;n(la,function(a, +b){var d=F(b);c[fb("parse_as_"+d)]=function(b){return e(a,b)};c[fb("get_trusted_"+d)]=function(b){return f(a,b)};c[fb("trust_as_"+d)]=function(b){return g(a,b)}});return c}]}function qf(){this.$get=["$window","$document",function(a,b){var d={},c=ea((/android (\d+)/.exec(F((a.navigator||{}).userAgent))||[])[1]),e=/Boxee/i.test((a.navigator||{}).userAgent),f=b[0]||{},g,h=/^(Moz|webkit|ms)(?=[A-Z])/,k=f.body&&f.body.style,l=!1,m=!1;if(k){for(var r in k)if(l=h.exec(r)){g=l[0];g=g.substr(0,1).toUpperCase()+ +g.substr(1);break}g||(g="WebkitOpacity"in k&&"webkit");l=!!("transition"in k||g+"Transition"in k);m=!!("animation"in k||g+"Animation"in k);!c||l&&m||(l=E(k.webkitTransition),m=E(k.webkitAnimation))}return{history:!(!a.history||!a.history.pushState||4>c||e),hasEvent:function(a){if("input"===a&&11>=Ha)return!1;if(q(d[a])){var b=f.createElement("div");d[a]="on"+a in b}return d[a]},csp:Ba(),vendorPrefix:g,transitions:l,animations:m,android:c}}]}function sf(){this.$get=["$templateCache","$http","$q","$sce", +function(a,b,d,c){function e(f,g){e.totalPendingRequests++;E(f)&&a.get(f)||(f=c.getTrustedResourceUrl(f));var h=b.defaults&&b.defaults.transformResponse;I(h)?h=h.filter(function(a){return a!==$b}):h===$b&&(h=null);return b.get(f,{cache:a,transformResponse:h})["finally"](function(){e.totalPendingRequests--}).then(function(b){a.put(f,b.data);return b.data},function(a){if(!g)throw ha("tpload",f,a.status,a.statusText);return d.reject(a)})}e.totalPendingRequests=0;return e}]}function tf(){this.$get=["$rootScope", +"$browser","$location",function(a,b,d){return{findBindings:function(a,b,d){a=a.getElementsByClassName("ng-binding");var g=[];n(a,function(a){var c=fa.element(a).data("$binding");c&&n(c,function(c){d?(new RegExp("(^|\\s)"+ud(b)+"(\\s|\\||$)")).test(c)&&g.push(a):-1!=c.indexOf(b)&&g.push(a)})});return g},findModels:function(a,b,d){for(var g=["ng-","data-ng-","ng\\:"],h=0;ha;a=Math.abs(a);var g=Infinity===a;if(!g&&!isFinite(a))return"";var h=a+"",k="",l=!1,m=[];g&&(k="\u221e");if(!g&&-1!==h.indexOf("e")){var r=h.match(/([\d\.]+)e(-?)(\d+)/);r&&"-"==r[2]&&r[3]>e+1?a=0:(k=h,l=!0)}if(g||l)0a&&(k=a.toFixed(e),a=parseFloat(k),k=k.replace(ic,c));else{g=(h.split(ic)[1]||"").length; +q(e)&&(e=Math.min(Math.max(b.minFrac,g),b.maxFrac));a=+(Math.round(+(a.toString()+"e"+e)).toString()+"e"+-e);var g=(""+a).split(ic),h=g[0],g=g[1]||"",r=0,t=b.lgSize,n=b.gSize;if(h.length>=t+n)for(r=h.length-t,l=0;la&&(c="-",a=-a);for(a=""+a;a.length-d)e+=d;0===e&&-12==d&&(e=12);return Gb(e,b,c)}}function Hb(a,b){return function(d,c){var e=d["get"+a](),f=sb(b?"SHORT"+a:a);return c[f][e]}}function Dd(a){var b=(new Date(a,0,1)).getDay();return new Date(a,0,(4>=b?5:12)-b)}function Ed(a){return function(b){var d=Dd(b.getFullYear());b=+new Date(b.getFullYear(),b.getMonth(),b.getDate()+(4-b.getDay()))- ++d;b=1+Math.round(b/6048E5);return Gb(b,a)}}function jc(a,b){return 0>=a.getFullYear()?b.ERAS[0]:b.ERAS[1]}function zd(a){function b(a){var b;if(b=a.match(d)){a=new Date(0);var f=0,g=0,h=b[8]?a.setUTCFullYear:a.setFullYear,k=b[8]?a.setUTCHours:a.setHours;b[9]&&(f=ea(b[9]+b[10]),g=ea(b[9]+b[11]));h.call(a,ea(b[1]),ea(b[2])-1,ea(b[3]));f=ea(b[4]||0)-f;g=ea(b[5]||0)-g;h=ea(b[6]||0);b=Math.round(1E3*parseFloat("0."+(b[7]||0)));k.call(a,f,g,h,b)}return a}var d=/^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/; +return function(c,d,f){var g="",h=[],k,l;d=d||"mediumDate";d=a.DATETIME_FORMATS[d]||d;E(c)&&(c=hg.test(c)?ea(c):b(c));Q(c)&&(c=new Date(c));if(!da(c)||!isFinite(c.getTime()))return c;for(;d;)(l=ig.exec(d))?(h=cb(h,l,1),d=h.pop()):(h.push(d),d=null);var m=c.getTimezoneOffset();f&&(m=vc(f,c.getTimezoneOffset()),c=Pb(c,f,!0));n(h,function(b){k=jg[b];g+=k?k(c,a.DATETIME_FORMATS,m):b.replace(/(^'|'$)/g,"").replace(/''/g,"'")});return g}}function cg(){return function(a,b){q(b)&&(b=2);return db(a,b)}}function dg(){return function(a, +b,d){b=Infinity===Math.abs(Number(b))?Number(b):ea(b);if(isNaN(b))return a;Q(a)&&(a=a.toString());if(!I(a)&&!E(a))return a;d=!d||isNaN(d)?0:ea(d);d=0>d?Math.max(0,a.length+d):d;return 0<=b?a.slice(d,d+b):0===d?a.slice(b,a.length):a.slice(Math.max(0,d+b),d)}}function Bd(a){function b(b,d){d=d?-1:1;return b.map(function(b){var c=1,h=Ya;if(z(b))h=b;else if(E(b)){if("+"==b.charAt(0)||"-"==b.charAt(0))c="-"==b.charAt(0)?-1:1,b=b.substring(1);if(""!==b&&(h=a(b),h.constant))var k=h(),h=function(a){return a[k]}}return{get:h, +descending:c*d}})}function d(a){switch(typeof a){case "number":case "boolean":case "string":return!0;default:return!1}}return function(a,e,f){if(!za(a))return a;I(e)||(e=[e]);0===e.length&&(e=["+"]);var g=b(e,f);g.push({get:function(){return{}},descending:f?-1:1});a=Array.prototype.map.call(a,function(a,b){return{value:a,predicateValues:g.map(function(c){var e=c.get(a);c=typeof e;if(null===e)c="string",e="null";else if("string"===c)e=e.toLowerCase();else if("object"===c)a:{if("function"===typeof e.valueOf&& +(e=e.valueOf(),d(e)))break a;if(qc(e)&&(e=e.toString(),d(e)))break a;e=b}return{value:e,type:c}})}});a.sort(function(a,b){for(var c=0,d=0,e=g.length;db||37<=b&&40>=b||m(a,this,this.value)});if(e.hasEvent("paste"))b.on("paste cut", +m)}b.on("change",k);c.$render=function(){var a=c.$isEmpty(c.$viewValue)?"":c.$viewValue;b.val()!==a&&b.val(a)}}function Kb(a,b){return function(d,c){var e,f;if(da(d))return d;if(E(d)){'"'==d.charAt(0)&&'"'==d.charAt(d.length-1)&&(d=d.substring(1,d.length-1));if(kg.test(d))return new Date(d);a.lastIndex=0;if(e=a.exec(d))return e.shift(),f=c?{yyyy:c.getFullYear(),MM:c.getMonth()+1,dd:c.getDate(),HH:c.getHours(),mm:c.getMinutes(),ss:c.getSeconds(),sss:c.getMilliseconds()/1E3}:{yyyy:1970,MM:1,dd:1,HH:0, +mm:0,ss:0,sss:0},n(e,function(a,c){c=s};g.$observe("min",function(a){s=n(a);h.$validate()})}if(y(g.max)||g.ngMax){var p;h.$validators.max=function(a){return!r(a)||q(p)||d(a)<=p};g.$observe("max",function(a){p=n(a);h.$validate()})}}}function Hd(a,b,d,c){(c.$$hasNativeValidators=H(b[0].validity))&&c.$parsers.push(function(a){var c=b.prop("validity")||{}; +return c.badInput&&!c.typeMismatch?u:a})}function Id(a,b,d,c,e){if(y(c)){a=a(c);if(!a.constant)throw lb("constexpr",d,c);return a(b)}return e}function lc(a,b){a="ngClass"+a;return["$animate",function(d){function c(a,b){var c=[],d=0;a:for(;d(?:<\/\1>|)$/,Tb=/<|&#?\w+;/, +Cf=/<([\w:-]+)/,Df=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,ka={option:[1,'"],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ka.optgroup=ka.option;ka.tbody=ka.tfoot=ka.colgroup=ka.caption=ka.thead;ka.th=ka.td;var Kf=Node.prototype.contains||function(a){return!!(this.compareDocumentPosition(a)& +16)},Pa=N.prototype={ready:function(a){function b(){d||(d=!0,a())}var d=!1;"complete"===X.readyState?setTimeout(b):(this.on("DOMContentLoaded",b),N(S).on("load",b))},toString:function(){var a=[];n(this,function(b){a.push(""+b)});return"["+a.join(", ")+"]"},eq:function(a){return 0<=a?B(this[a]):B(this[this.length+a])},length:0,push:mg,sort:[].sort,splice:[].splice},Cb={};n("multiple selected checked disabled readOnly required open".split(" "),function(a){Cb[F(a)]=a});var Rc={};n("input select option textarea button form details".split(" "), +function(a){Rc[a]=!0});var Zc={ngMinlength:"minlength",ngMaxlength:"maxlength",ngMin:"min",ngMax:"max",ngPattern:"pattern"};n({data:Wb,removeData:vb,hasData:function(a){for(var b in gb[a.ng339])return!0;return!1}},function(a,b){N[b]=a});n({data:Wb,inheritedData:Bb,scope:function(a){return B.data(a,"$scope")||Bb(a.parentNode||a,["$isolateScope","$scope"])},isolateScope:function(a){return B.data(a,"$isolateScope")||B.data(a,"$isolateScopeNoTemplate")},controller:Oc,injector:function(a){return Bb(a, +"$injector")},removeAttr:function(a,b){a.removeAttribute(b)},hasClass:yb,css:function(a,b,d){b=fb(b);if(y(d))a.style[b]=d;else return a.style[b]},attr:function(a,b,d){var c=a.nodeType;if(c!==Na&&2!==c&&8!==c)if(c=F(b),Cb[c])if(y(d))d?(a[b]=!0,a.setAttribute(b,c)):(a[b]=!1,a.removeAttribute(c));else return a[b]||(a.attributes.getNamedItem(b)||x).specified?c:u;else if(y(d))a.setAttribute(b,d);else if(a.getAttribute)return a=a.getAttribute(b,2),null===a?u:a},prop:function(a,b,d){if(y(d))a[b]=d;else return a[b]}, +text:function(){function a(a,d){if(q(d)){var c=a.nodeType;return 1===c||c===Na?a.textContent:""}a.textContent=d}a.$dv="";return a}(),val:function(a,b){if(q(b)){if(a.multiple&&"select"===ta(a)){var d=[];n(a.options,function(a){a.selected&&d.push(a.value||a.text)});return 0===d.length?null:d}return a.value}a.value=b},html:function(a,b){if(q(b))return a.innerHTML;ub(a,!0);a.innerHTML=b},empty:Pc},function(a,b){N.prototype[b]=function(b,c){var e,f,g=this.length;if(a!==Pc&&q(2==a.length&&a!==yb&&a!==Oc? +b:c)){if(H(b)){for(e=0;e <= >= && || ! = |".split(" "),function(a){Lb[a]=!0});var sg={n:"\n",f:"\f",r:"\r", +t:"\t",v:"\v","'":"'",'"':'"'},fc=function(a){this.options=a};fc.prototype={constructor:fc,lex:function(a){this.text=a;this.index=0;for(this.tokens=[];this.index=a&&"string"===typeof a},isWhitespace:function(a){return" "===a||"\r"===a|| +"\t"===a||"\n"===a||"\v"===a||"\u00a0"===a},isIdent:function(a){return"a"<=a&&"z">=a||"A"<=a&&"Z">=a||"_"===a||"$"===a},isExpOperator:function(a){return"-"===a||"+"===a||this.isNumber(a)},throwError:function(a,b,d){d=d||this.index;b=y(b)?"s "+b+"-"+this.index+" ["+this.text.substring(b,d)+"]":" "+d;throw ba("lexerr",a,b,this.text);},readNumber:function(){for(var a="",b=this.index;this.index","<=",">=");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.additive()};return a},additive:function(){for(var a=this.multiplicative(),b;b=this.expect("+","-");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.multiplicative()};return a},multiplicative:function(){for(var a=this.unary(),b;b=this.expect("*","/","%");)a={type:s.BinaryExpression,operator:b.text, +left:a,right:this.unary()};return a},unary:function(){var a;return(a=this.expect("+","-","!"))?{type:s.UnaryExpression,operator:a.text,prefix:!0,argument:this.unary()}:this.primary()},primary:function(){var a;this.expect("(")?(a=this.filterChain(),this.consume(")")):this.expect("[")?a=this.arrayDeclaration():this.expect("{")?a=this.object():this.constants.hasOwnProperty(this.peek().text)?a=bb(this.constants[this.consume().text]):this.peek().identifier?a=this.identifier():this.peek().constant?a=this.constant(): +this.throwError("not a primary expression",this.peek());for(var b;b=this.expect("(","[",".");)"("===b.text?(a={type:s.CallExpression,callee:a,arguments:this.parseArguments()},this.consume(")")):"["===b.text?(a={type:s.MemberExpression,object:a,property:this.expression(),computed:!0},this.consume("]")):"."===b.text?a={type:s.MemberExpression,object:a,property:this.identifier(),computed:!1}:this.throwError("IMPOSSIBLE");return a},filter:function(a){a=[a];for(var b={type:s.CallExpression,callee:this.identifier(), +arguments:a,filter:!0};this.expect(":");)a.push(this.expression());return b},parseArguments:function(){var a=[];if(")"!==this.peekToken().text){do a.push(this.expression());while(this.expect(","))}return a},identifier:function(){var a=this.consume();a.identifier||this.throwError("is not a valid identifier",a);return{type:s.Identifier,name:a.text}},constant:function(){return{type:s.Literal,value:this.consume().value}},arrayDeclaration:function(){var a=[];if("]"!==this.peekToken().text){do{if(this.peek("]"))break; +a.push(this.expression())}while(this.expect(","))}this.consume("]");return{type:s.ArrayExpression,elements:a}},object:function(){var a=[],b;if("}"!==this.peekToken().text){do{if(this.peek("}"))break;b={type:s.Property,kind:"init"};this.peek().constant?b.key=this.constant():this.peek().identifier?b.key=this.identifier():this.throwError("invalid key",this.peek());this.consume(":");b.value=this.expression();a.push(b)}while(this.expect(","))}this.consume("}");return{type:s.ObjectExpression,properties:a}}, +throwError:function(a,b){throw ba("syntax",b.text,a,b.index+1,this.text,this.text.substring(b.index));},consume:function(a){if(0===this.tokens.length)throw ba("ueoe",this.text);var b=this.expect(a);b||this.throwError("is unexpected, expecting ["+a+"]",this.peek());return b},peekToken:function(){if(0===this.tokens.length)throw ba("ueoe",this.text);return this.tokens[0]},peek:function(a,b,d,c){return this.peekAhead(0,a,b,d,c)},peekAhead:function(a,b,d,c,e){if(this.tokens.length>a){a=this.tokens[a]; +var f=a.text;if(f===b||f===d||f===c||f===e||!(b||d||c||e))return a}return!1},expect:function(a,b,d,c){return(a=this.peek(a,b,d,c))?(this.tokens.shift(),a):!1},constants:{"true":{type:s.Literal,value:!0},"false":{type:s.Literal,value:!1},"null":{type:s.Literal,value:null},undefined:{type:s.Literal,value:u},"this":{type:s.ThisExpression}}};rd.prototype={compile:function(a,b){var d=this,c=this.astBuilder.ast(a);this.state={nextId:0,filters:{},expensiveChecks:b,fn:{vars:[],body:[],own:{}},assign:{vars:[], +body:[],own:{}},inputs:[]};W(c,d.$filter);var e="",f;this.stage="assign";if(f=pd(c))this.state.computing="assign",e=this.nextId(),this.recurse(f,e),this.return_(e),e="fn.assign="+this.generateFunction("assign","s,v,l");f=nd(c.body);d.stage="inputs";n(f,function(a,b){var c="fn"+b;d.state[c]={vars:[],body:[],own:{}};d.state.computing=c;var e=d.nextId();d.recurse(a,e);d.return_(e);d.state.inputs.push(c);a.watchId=b});this.state.computing="fn";this.stage="main";this.recurse(c);e='"'+this.USE+" "+this.STRICT+ +'";\n'+this.filterPrefix()+"var fn="+this.generateFunction("fn","s,l,a,i")+e+this.watchFns()+"return fn;";e=(new Function("$filter","ensureSafeMemberName","ensureSafeObject","ensureSafeFunction","getStringValue","ensureSafeAssignContext","ifDefined","plus","text",e))(this.$filter,Va,xa,kd,jd,ld,Zf,md,a);this.state=this.stage=u;e.literal=qd(c);e.constant=c.constant;return e},USE:"use",STRICT:"strict",watchFns:function(){var a=[],b=this.state.inputs,d=this;n(b,function(b){a.push("var "+b+"="+d.generateFunction(b, +"s"))});b.length&&a.push("fn.inputs=["+b.join(",")+"];");return a.join("")},generateFunction:function(a,b){return"function("+b+"){"+this.varsPrefix(a)+this.body(a)+"};"},filterPrefix:function(){var a=[],b=this;n(this.state.filters,function(d,c){a.push(d+"=$filter("+b.escape(c)+")")});return a.length?"var "+a.join(",")+";":""},varsPrefix:function(a){return this.state[a].vars.length?"var "+this.state[a].vars.join(",")+";":""},body:function(a){return this.state[a].body.join("")},recurse:function(a,b, +d,c,e,f){var g,h,k=this,l,m;c=c||x;if(!f&&y(a.watchId))b=b||this.nextId(),this.if_("i",this.lazyAssign(b,this.computedMember("i",a.watchId)),this.lazyRecurse(a,b,d,c,e,!0));else switch(a.type){case s.Program:n(a.body,function(b,c){k.recurse(b.expression,u,u,function(a){h=a});c!==a.body.length-1?k.current().body.push(h,";"):k.return_(h)});break;case s.Literal:m=this.escape(a.value);this.assign(b,m);c(m);break;case s.UnaryExpression:this.recurse(a.argument,u,u,function(a){h=a});m=a.operator+"("+this.ifDefined(h, +0)+")";this.assign(b,m);c(m);break;case s.BinaryExpression:this.recurse(a.left,u,u,function(a){g=a});this.recurse(a.right,u,u,function(a){h=a});m="+"===a.operator?this.plus(g,h):"-"===a.operator?this.ifDefined(g,0)+a.operator+this.ifDefined(h,0):"("+g+")"+a.operator+"("+h+")";this.assign(b,m);c(m);break;case s.LogicalExpression:b=b||this.nextId();k.recurse(a.left,b);k.if_("&&"===a.operator?b:k.not(b),k.lazyRecurse(a.right,b));c(b);break;case s.ConditionalExpression:b=b||this.nextId();k.recurse(a.test, +b);k.if_(b,k.lazyRecurse(a.alternate,b),k.lazyRecurse(a.consequent,b));c(b);break;case s.Identifier:b=b||this.nextId();d&&(d.context="inputs"===k.stage?"s":this.assign(this.nextId(),this.getHasOwnProperty("l",a.name)+"?l:s"),d.computed=!1,d.name=a.name);Va(a.name);k.if_("inputs"===k.stage||k.not(k.getHasOwnProperty("l",a.name)),function(){k.if_("inputs"===k.stage||"s",function(){e&&1!==e&&k.if_(k.not(k.nonComputedMember("s",a.name)),k.lazyAssign(k.nonComputedMember("s",a.name),"{}"));k.assign(b,k.nonComputedMember("s", +a.name))})},b&&k.lazyAssign(b,k.nonComputedMember("l",a.name)));(k.state.expensiveChecks||Fb(a.name))&&k.addEnsureSafeObject(b);c(b);break;case s.MemberExpression:g=d&&(d.context=this.nextId())||this.nextId();b=b||this.nextId();k.recurse(a.object,g,u,function(){k.if_(k.notNull(g),function(){if(a.computed)h=k.nextId(),k.recurse(a.property,h),k.getStringValue(h),k.addEnsureSafeMemberName(h),e&&1!==e&&k.if_(k.not(k.computedMember(g,h)),k.lazyAssign(k.computedMember(g,h),"{}")),m=k.ensureSafeObject(k.computedMember(g, +h)),k.assign(b,m),d&&(d.computed=!0,d.name=h);else{Va(a.property.name);e&&1!==e&&k.if_(k.not(k.nonComputedMember(g,a.property.name)),k.lazyAssign(k.nonComputedMember(g,a.property.name),"{}"));m=k.nonComputedMember(g,a.property.name);if(k.state.expensiveChecks||Fb(a.property.name))m=k.ensureSafeObject(m);k.assign(b,m);d&&(d.computed=!1,d.name=a.property.name)}},function(){k.assign(b,"undefined")});c(b)},!!e);break;case s.CallExpression:b=b||this.nextId();a.filter?(h=k.filter(a.callee.name),l=[],n(a.arguments, +function(a){var b=k.nextId();k.recurse(a,b);l.push(b)}),m=h+"("+l.join(",")+")",k.assign(b,m),c(b)):(h=k.nextId(),g={},l=[],k.recurse(a.callee,h,g,function(){k.if_(k.notNull(h),function(){k.addEnsureSafeFunction(h);n(a.arguments,function(a){k.recurse(a,k.nextId(),u,function(a){l.push(k.ensureSafeObject(a))})});g.name?(k.state.expensiveChecks||k.addEnsureSafeObject(g.context),m=k.member(g.context,g.name,g.computed)+"("+l.join(",")+")"):m=h+"("+l.join(",")+")";m=k.ensureSafeObject(m);k.assign(b,m)}, +function(){k.assign(b,"undefined")});c(b)}));break;case s.AssignmentExpression:h=this.nextId();g={};if(!od(a.left))throw ba("lval");this.recurse(a.left,u,g,function(){k.if_(k.notNull(g.context),function(){k.recurse(a.right,h);k.addEnsureSafeObject(k.member(g.context,g.name,g.computed));k.addEnsureSafeAssignContext(g.context);m=k.member(g.context,g.name,g.computed)+a.operator+h;k.assign(b,m);c(b||m)})},1);break;case s.ArrayExpression:l=[];n(a.elements,function(a){k.recurse(a,k.nextId(),u,function(a){l.push(a)})}); +m="["+l.join(",")+"]";this.assign(b,m);c(m);break;case s.ObjectExpression:l=[];n(a.properties,function(a){k.recurse(a.value,k.nextId(),u,function(b){l.push(k.escape(a.key.type===s.Identifier?a.key.name:""+a.key.value)+":"+b)})});m="{"+l.join(",")+"}";this.assign(b,m);c(m);break;case s.ThisExpression:this.assign(b,"s");c("s");break;case s.NGValueParameter:this.assign(b,"v"),c("v")}},getHasOwnProperty:function(a,b){var d=a+"."+b,c=this.current().own;c.hasOwnProperty(d)||(c[d]=this.nextId(!1,a+"&&("+ +this.escape(b)+" in "+a+")"));return c[d]},assign:function(a,b){if(a)return this.current().body.push(a,"=",b,";"),a},filter:function(a){this.state.filters.hasOwnProperty(a)||(this.state.filters[a]=this.nextId(!0));return this.state.filters[a]},ifDefined:function(a,b){return"ifDefined("+a+","+this.escape(b)+")"},plus:function(a,b){return"plus("+a+","+b+")"},return_:function(a){this.current().body.push("return ",a,";")},if_:function(a,b,d){if(!0===a)b();else{var c=this.current().body;c.push("if(",a, +"){");b();c.push("}");d&&(c.push("else{"),d(),c.push("}"))}},not:function(a){return"!("+a+")"},notNull:function(a){return a+"!=null"},nonComputedMember:function(a,b){return a+"."+b},computedMember:function(a,b){return a+"["+b+"]"},member:function(a,b,d){return d?this.computedMember(a,b):this.nonComputedMember(a,b)},addEnsureSafeObject:function(a){this.current().body.push(this.ensureSafeObject(a),";")},addEnsureSafeMemberName:function(a){this.current().body.push(this.ensureSafeMemberName(a),";")}, +addEnsureSafeFunction:function(a){this.current().body.push(this.ensureSafeFunction(a),";")},addEnsureSafeAssignContext:function(a){this.current().body.push(this.ensureSafeAssignContext(a),";")},ensureSafeObject:function(a){return"ensureSafeObject("+a+",text)"},ensureSafeMemberName:function(a){return"ensureSafeMemberName("+a+",text)"},ensureSafeFunction:function(a){return"ensureSafeFunction("+a+",text)"},getStringValue:function(a){this.assign(a,"getStringValue("+a+",text)")},ensureSafeAssignContext:function(a){return"ensureSafeAssignContext("+ +a+",text)"},lazyRecurse:function(a,b,d,c,e,f){var g=this;return function(){g.recurse(a,b,d,c,e,f)}},lazyAssign:function(a,b){var d=this;return function(){d.assign(a,b)}},stringEscapeRegex:/[^ a-zA-Z0-9]/g,stringEscapeFn:function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)},escape:function(a){if(E(a))return"'"+a.replace(this.stringEscapeRegex,this.stringEscapeFn)+"'";if(Q(a))return a.toString();if(!0===a)return"true";if(!1===a)return"false";if(null===a)return"null";if("undefined"=== +typeof a)return"undefined";throw ba("esc");},nextId:function(a,b){var d="v"+this.state.nextId++;a||this.current().vars.push(d+(b?"="+b:""));return d},current:function(){return this.state[this.state.computing]}};sd.prototype={compile:function(a,b){var d=this,c=this.astBuilder.ast(a);this.expression=a;this.expensiveChecks=b;W(c,d.$filter);var e,f;if(e=pd(c))f=this.recurse(e);e=nd(c.body);var g;e&&(g=[],n(e,function(a,b){var c=d.recurse(a);a.input=c;g.push(c);a.watchId=b}));var h=[];n(c.body,function(a){h.push(d.recurse(a.expression))}); +e=0===c.body.length?function(){}:1===c.body.length?h[0]:function(a,b){var c;n(h,function(d){c=d(a,b)});return c};f&&(e.assign=function(a,b,c){return f(a,c,b)});g&&(e.inputs=g);e.literal=qd(c);e.constant=c.constant;return e},recurse:function(a,b,d){var c,e,f=this,g;if(a.input)return this.inputs(a.input,a.watchId);switch(a.type){case s.Literal:return this.value(a.value,b);case s.UnaryExpression:return e=this.recurse(a.argument),this["unary"+a.operator](e,b);case s.BinaryExpression:return c=this.recurse(a.left), +e=this.recurse(a.right),this["binary"+a.operator](c,e,b);case s.LogicalExpression:return c=this.recurse(a.left),e=this.recurse(a.right),this["binary"+a.operator](c,e,b);case s.ConditionalExpression:return this["ternary?:"](this.recurse(a.test),this.recurse(a.alternate),this.recurse(a.consequent),b);case s.Identifier:return Va(a.name,f.expression),f.identifier(a.name,f.expensiveChecks||Fb(a.name),b,d,f.expression);case s.MemberExpression:return c=this.recurse(a.object,!1,!!d),a.computed||(Va(a.property.name, +f.expression),e=a.property.name),a.computed&&(e=this.recurse(a.property)),a.computed?this.computedMember(c,e,b,d,f.expression):this.nonComputedMember(c,e,f.expensiveChecks,b,d,f.expression);case s.CallExpression:return g=[],n(a.arguments,function(a){g.push(f.recurse(a))}),a.filter&&(e=this.$filter(a.callee.name)),a.filter||(e=this.recurse(a.callee,!0)),a.filter?function(a,c,d,f){for(var r=[],n=0;n":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)>b(c,e,f,g);return d?{value:c}:c}},"binary<=":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)<=b(c,e,f,g);return d?{value:c}:c}},"binary>=":function(a,b,d){return function(c, +e,f,g){c=a(c,e,f,g)>=b(c,e,f,g);return d?{value:c}:c}},"binary&&":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)&&b(c,e,f,g);return d?{value:c}:c}},"binary||":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)||b(c,e,f,g);return d?{value:c}:c}},"ternary?:":function(a,b,d,c){return function(e,f,g,h){e=a(e,f,g,h)?b(e,f,g,h):d(e,f,g,h);return c?{value:e}:e}},value:function(a,b){return function(){return b?{context:u,name:u,value:a}:a}},identifier:function(a,b,d,c,e){return function(f,g,h,k){f= +g&&a in g?g:f;c&&1!==c&&f&&!f[a]&&(f[a]={});g=f?f[a]:u;b&&xa(g,e);return d?{context:f,name:a,value:g}:g}},computedMember:function(a,b,d,c,e){return function(f,g,h,k){var l=a(f,g,h,k),m,n;null!=l&&(m=b(f,g,h,k),m=jd(m),Va(m,e),c&&1!==c&&l&&!l[m]&&(l[m]={}),n=l[m],xa(n,e));return d?{context:l,name:m,value:n}:n}},nonComputedMember:function(a,b,d,c,e,f){return function(g,h,k,l){g=a(g,h,k,l);e&&1!==e&&g&&!g[b]&&(g[b]={});h=null!=g?g[b]:u;(d||Fb(b))&&xa(h,f);return c?{context:g,name:b,value:h}:h}},inputs:function(a, +b){return function(d,c,e,f){return f?f[b]:a(d,c,e)}}};var gc=function(a,b,d){this.lexer=a;this.$filter=b;this.options=d;this.ast=new s(this.lexer);this.astCompiler=d.csp?new sd(this.ast,b):new rd(this.ast,b)};gc.prototype={constructor:gc,parse:function(a){return this.astCompiler.compile(a,this.options.expensiveChecks)}};$();$();var $f=Object.prototype.valueOf,ya=G("$sce"),la={HTML:"html",CSS:"css",URL:"url",RESOURCE_URL:"resourceUrl",JS:"js"},ha=G("$compile"),Y=X.createElement("a"),wd=wa(S.location.href); +xd.$inject=["$document"];Jc.$inject=["$provide"];yd.$inject=["$locale"];Ad.$inject=["$locale"];var ic=".",jg={yyyy:ca("FullYear",4),yy:ca("FullYear",2,0,!0),y:ca("FullYear",1),MMMM:Hb("Month"),MMM:Hb("Month",!0),MM:ca("Month",2,1),M:ca("Month",1,1),dd:ca("Date",2),d:ca("Date",1),HH:ca("Hours",2),H:ca("Hours",1),hh:ca("Hours",2,-12),h:ca("Hours",1,-12),mm:ca("Minutes",2),m:ca("Minutes",1),ss:ca("Seconds",2),s:ca("Seconds",1),sss:ca("Milliseconds",3),EEEE:Hb("Day"),EEE:Hb("Day",!0),a:function(a,b){return 12> +a.getHours()?b.AMPMS[0]:b.AMPMS[1]},Z:function(a,b,d){a=-1*d;return a=(0<=a?"+":"")+(Gb(Math[0=a.getFullYear()?b.ERANAMES[0]:b.ERANAMES[1]}},ig=/((?:[^yMdHhmsaZEwG']+)|(?:'(?:[^']|'')*')|(?:E+|y+|M+|d+|H+|h+|m+|s+|a|Z|G+|w+))(.*)/,hg=/^\-?\d+$/;zd.$inject=["$locale"];var eg=na(F),fg=na(sb);Bd.$inject=["$parse"];var he=na({restrict:"E",compile:function(a,b){if(!b.href&&!b.xlinkHref)return function(a, +b){if("a"===b[0].nodeName.toLowerCase()){var e="[object SVGAnimatedString]"===sa.call(b.prop("href"))?"xlink:href":"href";b.on("click",function(a){b.attr(e)||a.preventDefault()})}}}}),tb={};n(Cb,function(a,b){function d(a,d,e){a.$watch(e[c],function(a){e.$set(b,!!a)})}if("multiple"!=a){var c=va("ng-"+b),e=d;"checked"===a&&(e=function(a,b,e){e.ngModel!==e[c]&&d(a,b,e)});tb[c]=function(){return{restrict:"A",priority:100,link:e}}}});n(Zc,function(a,b){tb[b]=function(){return{priority:100,link:function(a, +c,e){if("ngPattern"===b&&"/"==e.ngPattern.charAt(0)&&(c=e.ngPattern.match(lg))){e.$set("ngPattern",new RegExp(c[1],c[2]));return}a.$watch(e[b],function(a){e.$set(b,a)})}}}});n(["src","srcset","href"],function(a){var b=va("ng-"+a);tb[b]=function(){return{priority:99,link:function(d,c,e){var f=a,g=a;"href"===a&&"[object SVGAnimatedString]"===sa.call(c.prop("href"))&&(g="xlinkHref",e.$attr[g]="xlink:href",f=null);e.$observe(b,function(b){b?(e.$set(g,b),Ha&&f&&c.prop(f,e[g])):"href"===a&&e.$set(g,null)})}}}}); +var Ib={$addControl:x,$$renameControl:function(a,b){a.$name=b},$removeControl:x,$setValidity:x,$setDirty:x,$setPristine:x,$setSubmitted:x};Fd.$inject=["$element","$attrs","$scope","$animate","$interpolate"];var Nd=function(a){return["$timeout","$parse",function(b,d){function c(a){return""===a?d('this[""]').assign:d(a).assign||x}return{name:"form",restrict:a?"EAC":"E",require:["form","^^?form"],controller:Fd,compile:function(d,f){d.addClass(Wa).addClass(mb);var g=f.name?"name":a&&f.ngForm?"ngForm": +!1;return{pre:function(a,d,e,f){var n=f[0];if(!("action"in e)){var q=function(b){a.$apply(function(){n.$commitViewValue();n.$setSubmitted()});b.preventDefault()};d[0].addEventListener("submit",q,!1);d.on("$destroy",function(){b(function(){d[0].removeEventListener("submit",q,!1)},0,!1)})}(f[1]||n.$$parentForm).$addControl(n);var s=g?c(n.$name):x;g&&(s(a,n),e.$observe(g,function(b){n.$name!==b&&(s(a,u),n.$$parentForm.$$renameControl(n,b),s=c(n.$name),s(a,n))}));d.on("$destroy",function(){n.$$parentForm.$removeControl(n); +s(a,u);M(n,Ib)})}}}}}]},ie=Nd(),ve=Nd(!0),kg=/\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+([+-][0-2]\d:[0-5]\d|Z)/,tg=/^[A-Za-z][A-Za-z\d.+-]*:\/*(?:\w+(?::\w+)?@)?[^\s/]+(?::\d+)?(?:\/[\w#!:.?+=&%@\-/]*)?$/,ug=/^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i,vg=/^\s*(\-|\+)?(\d+|(\d*(\.\d*)))([eE][+-]?\d+)?\s*$/,Od=/^(\d{4})-(\d{2})-(\d{2})$/,Pd=/^(\d{4})-(\d\d)-(\d\d)T(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/,mc=/^(\d{4})-W(\d\d)$/,Qd=/^(\d{4})-(\d\d)$/, +Rd=/^(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/,Sd={text:function(a,b,d,c,e,f){jb(a,b,d,c,e,f);kc(c)},date:kb("date",Od,Kb(Od,["yyyy","MM","dd"]),"yyyy-MM-dd"),"datetime-local":kb("datetimelocal",Pd,Kb(Pd,"yyyy MM dd HH mm ss sss".split(" ")),"yyyy-MM-ddTHH:mm:ss.sss"),time:kb("time",Rd,Kb(Rd,["HH","mm","ss","sss"]),"HH:mm:ss.sss"),week:kb("week",mc,function(a,b){if(da(a))return a;if(E(a)){mc.lastIndex=0;var d=mc.exec(a);if(d){var c=+d[1],e=+d[2],f=d=0,g=0,h=0,k=Dd(c),e=7*(e-1);b&&(d=b.getHours(),f= +b.getMinutes(),g=b.getSeconds(),h=b.getMilliseconds());return new Date(c,0,k.getDate()+e,d,f,g,h)}}return NaN},"yyyy-Www"),month:kb("month",Qd,Kb(Qd,["yyyy","MM"]),"yyyy-MM"),number:function(a,b,d,c,e,f){Hd(a,b,d,c);jb(a,b,d,c,e,f);c.$$parserName="number";c.$parsers.push(function(a){return c.$isEmpty(a)?null:vg.test(a)?parseFloat(a):u});c.$formatters.push(function(a){if(!c.$isEmpty(a)){if(!Q(a))throw lb("numfmt",a);a=a.toString()}return a});if(y(d.min)||d.ngMin){var g;c.$validators.min=function(a){return c.$isEmpty(a)|| +q(g)||a>=g};d.$observe("min",function(a){y(a)&&!Q(a)&&(a=parseFloat(a,10));g=Q(a)&&!isNaN(a)?a:u;c.$validate()})}if(y(d.max)||d.ngMax){var h;c.$validators.max=function(a){return c.$isEmpty(a)||q(h)||a<=h};d.$observe("max",function(a){y(a)&&!Q(a)&&(a=parseFloat(a,10));h=Q(a)&&!isNaN(a)?a:u;c.$validate()})}},url:function(a,b,d,c,e,f){jb(a,b,d,c,e,f);kc(c);c.$$parserName="url";c.$validators.url=function(a,b){var d=a||b;return c.$isEmpty(d)||tg.test(d)}},email:function(a,b,d,c,e,f){jb(a,b,d,c,e,f);kc(c); +c.$$parserName="email";c.$validators.email=function(a,b){var d=a||b;return c.$isEmpty(d)||ug.test(d)}},radio:function(a,b,d,c){q(d.name)&&b.attr("name",++nb);b.on("click",function(a){b[0].checked&&c.$setViewValue(d.value,a&&a.type)});c.$render=function(){b[0].checked=d.value==c.$viewValue};d.$observe("value",c.$render)},checkbox:function(a,b,d,c,e,f,g,h){var k=Id(h,a,"ngTrueValue",d.ngTrueValue,!0),l=Id(h,a,"ngFalseValue",d.ngFalseValue,!1);b.on("click",function(a){c.$setViewValue(b[0].checked,a&& +a.type)});c.$render=function(){b[0].checked=c.$viewValue};c.$isEmpty=function(a){return!1===a};c.$formatters.push(function(a){return ma(a,k)});c.$parsers.push(function(a){return a?k:l})},hidden:x,button:x,submit:x,reset:x,file:x},Dc=["$browser","$sniffer","$filter","$parse",function(a,b,d,c){return{restrict:"E",require:["?ngModel"],link:{pre:function(e,f,g,h){h[0]&&(Sd[F(g.type)]||Sd.text)(e,f,g,h[0],b,a,d,c)}}}}],wg=/^(true|false|\d+)$/,Ne=function(){return{restrict:"A",priority:100,compile:function(a, +b){return wg.test(b.ngValue)?function(a,b,e){e.$set("value",a.$eval(e.ngValue))}:function(a,b,e){a.$watch(e.ngValue,function(a){e.$set("value",a)})}}}},ne=["$compile",function(a){return{restrict:"AC",compile:function(b){a.$$addBindingClass(b);return function(b,c,e){a.$$addBindingInfo(c,e.ngBind);c=c[0];b.$watch(e.ngBind,function(a){c.textContent=q(a)?"":a})}}}}],pe=["$interpolate","$compile",function(a,b){return{compile:function(d){b.$$addBindingClass(d);return function(c,d,f){c=a(d.attr(f.$attr.ngBindTemplate)); +b.$$addBindingInfo(d,c.expressions);d=d[0];f.$observe("ngBindTemplate",function(a){d.textContent=q(a)?"":a})}}}}],oe=["$sce","$parse","$compile",function(a,b,d){return{restrict:"A",compile:function(c,e){var f=b(e.ngBindHtml),g=b(e.ngBindHtml,function(a){return(a||"").toString()});d.$$addBindingClass(c);return function(b,c,e){d.$$addBindingInfo(c,e.ngBindHtml);b.$watch(g,function(){c.html(a.getTrustedHtml(f(b))||"")})}}}}],Me=na({restrict:"A",require:"ngModel",link:function(a,b,d,c){c.$viewChangeListeners.push(function(){a.$eval(d.ngChange)})}}), +qe=lc("",!0),se=lc("Odd",0),re=lc("Even",1),te=La({compile:function(a,b){b.$set("ngCloak",u);a.removeClass("ng-cloak")}}),ue=[function(){return{restrict:"A",scope:!0,controller:"@",priority:500}}],Ic={},xg={blur:!0,focus:!0};n("click dblclick mousedown mouseup mouseover mouseout mousemove mouseenter mouseleave keydown keyup keypress submit focus blur copy cut paste".split(" "),function(a){var b=va("ng-"+a);Ic[b]=["$parse","$rootScope",function(d,c){return{restrict:"A",compile:function(e,f){var g= +d(f[b],null,!0);return function(b,d){d.on(a,function(d){var e=function(){g(b,{$event:d})};xg[a]&&c.$$phase?b.$evalAsync(e):b.$apply(e)})}}}}]});var xe=["$animate",function(a){return{multiElement:!0,transclude:"element",priority:600,terminal:!0,restrict:"A",$$tlb:!0,link:function(b,d,c,e,f){var g,h,k;b.$watch(c.ngIf,function(b){b?h||f(function(b,e){h=e;b[b.length++]=X.createComment(" end ngIf: "+c.ngIf+" ");g={clone:b};a.enter(b,d.parent(),d)}):(k&&(k.remove(),k=null),h&&(h.$destroy(),h=null),g&&(k= +rb(g.clone),a.leave(k).then(function(){k=null}),g=null))})}}}],ye=["$templateRequest","$anchorScroll","$animate",function(a,b,d){return{restrict:"ECA",priority:400,terminal:!0,transclude:"element",controller:fa.noop,compile:function(c,e){var f=e.ngInclude||e.src,g=e.onload||"",h=e.autoscroll;return function(c,e,m,n,q){var s=0,v,u,p,C=function(){u&&(u.remove(),u=null);v&&(v.$destroy(),v=null);p&&(d.leave(p).then(function(){u=null}),u=p,p=null)};c.$watch(f,function(f){var m=function(){!y(h)||h&&!c.$eval(h)|| +b()},u=++s;f?(a(f,!0).then(function(a){if(u===s){var b=c.$new();n.template=a;a=q(b,function(a){C();d.enter(a,null,e).then(m)});v=b;p=a;v.$emit("$includeContentLoaded",f);c.$eval(g)}},function(){u===s&&(C(),c.$emit("$includeContentError",f))}),c.$emit("$includeContentRequested",f)):(C(),n.template=null)})}}}}],Pe=["$compile",function(a){return{restrict:"ECA",priority:-400,require:"ngInclude",link:function(b,d,c,e){/SVG/.test(d[0].toString())?(d.empty(),a(Lc(e.template,X).childNodes)(b,function(a){d.append(a)}, +{futureParentElement:d})):(d.html(e.template),a(d.contents())(b))}}}],ze=La({priority:450,compile:function(){return{pre:function(a,b,d){a.$eval(d.ngInit)}}}}),Le=function(){return{restrict:"A",priority:100,require:"ngModel",link:function(a,b,d,c){var e=b.attr(d.$attr.ngList)||", ",f="false"!==d.ngTrim,g=f?U(e):e;c.$parsers.push(function(a){if(!q(a)){var b=[];a&&n(a.split(g),function(a){a&&b.push(f?U(a):a)});return b}});c.$formatters.push(function(a){return I(a)?a.join(e):u});c.$isEmpty=function(a){return!a|| +!a.length}}}},mb="ng-valid",Jd="ng-invalid",Wa="ng-pristine",Jb="ng-dirty",Ld="ng-pending",lb=G("ngModel"),yg=["$scope","$exceptionHandler","$attrs","$element","$parse","$animate","$timeout","$rootScope","$q","$interpolate",function(a,b,d,c,e,f,g,h,k,l){this.$modelValue=this.$viewValue=Number.NaN;this.$$rawModelValue=u;this.$validators={};this.$asyncValidators={};this.$parsers=[];this.$formatters=[];this.$viewChangeListeners=[];this.$untouched=!0;this.$touched=!1;this.$pristine=!0;this.$dirty=!1; +this.$valid=!0;this.$invalid=!1;this.$error={};this.$$success={};this.$pending=u;this.$name=l(d.name||"",!1)(a);this.$$parentForm=Ib;var m=e(d.ngModel),r=m.assign,t=m,s=r,v=null,B,p=this;this.$$setOptions=function(a){if((p.$options=a)&&a.getterSetter){var b=e(d.ngModel+"()"),f=e(d.ngModel+"($$$p)");t=function(a){var c=m(a);z(c)&&(c=b(a));return c};s=function(a,b){z(m(a))?f(a,{$$$p:p.$modelValue}):r(a,p.$modelValue)}}else if(!m.assign)throw lb("nonassign",d.ngModel,ua(c));};this.$render=x;this.$isEmpty= +function(a){return q(a)||""===a||null===a||a!==a};var C=0;Gd({ctrl:this,$element:c,set:function(a,b){a[b]=!0},unset:function(a,b){delete a[b]},$animate:f});this.$setPristine=function(){p.$dirty=!1;p.$pristine=!0;f.removeClass(c,Jb);f.addClass(c,Wa)};this.$setDirty=function(){p.$dirty=!0;p.$pristine=!1;f.removeClass(c,Wa);f.addClass(c,Jb);p.$$parentForm.$setDirty()};this.$setUntouched=function(){p.$touched=!1;p.$untouched=!0;f.setClass(c,"ng-untouched","ng-touched")};this.$setTouched=function(){p.$touched= +!0;p.$untouched=!1;f.setClass(c,"ng-touched","ng-untouched")};this.$rollbackViewValue=function(){g.cancel(v);p.$viewValue=p.$$lastCommittedViewValue;p.$render()};this.$validate=function(){if(!Q(p.$modelValue)||!isNaN(p.$modelValue)){var a=p.$$rawModelValue,b=p.$valid,c=p.$modelValue,d=p.$options&&p.$options.allowInvalid;p.$$runValidators(a,p.$$lastCommittedViewValue,function(e){d||b===e||(p.$modelValue=e?a:u,p.$modelValue!==c&&p.$$writeModelToScope())})}};this.$$runValidators=function(a,b,c){function d(){var c= +!0;n(p.$validators,function(d,e){var g=d(a,b);c=c&&g;f(e,g)});return c?!0:(n(p.$asyncValidators,function(a,b){f(b,null)}),!1)}function e(){var c=[],d=!0;n(p.$asyncValidators,function(e,g){var h=e(a,b);if(!h||!z(h.then))throw lb("$asyncValidators",h);f(g,u);c.push(h.then(function(){f(g,!0)},function(a){d=!1;f(g,!1)}))});c.length?k.all(c).then(function(){g(d)},x):g(!0)}function f(a,b){h===C&&p.$setValidity(a,b)}function g(a){h===C&&c(a)}C++;var h=C;(function(){var a=p.$$parserName||"parse";if(q(B))f(a, +null);else return B||(n(p.$validators,function(a,b){f(b,null)}),n(p.$asyncValidators,function(a,b){f(b,null)})),f(a,B),B;return!0})()?d()?e():g(!1):g(!1)};this.$commitViewValue=function(){var a=p.$viewValue;g.cancel(v);if(p.$$lastCommittedViewValue!==a||""===a&&p.$$hasNativeValidators)p.$$lastCommittedViewValue=a,p.$pristine&&this.$setDirty(),this.$$parseAndValidate()};this.$$parseAndValidate=function(){var b=p.$$lastCommittedViewValue;if(B=q(b)?u:!0)for(var c=0;ce||c.$isEmpty(b)||b.length<=e}}}}},Gc=function(){return{restrict:"A",require:"?ngModel",link:function(a,b,d,c){if(c){var e=0;d.$observe("minlength",function(a){e=ea(a)||0;c.$validate()});c.$validators.minlength=function(a,b){return c.$isEmpty(b)||b.length>=e}}}}};S.angular.bootstrap? +console.log("WARNING: Tried to load angular more than once."):(ce(),ee(fa),fa.module("ngLocale",[],["$provide",function(a){function b(a){a+="";var b=a.indexOf(".");return-1==b?0:a.length-b-1}a.value("$locale",{DATETIME_FORMATS:{AMPMS:["AM","PM"],DAY:"Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),ERANAMES:["Before Christ","Anno Domini"],ERAS:["BC","AD"],FIRSTDAYOFWEEK:6,MONTH:"January February March April May June July August September October November December".split(" "),SHORTDAY:"Sun Mon Tue Wed Thu Fri Sat".split(" "), +SHORTMONTH:"Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),WEEKENDRANGE:[5,6],fullDate:"EEEE, MMMM d, y",longDate:"MMMM d, y",medium:"MMM d, y h:mm:ss a",mediumDate:"MMM d, y",mediumTime:"h:mm:ss a","short":"M/d/yy h:mm a",shortDate:"M/d/yy",shortTime:"h:mm a"},NUMBER_FORMATS:{CURRENCY_SYM:"$",DECIMAL_SEP:".",GROUP_SEP:",",PATTERNS:[{gSize:3,lgSize:3,maxFrac:3,minFrac:0,minInt:1,negPre:"-",negSuf:"",posPre:"",posSuf:""},{gSize:3,lgSize:3,maxFrac:2,minFrac:2,minInt:1,negPre:"-\u00a4", +negSuf:"",posPre:"\u00a4",posSuf:""}]},id:"en-us",pluralCat:function(a,c){var e=a|0,f=c;u===f&&(f=Math.min(b(a),3));Math.pow(10,f);return 1==e&&0==f?"one":"other"}})}]),B(X).ready(function(){Zd(X,yc)}))})(window,document);!window.angular.$$csp().noInlineStyle&&window.angular.element(document.head).prepend(''); +//# sourceMappingURL=angular.min.js.map diff --git a/public/controllers/realTimeLogs/queryBuilder/queryBuilderController.js b/public/controllers/realTimeLogs/queryBuilder/queryBuilderController.js new file mode 100644 index 0000000..05ce3cf --- /dev/null +++ b/public/controllers/realTimeLogs/queryBuilder/queryBuilderController.js @@ -0,0 +1,157 @@ +var app = angular.module('logAggregator'); +var kk=0; +app.controller('liveQueryController', ['$scope', function ($scope) { + var data = '{"group": {"operator": "OR","rules": []}}'; + + function htmlEntities(str) { + return String(str).replace(//g, '>'); + } + + function computed(group) { + if (!group) return ""; + for (var str = "(", i = 0; i < group.rules.length; i++) { + console.log("aaaaa") + console.log($scope.select1); + console.log("len----"+ group.rules.length); + + console.log(group.rules[i]); + i > 0 && (str += " "+group.operator+" "); + kk++; + + str += group.rules[i].group ? + computed(group.rules[i].group) : + group.rules[i].field + " " + htmlEntities(group.rules[i].condition) + " " + group.rules[i].data + " Over " + group.rules[i].accumulator +" " +group.rules[i].value ; + + //if(kk>0) + //{ + // str += group.rules[i].group ? + // computed(group.rules[i].group) : + // + //} + + } + + return " Select "+$scope.select1 + " from " +$scope.stream + " where "+ str + ")"; + + } + + + function computeJson(group){ + if(!group) return ""; + + + var str2="{from: {stream: "+$scope.stream+",where: {server-name: {$regex: '/$server.*/' }}},select: ['dimension1', 'dimension2','measure3','measure4'],eval: {" + + for ( i = 0; i < group.rules.length; i++) { + console.log("aaaaa") + console.log($scope.select1); + console.log("len----"+ group.rules.length); + console.log("STR----"+i+"-----"+str2); + i > 0 && (str2 += ","); + kk++; + + str2 += group.rules[i].group ? + computeJson(group.rules[i].group) : + "val"+i+": {$rolling: { evaluate:"+group.rules[i].field+",over: {"+group.rules[i].accumulator+": "+group.rules[i].value+"},on:"+group.rules[i].data+"}}"; + + //if(kk>0) + //{ + // str += group.rules[i].group ? + // computed(group.rules[i].group) : + // + //} + + } + + + return str2; + + } + + $scope.json = null; + + $scope.filter = JSON.parse(data); + + $scope.$watch('filter', function (newValue) { + $scope.json = JSON.stringify(newValue, null, 2); + $scope.output = computed(newValue.group); + $scope.jsonOutput=computeJson(newValue.group); + }, true); +}]); + +//var queryBuilder = angular.module('queryBuilder', []); +app.directive('queryBuilder', ['$compile', function ($compile) { + return { + restrict: 'E', + scope: { + group: '=' + }, + templateUrl: '/queryBuilderDirective.html', + compile: function (element, attrs) { + var content, directive; + content = element.contents().remove(); + return function (scope, element, attrs) { + scope.operators = [ + { name: 'AND' }, + { name: 'OR' } + ]; + + scope.fields = [ + { name: 'Average' }, + { name: 'Standard Deviation' }, + { name: 'Count' }, + { name: 'Mean' }, + { name: 'Max' } + ]; + + scope.accumulators = [ + { name: 'Count' }, + { name: 'Time' } + + ]; + + scope.conditions = [ + { name: '=' }, + { name: '<>' }, + { name: '<' }, + { name: '<=' }, + { name: '>' }, + { name: '>=' } + ]; + + scope.addCondition = function () { + scope.group.rules.push({ + condition: 'of', + field: 'Firstname', + data: '', + accumulator:'', + value:'' + }); + }; + + scope.removeCondition = function (index) { + scope.group.rules.splice(index, 1); + }; + + scope.addGroup = function () { + scope.group.rules.push({ + group: { + operator: 'AND', + rules: [] + } + }); + }; + + scope.removeGroup = function () { + "group" in scope.$parent && scope.$parent.group.rules.splice(scope.$parent.$index, 1); + }; + + directive || (directive = $compile(content)); + + element.append(directive(scope, function ($compile) { + return $compile; + })); + } + } + } +}]); diff --git a/public/modules/directives/html/aptCache/dropMode.html b/public/modules/directives/html/aptCache/dropMode.html new file mode 100644 index 0000000..1402ee1 --- /dev/null +++ b/public/modules/directives/html/aptCache/dropMode.html @@ -0,0 +1,39 @@ + + +
+ + + +
diff --git a/public/modules/directives/html/aptCache/dropMonth.html b/public/modules/directives/html/aptCache/dropMonth.html new file mode 100644 index 0000000..2444cd2 --- /dev/null +++ b/public/modules/directives/html/aptCache/dropMonth.html @@ -0,0 +1,26 @@ + + + diff --git a/public/modules/directives/html/aptCache/dropYear.html b/public/modules/directives/html/aptCache/dropYear.html new file mode 100644 index 0000000..f778ac9 --- /dev/null +++ b/public/modules/directives/html/aptCache/dropYear.html @@ -0,0 +1,26 @@ + + + diff --git a/public/modules/directives/html/aptCache/radioFilter.html b/public/modules/directives/html/aptCache/radioFilter.html new file mode 100644 index 0000000..5b0cd6a --- /dev/null +++ b/public/modules/directives/html/aptCache/radioFilter.html @@ -0,0 +1,30 @@ + + +
+
+ + + + +
+
diff --git a/public/modules/directives/javascripts/aptCache/dropDownElement.js b/public/modules/directives/javascripts/aptCache/dropDownElement.js new file mode 100644 index 0000000..ecec201 --- /dev/null +++ b/public/modules/directives/javascripts/aptCache/dropDownElement.js @@ -0,0 +1,49 @@ +/*Copyright 2016 Wipro Limited, NIIT Limited + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +This code is written by Ashish Gupta, Tarun Mohandas, Suriya Prakash, Srinivasa Burli, Jishnu Surendran and Bhairavi Balakrishnan*/ + +var dropDownElement=angular.module("dropDownElement",[]); +dropDownElement.controller('dropController',function($scope) +{ + $scope.display = true; + $scope.actionFunction = function(){} +}); +dropDownElement.directive('dropMonth',function(){ + return { + restrict:'E', + templateUrl:'directives/html/aptCache/dropMonth.html' + } +}); + +dropDownElement.directive('dropYear', function(){ + return { + restrict: 'E', + templateUrl:'directives/html/aptCache/dropYear.html' + }; +}); + + +dropDownElement.directive('radioFilter',function(){ + return { + restrict:'E', + templateUrl:'directives/html/aptCache/radioFilter.html' + }; +}); +dropDownElement.directive('dropdownMode', function(){ + return { + restrict: 'E', + templateUrl:'directives/html/aptCache/dropMode.html' + }; +}); diff --git a/public/modules/directives/javascripts/nginx/trafficRate/trafficRate.directive.js b/public/modules/directives/javascripts/nginx/trafficRate/trafficRate.directive.js new file mode 100644 index 0000000..9b3f132 --- /dev/null +++ b/public/modules/directives/javascripts/nginx/trafficRate/trafficRate.directive.js @@ -0,0 +1,271 @@ +/*Copyright 2016 Wipro Limited, NIIT Limited + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +This code is written by Prateek Reddy Yammanuru, Shiva Manognya Kandikuppa, Uday Kumar Mydam, Nirup TNL, Sandeep Reddy G, Deepak Kumar*/ + +angular.module('logAggregator').directive('trafficRateDirective', function() { + return { + restrict : 'E', + replace : false, + scope: { + data: '=', + year: '=', + month: '=' + }, + link: function(scope, elem, attrs) { + scope.$watch('data', function(newVal, oldValue) { + + var margin = {top: 20, right: 20, bottom: 30, left: 70}, + width = 800 - margin.left - margin.right, + height = 300 - margin.top - margin.bottom; + + var parseDate = d3.time.format("%d-%b-%y").parse; + var monthSelection; + + var x = d3.time.scale() + .range([0, width]); + + var y = d3.scale.linear() + .range([height, 0]); + + var color = d3.scale.category10(); + + var xAxis = d3.svg.axis() + .scale(x) + .orient("bottom"); + + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left"); + + function numberOfDays(year,month){ + var d = new Date(year,month,0); + return d.getDate(); + } + + year_selected = scope.year; + month_selected = scope.month; + json = scope.data; + monthSelection = month_selected; + var dates = json[0]; + + if(dates==2){ + d3.select('serverdown') + .html(''); + d3.select('serverdown') + .html('Something went wrong! Please wait while we connect to our servers'); + } + else{ + d3.select('serverdown') + .html(''); + var tempdata = json[1]; + var newdata = []; + var keys = Object.keys(tempdata); + for(i=0; i")(scope)); + + scope.$watch('data', function (data, oldVal) { + d3.select(".wrap .well nodata").html(""); + if(angular.equals({}, data)) { + d3.select("#donut").html(""); + d3.select(".color-legend").html(""); + d3.select(".wrap .well nodata").html("No data Available"); + return; + } else if(data == undefined) { + d3.select(".wrap .well nodata").html("Something went wrong. Please wait while we connect to our servers"); + return; + } + if(angular.equals(data, oldVal)) + return; + var render = function(nestKey, data, userAgentFilters) { + d3.select("#donut").html=""; + d3.select(".color-legend").html=""; + var domainNames = []; + for(var k=0,filterLen = userAgentFilters[nestKey].length; k < filterLen; k++) { + domainNames.push(userAgentFilters[nestKey][k].names) + } + + color.domain(domainNames); + + Donut3D.draw("donut", agentData(), 200, 200, 170, 140, 30, 0.4); + + colorLegendG.call(colorLegend); + + function agentData() { + var result = []; + var keys = Object.keys(data); + for(var i=0, len = keys.length; i < len; i++) { + result.push({label:keys[i], value:data[keys[i]], color:color(keys[i])}) + } + return result; + } + }; + render(scope.criteria, data, scope.userAgentFilters); + }); + + !function(){ + var Donut3D={}; + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return ""+d.data.label+" : " +d.value+ ""; + }); + + function pieTop(d, rx, ry, ir ){ + if(d.endAngle - d.startAngle == 0 ) return "M 0 0"; + var sx = rx*Math.cos(d.startAngle), + sy = ry*Math.sin(d.startAngle), + ex = rx*Math.cos(d.endAngle), + ey = ry*Math.sin(d.endAngle); + + var ret =[]; + ret.push("M",sx,sy,"A",rx,ry,"0",(d.endAngle-d.startAngle > Math.PI? 1: 0),"1",ex,ey,"L",ir*ex,ir*ey); + ret.push("A",ir*rx,ir*ry,"0",(d.endAngle-d.startAngle > Math.PI? 1: 0), "0",ir*sx,ir*sy,"z"); + return ret.join(" "); + } + + function pieOuter(d, rx, ry, h ){ + var startAngle = (d.startAngle > Math.PI ? Math.PI : d.startAngle); + var endAngle = (d.endAngle > Math.PI ? Math.PI : d.endAngle); + + var sx = rx*Math.cos(startAngle), + sy = ry*Math.sin(startAngle), + ex = rx*Math.cos(endAngle), + ey = ry*Math.sin(endAngle); + + var ret =[]; + ret.push("M",sx,h+sy,"A",rx,ry,"0 0 1",ex,h+ey,"L",ex,ey,"A",rx,ry,"0 0 0",sx,sy,"z"); + return ret.join(" "); + } + + function pieInner(d, rx, ry, h, ir ){ + var startAngle = (d.startAngle < Math.PI ? Math.PI : d.startAngle); + var endAngle = (d.endAngle < Math.PI ? Math.PI : d.endAngle); + + var sx = ir*rx*Math.cos(startAngle), + sy = ir*ry*Math.sin(startAngle), + ex = ir*rx*Math.cos(endAngle), + ey = ir*ry*Math.sin(endAngle); + + var ret =[]; + ret.push("M",sx, sy,"A",ir*rx,ir*ry,"0 0 1",ex,ey, "L",ex,h+ey,"A",ir*rx, ir*ry,"0 0 0",sx,h+sy,"z"); + return ret.join(" "); + } + + function getPercent(d){ + return (d.endAngle-d.startAngle > 0.2 ? + Math.round(1000*(d.endAngle-d.startAngle)/(Math.PI*2))/10+'%' : ''); + } + + Donut3D.transition = function(id, data, rx, ry, h, ir){ + function arcTweenInner(a) { + var i = d3.interpolate(this._current, a); + this._current = i(0); + return function(t) { return pieInner(i(t), rx+0.5, ry+0.5, h, ir); }; + } + function arcTweenTop(a) { + var i = d3.interpolate(this._current, a); + this._current = i(0); + return function(t) { return pieTop(i(t), rx, ry, ir); }; + } + function arcTweenOuter(a) { + var i = d3.interpolate(this._current, a); + this._current = i(0); + return function(t) { return pieOuter(i(t), rx-.5, ry-.5, h); }; + } + function textTweenX(a) { + var i = d3.interpolate(this._current, a); + this._current = i(0); + return function(t) { return 0.6*rx*Math.cos(0.5*(i(t).startAngle+i(t).endAngle)); }; + } + function textTweenY(a) { + var i = d3.interpolate(this._current, a); + this._current = i(0); + return function(t) { return 0.6*rx*Math.sin(0.5*(i(t).startAngle+i(t).endAngle)); }; + } + + var _data = d3.layout.pie().sort(null).value(function(d) {return d.value;})(data); + + d3.select("#"+id).selectAll(".innerSlice").data(_data) + .transition().duration(750).attrTween("d", arcTweenInner); + + d3.select("#"+id).selectAll(".topSlice").data(_data) + .transition().duration(750).attrTween("d", arcTweenTop); + + d3.select("#"+id).selectAll(".outerSlice").data(_data) + .transition().duration(750).attrTween("d", arcTweenOuter); + + d3.select("#"+id).selectAll(".percent").data(_data).transition().duration(750) + .attrTween("x",textTweenX).attrTween("y",textTweenY).text(getPercent); + } + + Donut3D.draw=function(id, data, x /*center x*/, y/*center y*/, + rx/*radius x*/, ry/*radius y*/, h/*height*/, ir/*inner radius*/){ + d3.select("#"+id).call(tip, data); + + var _data = d3.layout.pie().sort(null).value(function(d) {return d.value;})(data); + + var slices = d3.select("#"+id).append("g").attr("transform", "translate(" + x + "," + y + ")") + .attr("class", "slices"); + + slices.selectAll(".innerSlice").data(_data).enter().append("path").attr("class", "innerSlice") + .style("fill", function(d) { return d3.hsl(d.data.color).darker(0.7); }) + .attr("d",function(d){ return pieInner(d, rx+0.5,ry+0.5, h, ir);}) + .each(function(d){this._current=d;}) + .on('mouseover', tip.show) + .on('mouseout', tip.hide); + + slices.selectAll(".topSlice").data(_data).enter().append("path").attr("class", "topSlice") + .style("fill", function(d) { return d.data.color; }) + .style("stroke", function(d) { return d.data.color; }) + .attr("d",function(d){ return pieTop(d, rx, ry, ir);}) + .each(function(d){this._current=d;}) + .on('mouseover', tip.show) + .on('mouseout', tip.hide); + + slices.selectAll(".outerSlice").data(_data).enter().append("path").attr("class", "outerSlice") + .style("fill", function(d) { return d3.hsl(d.data.color).darker(0.7); }) + .attr("d",function(d){ return pieOuter(d, rx-.5,ry-.5, h);}) + .each(function(d){this._current=d;}); + + slices.selectAll(".percent").data(_data).enter().append("text").attr("class", "percent") + .attr("x",function(d){ return 0.7*rx*Math.cos(0.5*(d.startAngle+d.endAngle));}) + .attr("y",function(d){ return 0.7*ry*Math.sin(0.5*(d.startAngle+d.endAngle));}) + .text(getPercent).each(function(d){this._current=d;}); + + } + + this.Donut3D = Donut3D; + }(); + } + }; +}]); diff --git a/public/modules/graphs/dataGraphCode.js b/public/modules/graphs/dataGraphCode.js new file mode 100644 index 0000000..c6bf3c0 --- /dev/null +++ b/public/modules/graphs/dataGraphCode.js @@ -0,0 +1,137 @@ +/*Copyright 2016 Wipro Limited, NIIT Limited + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +This code is written by Ashish Gupta, Tarun Mohandas, Suriya Prakash, Srinivasa Burli, Jishnu Surendran and Bhairavi Balakrishnan*/ + +var createDataGraph = function(data) +{ + d3.select('#somegraph').remove(); + var margin = {top: 20, right: 100, bottom: 30, left: 100}, + width = 800 - margin.left - margin.right, + height = 400 - margin.top - margin.bottom; + + var x0 = d3.scale.ordinal() + .rangeRoundBands([0, width], .1); + + var x1 = d3.scale.ordinal(); + + var y = d3.scale.linear() + .range([height, 0]); + + var bytesToString = function (bytes) { + // One way to write it, not the prettiest way to write it. + + var fmt = d3.format('0.0f'); + if (bytes < 1024) { + return fmt(bytes) + ' B'; + } else if (bytes < 1024 * 1024) { + return fmt(bytes / 1024) + ' kB'; + } else { + return fmt(bytes / 1024 / 1024) + ' MB'; + } + } + + + var color = d3.scale.category10(); + + var xAxis = d3.svg.axis() + .scale(x0) + .orient("bottom"); + + var yAxis = d3.svg.axis() + .scale(y) + .tickFormat(bytesToString) + .orient("left"); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return "Size: " + bytesToString(d.value) + ""; + }) + + var svg = d3.select("div #main").append("svg") + .attr('id','somegraph') + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + svg.call(tip); + + var ageNames = d3.keys(data[0]).filter(function(key) { return key !== "period"; }); + data.forEach(function(d) { + d.ages = ageNames.map(function(name) { return {name: name, value: +d[name]}; }); + }); + x0.domain(data.map(function(d) { return d.period; })); + x1.domain(ageNames).rangeRoundBands([0, x0.rangeBand()]); + y.domain([0, d3.max(data, function(d) { return d3.max(d.ages, function(d) { return d.value; }); })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("transform", "rotate(-90)") + .attr("y", 6) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text("Data Rate in MB"); + + var period = svg.selectAll(".period") + .data(data) + .enter().append("g") + .attr("class", "period") + .attr("transform", function(d) { return "translate(" + x0(d.period) + ",0)"; }); + + period.selectAll("rect") + .data(function(d) { return d.ages; }) + .enter().append("rect") + .attr("width", x1.rangeBand()) + .attr("x", function(d) { return x1(d.name); }) + .attr("y", function(d) { return y(d.value); }) + .attr("height", function(d) { return height - y(d.value); }) + .style("fill", function(d) { return color(d.name); }); + + period.selectAll('rect') + .on('mouseover', tip.show) + .on('mouseout', tip.hide); + var legend = svg.selectAll(".legend") + .data(ageNames.slice().reverse()) + .enter().append("g") + .attr("class", "legend") + .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + + legend.append("rect") + .attr("x", width - 18) + .attr("width", 18) + .attr("height", 18) + .style("fill", color) + .attr("transform", "translate(100,-20)"); + + legend.append("text") + .attr("x", width - 24) + .attr("y", 9) + .attr("dy", ".35em") + .style("text-anchor", "end") + .text(function(d) { return d; }) + .attr("transform", "translate(100,-20)"); + + + +} diff --git a/public/modules/graphs/gitOtherGraphs.js b/public/modules/graphs/gitOtherGraphs.js new file mode 100644 index 0000000..85ed37b --- /dev/null +++ b/public/modules/graphs/gitOtherGraphs.js @@ -0,0 +1,227 @@ +function plot_pie_chart(data,graph_details){ + console.log("we are inside the plotting the pie chart"); + console.log(data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + + var width = (0.85*parseInt(element.clientWidth)) , + height = 470, + radius = Math.min(width, height) / 2; + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + + var arc = d3.svg.arc() + .outerRadius(radius - 10) + .innerRadius(radius - radius); + + var pie = d3.layout.pie() + .sort(null) + .value(function(d) { return d[graph_details["measure"]["primary"]["function"]["argument"]]; }); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return ""+"No of Commits in"+" "+ d.data["_id"][graph_details["row"]["name"]] +" :"+" " + d.data[graph_details["measure"]["primary"]["function"]["argument"]] + ""; + }) + + // var grouped_data=graph_details["columns"][0]["values"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width) + .attr("height", height) + .append("g") + .attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); + + svg.call(tip); + + // color.domain(grouped_data); + + // data.forEach(function(d) { + // var y0 = 0; + // d.ages = color.domain().map(function(name) { return {name: name, y0: y0, y1: y0 += +d[name]}; }); + // d.total = d.ages[d.ages.length - 1].y1; + // }); + + + var g = svg.selectAll(".arc") + .data(pie(data)) + .enter().append("g") + .attr("class", "arc") + .on('mouseover', tip.show) + .on('mouseout', tip.hide); + + g.append("path").transition() + .delay(500) + .attr("d", arc) + .style("fill", function(d) { return color( d.data["_id"][graph_details["row"]["name"]]); }); + + // g.append("text") + // // .attr("transform", function(d) { return "translate(" + arc.centriod(d) + ")"; }) + // .attr("transform", function(d) { + // var c = arc.centroid(d), + // x = c[0], + // y = c[1], + // // pythagorean theorem for hypotenuse + // h = Math.sqrt(x*x + y*y); + // return "translate(" + (x/h * radius) + ',' + + // (y/h * radius) + ")"; + // }) + // .attr("dy", ".35em") + // .text(function(d) { return d["data"]["_id"][graph_details["row"]["name"]]}).attr("font-size",12); + // //}); + + // legend = svg.selectAll(".legend") + // .data(some.slice().reverse()) + // .enter().append("g") + // .attr("class", "legend") + // .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + // + // legend.append("rect") + // .attr("x", width - 18) + // .attr("width", 18) + // .attr("height", 18) + // .style("fill", color); + // + // legend.append("text") + // .attr("x", width - 24) + // .attr("y", 9) + // .attr("dy", ".35em") + // .style("text-anchor", "end") + // .text(function(d) { return d; }); + + + function type(d) { + d.recommendCount = +d.recommendCount; + return d; + } +} + +function plot_multibar_graph(data,graph_details){ + console.log("plot_multibar",data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + var margin = {top: 20, right: 60, bottom: 80, left: 60}, + width = (0.89*parseInt(element.clientWidth)) - margin.left - margin.right, + height = 470 - margin.top - margin.bottom; + + var x0 = d3.scale.ordinal() + .rangeRoundBands([0, width], .1); + + var x1 = d3.scale.ordinal(); + + var y = d3.scale.linear() + .range([height, 0]); + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + var xAxis = d3.svg.axis() + .scale(x0) + .orient("bottom"); + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left") + .innerTickSize(-width); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return " " +graph_details["measure"]["primary"]["displayName"]+" "+ d.name + " : " + (d.value) +""; + }) + + var grouped_data=graph_details["columns"][0]["name"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + svg.call(tip); + + //if (error) throw error; + + var ageNames = d3.keys(data[0]).filter(function(key) { return (key !== "x_dim")&&(key !== "ages")&&(key !== "total"); }); + console.log("agenames"+ageNames); + + data.forEach(function(d) { + d.ages = ageNames.map(function(name) { return {name: name, value: +d[name]}; }); + }); + + x0.domain(data.map(function(d) { return d["x_dim"]; })); + x1.domain(ageNames).rangeRoundBands([0, x0.rangeBand()]); + y.domain([0, d3.max(data, function(d) { return d3.max(d.ages, function(d) { return d.value; }); })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis) + .selectAll('text') + .attr("font-size",15); + + svg.append("text") + .attr("font-size",15) + .attr("x",width-70) + .attr("y",height+75) + .attr("fill", "#aaa") + .style("text-anchor", "end") + .text(graph_details["row"]["displayName"]); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("font-size",15) + .attr("transform", "rotate(-90)") + .attr("y", -60) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text(graph_details["measure"]["primary"]["displayName"]); + + var state = svg.selectAll(".state") + .data(data) + .enter().append("g") + .attr("class", "state") + .attr("transform", function(d) { return "translate(" + x0(d["x_dim"]) + ",0)"; }); + + state.selectAll("rect") + .data(function(d) { return d.ages; }) + .enter().append("rect") + .attr("class","bar") + .on('mouseover', tip.show) + .on('mouseout', tip.hide) + .transition() + .delay(500) + .attr("width", x1.rangeBand()) + .attr("x", function(d) { return x1(d.name); }) + .attr("y", function(d) { return y(d.value); }) + .attr("height", function(d) { return height - y(d.value); }) + .style("fill", function(d) { return color(d.name); }); + + // var legend = svg.selectAll(".legend") + // .data(ageNames.slice().reverse()) + // .enter().append("g") + // .attr("class", "legend") + // .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + // + // legend.append("rect") + // .attr("x", width - 18) + // .attr("width", 18) + // .attr("height", 18) + // .style("fill", color); + // + // legend.append("text") + // .attr("x", width - 24) + // .attr("y", 9) + // .attr("dy", ".35em") + // .style("text-anchor", "end") + // .text(function(d) { return d; }); + +} diff --git a/public/modules/graphs/gitOtherGraphs.js.orig b/public/modules/graphs/gitOtherGraphs.js.orig new file mode 100644 index 0000000..c11d520 --- /dev/null +++ b/public/modules/graphs/gitOtherGraphs.js.orig @@ -0,0 +1,249 @@ +function plot_pie_chart(data,graph_details){ + console.log("we are inside the plotting the pie chart"); + console.log(data); + console.log("graph_details",graph_details) + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + + var width = (0.85*parseInt(element.clientWidth)) , + height = 470, + radius = Math.min(width, height) / 2; + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + + var arc = d3.svg.arc() + .outerRadius(radius - 10) + .innerRadius(radius - radius); + + var pie = d3.layout.pie() + .sort(null) + .value(function(d) { return d[graph_details["measure"]["primary"]["function"]["argument"]]; }); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return ""+"No of Commits in"+" "+ d.data["_id"][graph_details["row"]["name"]] +" :"+" " + d.data[graph_details["measure"]["primary"]["function"]["argument"]] + ""; + }) + + var grouped_data=graph_details["columns"][0]["values"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width) + .attr("height", height) + .append("g") + .attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); + + svg.call(tip); + + color.domain(grouped_data); + + data.forEach(function(d) { + var y0 = 0; + d.ages = color.domain().map(function(name) { return {name: name, y0: y0, y1: y0 += +d[name]}; }); + d.total = d.ages[d.ages.length - 1].y1; + }); + + + var g = svg.selectAll(".arc") + .data(pie(data)) + .enter().append("g") + .attr("class", "arc") + .on('mouseover', tip.show) + .on('mouseout', tip.hide); + + g.append("path").transition() + .delay(500) + .attr("d", arc) + .style("fill", function(d) { return color( d.data["_id"][graph_details["row"]["name"]]); }); + + // g.append("text") + // // .attr("transform", function(d) { return "translate(" + arc.centriod(d) + ")"; }) + // .attr("transform", function(d) { + // var c = arc.centroid(d), + // x = c[0], + // y = c[1], + // // pythagorean theorem for hypotenuse + // h = Math.sqrt(x*x + y*y); + // return "translate(" + (x/h * radius) + ',' + + // (y/h * radius) + ")"; + // }) + // .attr("dy", ".35em") + // .text(function(d) { return d["data"]["_id"][graph_details["row"]["name"]]}).attr("font-size",12); + // //}); + +<<<<<<< HEAD + // legend = svg.selectAll(".legend") + // .data(d[graph_details["measure"]["primary"]["function"]["argument"]].slice().reverse()) + // .enter().append("g") + // .attr("class", "legend") + // .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + // + // legend.append("rect") + // .attr("x", width - 18) + // .attr("width", 18) + // .attr("height", 18) + // .style("fill", color); + // + // legend.append("text") + // .attr("x", width - 24) + // .attr("y", 9) + // .attr("dy", ".35em") + // .style("text-anchor", "end") + // .text(function(d) { return d; }); +======= + legend = svg.selectAll(".legend") + .data(color.domain().slice().reverse()) + .enter().append("g") + .attr("class", "legend") + .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + + legend.append("rect") + .attr("x", width - 18) + .attr("width", 18) + .attr("height", 18) + .style("fill", color); + + legend.append("text") + .attr("x", width - 24) + .attr("y", 9) + .attr("dy", ".35em") + .style("text-anchor", "end") + .text(function(d) { return d; }); +>>>>>>> 3a738e72661ce0f72f892c67f562c69ccd6bf89a + + + function type(d) { + d.recommendCount = +d.recommendCount; + return d; + } +} + +function plot_multibar_graph(data,graph_details){ + console.log("plot_multibar",data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + var margin = {top: 20, right: 60, bottom: 80, left: 60}, + width = (0.89*parseInt(element.clientWidth)) - margin.left - margin.right, + height = 470 - margin.top - margin.bottom; + + var x0 = d3.scale.ordinal() + .rangeRoundBands([0, width], .1); + + var x1 = d3.scale.ordinal(); + + var y = d3.scale.linear() + .range([height, 0]); + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + var xAxis = d3.svg.axis() + .scale(x0) + .orient("bottom"); + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left") + .innerTickSize(-width); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return " " +graph_details["measure"]["primary"]["displayName"]+" "+ d.name + " : " + (d.value) +""; + }) + + var grouped_data=graph_details["columns"][0]["name"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + svg.call(tip); + + //if (error) throw error; + + var ageNames = d3.keys(data[0]).filter(function(key) { return (key !== "x_dim")&&(key !== "ages")&&(key !== "total"); }); + console.log("agenames"+ageNames); + + data.forEach(function(d) { + d.ages = ageNames.map(function(name) { return {name: name, value: +d[name]}; }); + }); + + x0.domain(data.map(function(d) { return d["x_dim"]; })); + x1.domain(ageNames).rangeRoundBands([0, x0.rangeBand()]); + y.domain([0, d3.max(data, function(d) { return d3.max(d.ages, function(d) { return d.value; }); })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis) + .selectAll('text') + .attr("font-size",15); + + svg.append("text") + .attr("font-size",15) + .attr("x",width-70) + .attr("y",height+75) + .attr("fill", "#aaa") + .style("text-anchor", "end") + .text(graph_details["row"]["displayName"]); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("font-size",15) + .attr("transform", "rotate(-90)") + .attr("y", -60) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text(graph_details["measure"]["primary"]["displayName"]); + + var state = svg.selectAll(".state") + .data(data) + .enter().append("g") + .attr("class", "state") + .attr("transform", function(d) { return "translate(" + x0(d["x_dim"]) + ",0)"; }); + + state.selectAll("rect") + .data(function(d) { return d.ages; }) + .enter().append("rect") + .attr("class","bar") + .on('mouseover', tip.show) + .on('mouseout', tip.hide) + .transition() + .delay(500) + .attr("width", x1.rangeBand()) + .attr("x", function(d) { return x1(d.name); }) + .attr("y", function(d) { return y(d.value); }) + .attr("height", function(d) { return height - y(d.value); }) + .style("fill", function(d) { return color(d.name); }); + + // var legend = svg.selectAll(".legend") + // .data(ageNames.slice().reverse()) + // .enter().append("g") + // .attr("class", "legend") + // .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + // + // legend.append("rect") + // .attr("x", width - 18) + // .attr("width", 18) + // .attr("height", 18) + // .style("fill", color); + // + // legend.append("text") + // .attr("x", width - 24) + // .attr("y", 9) + // .attr("dy", ".35em") + // .style("text-anchor", "end") + // .text(function(d) { return d; }); + +} diff --git a/public/modules/graphs/gitOtherGraphs_BACKUP_4867.js b/public/modules/graphs/gitOtherGraphs_BACKUP_4867.js new file mode 100644 index 0000000..c11d520 --- /dev/null +++ b/public/modules/graphs/gitOtherGraphs_BACKUP_4867.js @@ -0,0 +1,249 @@ +function plot_pie_chart(data,graph_details){ + console.log("we are inside the plotting the pie chart"); + console.log(data); + console.log("graph_details",graph_details) + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + + var width = (0.85*parseInt(element.clientWidth)) , + height = 470, + radius = Math.min(width, height) / 2; + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + + var arc = d3.svg.arc() + .outerRadius(radius - 10) + .innerRadius(radius - radius); + + var pie = d3.layout.pie() + .sort(null) + .value(function(d) { return d[graph_details["measure"]["primary"]["function"]["argument"]]; }); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return ""+"No of Commits in"+" "+ d.data["_id"][graph_details["row"]["name"]] +" :"+" " + d.data[graph_details["measure"]["primary"]["function"]["argument"]] + ""; + }) + + var grouped_data=graph_details["columns"][0]["values"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width) + .attr("height", height) + .append("g") + .attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); + + svg.call(tip); + + color.domain(grouped_data); + + data.forEach(function(d) { + var y0 = 0; + d.ages = color.domain().map(function(name) { return {name: name, y0: y0, y1: y0 += +d[name]}; }); + d.total = d.ages[d.ages.length - 1].y1; + }); + + + var g = svg.selectAll(".arc") + .data(pie(data)) + .enter().append("g") + .attr("class", "arc") + .on('mouseover', tip.show) + .on('mouseout', tip.hide); + + g.append("path").transition() + .delay(500) + .attr("d", arc) + .style("fill", function(d) { return color( d.data["_id"][graph_details["row"]["name"]]); }); + + // g.append("text") + // // .attr("transform", function(d) { return "translate(" + arc.centriod(d) + ")"; }) + // .attr("transform", function(d) { + // var c = arc.centroid(d), + // x = c[0], + // y = c[1], + // // pythagorean theorem for hypotenuse + // h = Math.sqrt(x*x + y*y); + // return "translate(" + (x/h * radius) + ',' + + // (y/h * radius) + ")"; + // }) + // .attr("dy", ".35em") + // .text(function(d) { return d["data"]["_id"][graph_details["row"]["name"]]}).attr("font-size",12); + // //}); + +<<<<<<< HEAD + // legend = svg.selectAll(".legend") + // .data(d[graph_details["measure"]["primary"]["function"]["argument"]].slice().reverse()) + // .enter().append("g") + // .attr("class", "legend") + // .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + // + // legend.append("rect") + // .attr("x", width - 18) + // .attr("width", 18) + // .attr("height", 18) + // .style("fill", color); + // + // legend.append("text") + // .attr("x", width - 24) + // .attr("y", 9) + // .attr("dy", ".35em") + // .style("text-anchor", "end") + // .text(function(d) { return d; }); +======= + legend = svg.selectAll(".legend") + .data(color.domain().slice().reverse()) + .enter().append("g") + .attr("class", "legend") + .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + + legend.append("rect") + .attr("x", width - 18) + .attr("width", 18) + .attr("height", 18) + .style("fill", color); + + legend.append("text") + .attr("x", width - 24) + .attr("y", 9) + .attr("dy", ".35em") + .style("text-anchor", "end") + .text(function(d) { return d; }); +>>>>>>> 3a738e72661ce0f72f892c67f562c69ccd6bf89a + + + function type(d) { + d.recommendCount = +d.recommendCount; + return d; + } +} + +function plot_multibar_graph(data,graph_details){ + console.log("plot_multibar",data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + var margin = {top: 20, right: 60, bottom: 80, left: 60}, + width = (0.89*parseInt(element.clientWidth)) - margin.left - margin.right, + height = 470 - margin.top - margin.bottom; + + var x0 = d3.scale.ordinal() + .rangeRoundBands([0, width], .1); + + var x1 = d3.scale.ordinal(); + + var y = d3.scale.linear() + .range([height, 0]); + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + var xAxis = d3.svg.axis() + .scale(x0) + .orient("bottom"); + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left") + .innerTickSize(-width); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return " " +graph_details["measure"]["primary"]["displayName"]+" "+ d.name + " : " + (d.value) +""; + }) + + var grouped_data=graph_details["columns"][0]["name"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + svg.call(tip); + + //if (error) throw error; + + var ageNames = d3.keys(data[0]).filter(function(key) { return (key !== "x_dim")&&(key !== "ages")&&(key !== "total"); }); + console.log("agenames"+ageNames); + + data.forEach(function(d) { + d.ages = ageNames.map(function(name) { return {name: name, value: +d[name]}; }); + }); + + x0.domain(data.map(function(d) { return d["x_dim"]; })); + x1.domain(ageNames).rangeRoundBands([0, x0.rangeBand()]); + y.domain([0, d3.max(data, function(d) { return d3.max(d.ages, function(d) { return d.value; }); })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis) + .selectAll('text') + .attr("font-size",15); + + svg.append("text") + .attr("font-size",15) + .attr("x",width-70) + .attr("y",height+75) + .attr("fill", "#aaa") + .style("text-anchor", "end") + .text(graph_details["row"]["displayName"]); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("font-size",15) + .attr("transform", "rotate(-90)") + .attr("y", -60) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text(graph_details["measure"]["primary"]["displayName"]); + + var state = svg.selectAll(".state") + .data(data) + .enter().append("g") + .attr("class", "state") + .attr("transform", function(d) { return "translate(" + x0(d["x_dim"]) + ",0)"; }); + + state.selectAll("rect") + .data(function(d) { return d.ages; }) + .enter().append("rect") + .attr("class","bar") + .on('mouseover', tip.show) + .on('mouseout', tip.hide) + .transition() + .delay(500) + .attr("width", x1.rangeBand()) + .attr("x", function(d) { return x1(d.name); }) + .attr("y", function(d) { return y(d.value); }) + .attr("height", function(d) { return height - y(d.value); }) + .style("fill", function(d) { return color(d.name); }); + + // var legend = svg.selectAll(".legend") + // .data(ageNames.slice().reverse()) + // .enter().append("g") + // .attr("class", "legend") + // .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + // + // legend.append("rect") + // .attr("x", width - 18) + // .attr("width", 18) + // .attr("height", 18) + // .style("fill", color); + // + // legend.append("text") + // .attr("x", width - 24) + // .attr("y", 9) + // .attr("dy", ".35em") + // .style("text-anchor", "end") + // .text(function(d) { return d; }); + +} diff --git a/public/modules/graphs/gitOtherGraphs_BACKUP_4973.js b/public/modules/graphs/gitOtherGraphs_BACKUP_4973.js new file mode 100644 index 0000000..c11d520 --- /dev/null +++ b/public/modules/graphs/gitOtherGraphs_BACKUP_4973.js @@ -0,0 +1,249 @@ +function plot_pie_chart(data,graph_details){ + console.log("we are inside the plotting the pie chart"); + console.log(data); + console.log("graph_details",graph_details) + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + + var width = (0.85*parseInt(element.clientWidth)) , + height = 470, + radius = Math.min(width, height) / 2; + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + + var arc = d3.svg.arc() + .outerRadius(radius - 10) + .innerRadius(radius - radius); + + var pie = d3.layout.pie() + .sort(null) + .value(function(d) { return d[graph_details["measure"]["primary"]["function"]["argument"]]; }); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return ""+"No of Commits in"+" "+ d.data["_id"][graph_details["row"]["name"]] +" :"+" " + d.data[graph_details["measure"]["primary"]["function"]["argument"]] + ""; + }) + + var grouped_data=graph_details["columns"][0]["values"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width) + .attr("height", height) + .append("g") + .attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); + + svg.call(tip); + + color.domain(grouped_data); + + data.forEach(function(d) { + var y0 = 0; + d.ages = color.domain().map(function(name) { return {name: name, y0: y0, y1: y0 += +d[name]}; }); + d.total = d.ages[d.ages.length - 1].y1; + }); + + + var g = svg.selectAll(".arc") + .data(pie(data)) + .enter().append("g") + .attr("class", "arc") + .on('mouseover', tip.show) + .on('mouseout', tip.hide); + + g.append("path").transition() + .delay(500) + .attr("d", arc) + .style("fill", function(d) { return color( d.data["_id"][graph_details["row"]["name"]]); }); + + // g.append("text") + // // .attr("transform", function(d) { return "translate(" + arc.centriod(d) + ")"; }) + // .attr("transform", function(d) { + // var c = arc.centroid(d), + // x = c[0], + // y = c[1], + // // pythagorean theorem for hypotenuse + // h = Math.sqrt(x*x + y*y); + // return "translate(" + (x/h * radius) + ',' + + // (y/h * radius) + ")"; + // }) + // .attr("dy", ".35em") + // .text(function(d) { return d["data"]["_id"][graph_details["row"]["name"]]}).attr("font-size",12); + // //}); + +<<<<<<< HEAD + // legend = svg.selectAll(".legend") + // .data(d[graph_details["measure"]["primary"]["function"]["argument"]].slice().reverse()) + // .enter().append("g") + // .attr("class", "legend") + // .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + // + // legend.append("rect") + // .attr("x", width - 18) + // .attr("width", 18) + // .attr("height", 18) + // .style("fill", color); + // + // legend.append("text") + // .attr("x", width - 24) + // .attr("y", 9) + // .attr("dy", ".35em") + // .style("text-anchor", "end") + // .text(function(d) { return d; }); +======= + legend = svg.selectAll(".legend") + .data(color.domain().slice().reverse()) + .enter().append("g") + .attr("class", "legend") + .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + + legend.append("rect") + .attr("x", width - 18) + .attr("width", 18) + .attr("height", 18) + .style("fill", color); + + legend.append("text") + .attr("x", width - 24) + .attr("y", 9) + .attr("dy", ".35em") + .style("text-anchor", "end") + .text(function(d) { return d; }); +>>>>>>> 3a738e72661ce0f72f892c67f562c69ccd6bf89a + + + function type(d) { + d.recommendCount = +d.recommendCount; + return d; + } +} + +function plot_multibar_graph(data,graph_details){ + console.log("plot_multibar",data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + var margin = {top: 20, right: 60, bottom: 80, left: 60}, + width = (0.89*parseInt(element.clientWidth)) - margin.left - margin.right, + height = 470 - margin.top - margin.bottom; + + var x0 = d3.scale.ordinal() + .rangeRoundBands([0, width], .1); + + var x1 = d3.scale.ordinal(); + + var y = d3.scale.linear() + .range([height, 0]); + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + var xAxis = d3.svg.axis() + .scale(x0) + .orient("bottom"); + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left") + .innerTickSize(-width); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return " " +graph_details["measure"]["primary"]["displayName"]+" "+ d.name + " : " + (d.value) +""; + }) + + var grouped_data=graph_details["columns"][0]["name"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + svg.call(tip); + + //if (error) throw error; + + var ageNames = d3.keys(data[0]).filter(function(key) { return (key !== "x_dim")&&(key !== "ages")&&(key !== "total"); }); + console.log("agenames"+ageNames); + + data.forEach(function(d) { + d.ages = ageNames.map(function(name) { return {name: name, value: +d[name]}; }); + }); + + x0.domain(data.map(function(d) { return d["x_dim"]; })); + x1.domain(ageNames).rangeRoundBands([0, x0.rangeBand()]); + y.domain([0, d3.max(data, function(d) { return d3.max(d.ages, function(d) { return d.value; }); })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis) + .selectAll('text') + .attr("font-size",15); + + svg.append("text") + .attr("font-size",15) + .attr("x",width-70) + .attr("y",height+75) + .attr("fill", "#aaa") + .style("text-anchor", "end") + .text(graph_details["row"]["displayName"]); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("font-size",15) + .attr("transform", "rotate(-90)") + .attr("y", -60) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text(graph_details["measure"]["primary"]["displayName"]); + + var state = svg.selectAll(".state") + .data(data) + .enter().append("g") + .attr("class", "state") + .attr("transform", function(d) { return "translate(" + x0(d["x_dim"]) + ",0)"; }); + + state.selectAll("rect") + .data(function(d) { return d.ages; }) + .enter().append("rect") + .attr("class","bar") + .on('mouseover', tip.show) + .on('mouseout', tip.hide) + .transition() + .delay(500) + .attr("width", x1.rangeBand()) + .attr("x", function(d) { return x1(d.name); }) + .attr("y", function(d) { return y(d.value); }) + .attr("height", function(d) { return height - y(d.value); }) + .style("fill", function(d) { return color(d.name); }); + + // var legend = svg.selectAll(".legend") + // .data(ageNames.slice().reverse()) + // .enter().append("g") + // .attr("class", "legend") + // .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + // + // legend.append("rect") + // .attr("x", width - 18) + // .attr("width", 18) + // .attr("height", 18) + // .style("fill", color); + // + // legend.append("text") + // .attr("x", width - 24) + // .attr("y", 9) + // .attr("dy", ".35em") + // .style("text-anchor", "end") + // .text(function(d) { return d; }); + +} diff --git a/public/modules/graphs/gitOtherGraphs_BASE_4867.js b/public/modules/graphs/gitOtherGraphs_BASE_4867.js new file mode 100644 index 0000000..f2e32ba --- /dev/null +++ b/public/modules/graphs/gitOtherGraphs_BASE_4867.js @@ -0,0 +1,216 @@ + +function plot_pie_chart(data,graph_details){ + console.log("we are inside the plotting the pie chart"); + console.log(data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + + var width = (0.85*parseInt(element.clientWidth)) , + height = 470, + radius = Math.min(width, height) / 2; + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + + var arc = d3.svg.arc() + .outerRadius(radius - 10) + .innerRadius(radius - radius); + + var pie = d3.layout.pie() + .sort(null) + .value(function(d) { return d[graph_details["measure"]["primary"]["function"]["argument"]]; }); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return ""+"No of Commits in"+" "+ d.data["_id"][graph_details["row"]["name"]] +" :"+" " + d.data[graph_details["measure"]["primary"]["function"]["argument"]] + ""; + }) + + var svg = d3.select("#graph1").append("svg") + .attr("width", width) + .attr("height", height) + .append("g") + .attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); + + svg.call(tip); + + var g = svg.selectAll(".arc") + .data(pie(data)) + .enter().append("g") + .attr("class", "arc") + .on('mouseover', tip.show) + .on('mouseout', tip.hide); + + g.append("path").transition() + .delay(500) + .attr("d", arc) + .style("fill", function(d) { return color( d.data["_id"][graph_details["row"]["name"]]); }); + + // g.append("text") + // // .attr("transform", function(d) { return "translate(" + arc.centriod(d) + ")"; }) + // .attr("transform", function(d) { + // var c = arc.centroid(d), + // x = c[0], + // y = c[1], + // // pythagorean theorem for hypotenuse + // h = Math.sqrt(x*x + y*y); + // return "translate(" + (x/h * radius) + ',' + + // (y/h * radius) + ")"; + // }) + // .attr("dy", ".35em") + // .text(function(d) { return d["data"]["_id"][graph_details["row"]["name"]]}).attr("font-size",12); + // //}); + + legend = svg.selectAll(".legend") + .data(d[graph_details["measure"]["primary"]["function"]["argument"]].slice().reverse()) + .enter().append("g") + .attr("class", "legend") + .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + + legend.append("rect") + .attr("x", width - 18) + .attr("width", 18) + .attr("height", 18) + .style("fill", color); + + legend.append("text") + .attr("x", width - 24) + .attr("y", 9) + .attr("dy", ".35em") + .style("text-anchor", "end") + .text(function(d) { return d; }); + + + function type(d) { + d.recommendCount = +d.recommendCount; + return d; + } +} + +function plot_multibar_graph(data,graph_details){ + console.log("plot_multibar",data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + var margin = {top: 20, right: 60, bottom: 80, left: 60}, + width = (0.85*parseInt(element.clientWidth)) - margin.left - margin.right, + height = 370 - margin.top - margin.bottom; + + var x0 = d3.scale.ordinal() + .rangeRoundBands([0, width], .1); + + var x1 = d3.scale.ordinal(); + + var y = d3.scale.linear() + .range([height, 0]); + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + var xAxis = d3.svg.axis() + .scale(x0) + .orient("bottom"); + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left") + .innerTickSize(-width); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return " " +graph_details["measure"]["primary"]["displayName"]+" "+ d.name + " : " + (d.value) +""; + }) + + var grouped_data=graph_details["columns"][0]["name"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + svg.call(tip); + + //if (error) throw error; + + var ageNames = d3.keys(data[0]).filter(function(key) { return (key !== "x_dim")&&(key !== "ages")&&(key !== "total"); }); + console.log("agenames"+ageNames); + + data.forEach(function(d) { + d.ages = ageNames.map(function(name) { return {name: name, value: +d[name]}; }); + }); + + x0.domain(data.map(function(d) { return d["x_dim"]; })); + x1.domain(ageNames).rangeRoundBands([0, x0.rangeBand()]); + y.domain([0, d3.max(data, function(d) { return d3.max(d.ages, function(d) { return d.value; }); })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis) + .selectAll('text') + .attr("font-size",15); + + svg.append("text") + .attr("font-size",18) + .attr("y", height+20) + .attr("x",width+40) + .style("text-anchor", "end") + .text(graph_details["row"]["displayName"]); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("font-size",15) + .attr("transform", "rotate(-90)") + .attr("y", -60) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text(graph_details["measure"]["primary"]["displayName"]); + + var state = svg.selectAll(".state") + .data(data) + .enter().append("g") + .attr("class", "state") + .attr("transform", function(d) { return "translate(" + x0(d["x_dim"]) + ",0)"; }); + + state.selectAll("rect") + .data(function(d) { return d.ages; }) + .enter().append("rect") + .attr("class","bar") + .on('mouseover', tip.show) + .on('mouseout', tip.hide) + .transition() + .delay(500) + .attr("width", x1.rangeBand()) + .attr("x", function(d) { return x1(d.name); }) + .attr("y", function(d) { return y(d.value); }) + .attr("height", function(d) { return height - y(d.value); }) + .style("fill", function(d) { return color(d.name); }); + + var legend = svg.selectAll(".legend") + .data(ageNames.slice().reverse()) + .enter().append("g") + .attr("class", "legend") + .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + + legend.append("rect") + .attr("x", width - 18) + .attr("width", 18) + .attr("height", 18) + .style("fill", color); + + legend.append("text") + .attr("x", width - 24) + .attr("y", 9) + .attr("dy", ".35em") + .style("text-anchor", "end") + .text(function(d) { return d; }); + +} diff --git a/public/modules/graphs/gitOtherGraphs_BASE_4973.js b/public/modules/graphs/gitOtherGraphs_BASE_4973.js new file mode 100644 index 0000000..f2e32ba --- /dev/null +++ b/public/modules/graphs/gitOtherGraphs_BASE_4973.js @@ -0,0 +1,216 @@ + +function plot_pie_chart(data,graph_details){ + console.log("we are inside the plotting the pie chart"); + console.log(data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + + var width = (0.85*parseInt(element.clientWidth)) , + height = 470, + radius = Math.min(width, height) / 2; + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + + var arc = d3.svg.arc() + .outerRadius(radius - 10) + .innerRadius(radius - radius); + + var pie = d3.layout.pie() + .sort(null) + .value(function(d) { return d[graph_details["measure"]["primary"]["function"]["argument"]]; }); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return ""+"No of Commits in"+" "+ d.data["_id"][graph_details["row"]["name"]] +" :"+" " + d.data[graph_details["measure"]["primary"]["function"]["argument"]] + ""; + }) + + var svg = d3.select("#graph1").append("svg") + .attr("width", width) + .attr("height", height) + .append("g") + .attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); + + svg.call(tip); + + var g = svg.selectAll(".arc") + .data(pie(data)) + .enter().append("g") + .attr("class", "arc") + .on('mouseover', tip.show) + .on('mouseout', tip.hide); + + g.append("path").transition() + .delay(500) + .attr("d", arc) + .style("fill", function(d) { return color( d.data["_id"][graph_details["row"]["name"]]); }); + + // g.append("text") + // // .attr("transform", function(d) { return "translate(" + arc.centriod(d) + ")"; }) + // .attr("transform", function(d) { + // var c = arc.centroid(d), + // x = c[0], + // y = c[1], + // // pythagorean theorem for hypotenuse + // h = Math.sqrt(x*x + y*y); + // return "translate(" + (x/h * radius) + ',' + + // (y/h * radius) + ")"; + // }) + // .attr("dy", ".35em") + // .text(function(d) { return d["data"]["_id"][graph_details["row"]["name"]]}).attr("font-size",12); + // //}); + + legend = svg.selectAll(".legend") + .data(d[graph_details["measure"]["primary"]["function"]["argument"]].slice().reverse()) + .enter().append("g") + .attr("class", "legend") + .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + + legend.append("rect") + .attr("x", width - 18) + .attr("width", 18) + .attr("height", 18) + .style("fill", color); + + legend.append("text") + .attr("x", width - 24) + .attr("y", 9) + .attr("dy", ".35em") + .style("text-anchor", "end") + .text(function(d) { return d; }); + + + function type(d) { + d.recommendCount = +d.recommendCount; + return d; + } +} + +function plot_multibar_graph(data,graph_details){ + console.log("plot_multibar",data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + var margin = {top: 20, right: 60, bottom: 80, left: 60}, + width = (0.85*parseInt(element.clientWidth)) - margin.left - margin.right, + height = 370 - margin.top - margin.bottom; + + var x0 = d3.scale.ordinal() + .rangeRoundBands([0, width], .1); + + var x1 = d3.scale.ordinal(); + + var y = d3.scale.linear() + .range([height, 0]); + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + var xAxis = d3.svg.axis() + .scale(x0) + .orient("bottom"); + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left") + .innerTickSize(-width); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return " " +graph_details["measure"]["primary"]["displayName"]+" "+ d.name + " : " + (d.value) +""; + }) + + var grouped_data=graph_details["columns"][0]["name"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + svg.call(tip); + + //if (error) throw error; + + var ageNames = d3.keys(data[0]).filter(function(key) { return (key !== "x_dim")&&(key !== "ages")&&(key !== "total"); }); + console.log("agenames"+ageNames); + + data.forEach(function(d) { + d.ages = ageNames.map(function(name) { return {name: name, value: +d[name]}; }); + }); + + x0.domain(data.map(function(d) { return d["x_dim"]; })); + x1.domain(ageNames).rangeRoundBands([0, x0.rangeBand()]); + y.domain([0, d3.max(data, function(d) { return d3.max(d.ages, function(d) { return d.value; }); })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis) + .selectAll('text') + .attr("font-size",15); + + svg.append("text") + .attr("font-size",18) + .attr("y", height+20) + .attr("x",width+40) + .style("text-anchor", "end") + .text(graph_details["row"]["displayName"]); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("font-size",15) + .attr("transform", "rotate(-90)") + .attr("y", -60) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text(graph_details["measure"]["primary"]["displayName"]); + + var state = svg.selectAll(".state") + .data(data) + .enter().append("g") + .attr("class", "state") + .attr("transform", function(d) { return "translate(" + x0(d["x_dim"]) + ",0)"; }); + + state.selectAll("rect") + .data(function(d) { return d.ages; }) + .enter().append("rect") + .attr("class","bar") + .on('mouseover', tip.show) + .on('mouseout', tip.hide) + .transition() + .delay(500) + .attr("width", x1.rangeBand()) + .attr("x", function(d) { return x1(d.name); }) + .attr("y", function(d) { return y(d.value); }) + .attr("height", function(d) { return height - y(d.value); }) + .style("fill", function(d) { return color(d.name); }); + + var legend = svg.selectAll(".legend") + .data(ageNames.slice().reverse()) + .enter().append("g") + .attr("class", "legend") + .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + + legend.append("rect") + .attr("x", width - 18) + .attr("width", 18) + .attr("height", 18) + .style("fill", color); + + legend.append("text") + .attr("x", width - 24) + .attr("y", 9) + .attr("dy", ".35em") + .style("text-anchor", "end") + .text(function(d) { return d; }); + +} diff --git a/public/modules/graphs/gitOtherGraphs_LOCAL_4867.js b/public/modules/graphs/gitOtherGraphs_LOCAL_4867.js new file mode 100644 index 0000000..c7a60fc --- /dev/null +++ b/public/modules/graphs/gitOtherGraphs_LOCAL_4867.js @@ -0,0 +1,217 @@ + +function plot_pie_chart(data,graph_details){ + console.log("we are inside the plotting the pie chart"); + console.log(data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + + var width = (0.85*parseInt(element.clientWidth)) , + height = 470, + radius = Math.min(width, height) / 2; + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + + var arc = d3.svg.arc() + .outerRadius(radius - 10) + .innerRadius(radius - radius); + + var pie = d3.layout.pie() + .sort(null) + .value(function(d) { return d[graph_details["measure"]["primary"]["function"]["argument"]]; }); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return ""+"No of Commits in"+" "+ d.data["_id"][graph_details["row"]["name"]] +" :"+" " + d.data[graph_details["measure"]["primary"]["function"]["argument"]] + ""; + }) + + var svg = d3.select("#graph1").append("svg") + .attr("width", width) + .attr("height", height) + .append("g") + .attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); + + svg.call(tip); + + var g = svg.selectAll(".arc") + .data(pie(data)) + .enter().append("g") + .attr("class", "arc") + .on('mouseover', tip.show) + .on('mouseout', tip.hide); + + g.append("path").transition() + .delay(500) + .attr("d", arc) + .style("fill", function(d) { return color( d.data["_id"][graph_details["row"]["name"]]); }); + + // g.append("text") + // // .attr("transform", function(d) { return "translate(" + arc.centriod(d) + ")"; }) + // .attr("transform", function(d) { + // var c = arc.centroid(d), + // x = c[0], + // y = c[1], + // // pythagorean theorem for hypotenuse + // h = Math.sqrt(x*x + y*y); + // return "translate(" + (x/h * radius) + ',' + + // (y/h * radius) + ")"; + // }) + // .attr("dy", ".35em") + // .text(function(d) { return d["data"]["_id"][graph_details["row"]["name"]]}).attr("font-size",12); + // //}); + + // legend = svg.selectAll(".legend") + // .data(d[graph_details["measure"]["primary"]["function"]["argument"]].slice().reverse()) + // .enter().append("g") + // .attr("class", "legend") + // .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + // + // legend.append("rect") + // .attr("x", width - 18) + // .attr("width", 18) + // .attr("height", 18) + // .style("fill", color); + // + // legend.append("text") + // .attr("x", width - 24) + // .attr("y", 9) + // .attr("dy", ".35em") + // .style("text-anchor", "end") + // .text(function(d) { return d; }); + + + function type(d) { + d.recommendCount = +d.recommendCount; + return d; + } +} + +function plot_multibar_graph(data,graph_details){ + console.log("plot_multibar",data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + var margin = {top: 20, right: 60, bottom: 80, left: 60}, + width = (0.89*parseInt(element.clientWidth)) - margin.left - margin.right, + height = 470 - margin.top - margin.bottom; + + var x0 = d3.scale.ordinal() + .rangeRoundBands([0, width], .1); + + var x1 = d3.scale.ordinal(); + + var y = d3.scale.linear() + .range([height, 0]); + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + var xAxis = d3.svg.axis() + .scale(x0) + .orient("bottom"); + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left") + .innerTickSize(-width); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return " " +graph_details["measure"]["primary"]["displayName"]+" "+ d.name + " : " + (d.value) +""; + }) + + var grouped_data=graph_details["columns"][0]["name"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + svg.call(tip); + + //if (error) throw error; + + var ageNames = d3.keys(data[0]).filter(function(key) { return (key !== "x_dim")&&(key !== "ages")&&(key !== "total"); }); + console.log("agenames"+ageNames); + + data.forEach(function(d) { + d.ages = ageNames.map(function(name) { return {name: name, value: +d[name]}; }); + }); + + x0.domain(data.map(function(d) { return d["x_dim"]; })); + x1.domain(ageNames).rangeRoundBands([0, x0.rangeBand()]); + y.domain([0, d3.max(data, function(d) { return d3.max(d.ages, function(d) { return d.value; }); })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis) + .selectAll('text') + .attr("font-size",15); + + svg.append("text") + .attr("font-size",15) + .attr("x",width-70) + .attr("y",height+75) + .attr("fill", "#aaa") + .style("text-anchor", "end") + .text(graph_details["row"]["displayName"]); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("font-size",15) + .attr("transform", "rotate(-90)") + .attr("y", -60) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text(graph_details["measure"]["primary"]["displayName"]); + + var state = svg.selectAll(".state") + .data(data) + .enter().append("g") + .attr("class", "state") + .attr("transform", function(d) { return "translate(" + x0(d["x_dim"]) + ",0)"; }); + + state.selectAll("rect") + .data(function(d) { return d.ages; }) + .enter().append("rect") + .attr("class","bar") + .on('mouseover', tip.show) + .on('mouseout', tip.hide) + .transition() + .delay(500) + .attr("width", x1.rangeBand()) + .attr("x", function(d) { return x1(d.name); }) + .attr("y", function(d) { return y(d.value); }) + .attr("height", function(d) { return height - y(d.value); }) + .style("fill", function(d) { return color(d.name); }); + + // var legend = svg.selectAll(".legend") + // .data(ageNames.slice().reverse()) + // .enter().append("g") + // .attr("class", "legend") + // .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + // + // legend.append("rect") + // .attr("x", width - 18) + // .attr("width", 18) + // .attr("height", 18) + // .style("fill", color); + // + // legend.append("text") + // .attr("x", width - 24) + // .attr("y", 9) + // .attr("dy", ".35em") + // .style("text-anchor", "end") + // .text(function(d) { return d; }); + +} diff --git a/public/modules/graphs/gitOtherGraphs_LOCAL_4973.js b/public/modules/graphs/gitOtherGraphs_LOCAL_4973.js new file mode 100644 index 0000000..c7a60fc --- /dev/null +++ b/public/modules/graphs/gitOtherGraphs_LOCAL_4973.js @@ -0,0 +1,217 @@ + +function plot_pie_chart(data,graph_details){ + console.log("we are inside the plotting the pie chart"); + console.log(data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + + var width = (0.85*parseInt(element.clientWidth)) , + height = 470, + radius = Math.min(width, height) / 2; + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + + var arc = d3.svg.arc() + .outerRadius(radius - 10) + .innerRadius(radius - radius); + + var pie = d3.layout.pie() + .sort(null) + .value(function(d) { return d[graph_details["measure"]["primary"]["function"]["argument"]]; }); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return ""+"No of Commits in"+" "+ d.data["_id"][graph_details["row"]["name"]] +" :"+" " + d.data[graph_details["measure"]["primary"]["function"]["argument"]] + ""; + }) + + var svg = d3.select("#graph1").append("svg") + .attr("width", width) + .attr("height", height) + .append("g") + .attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); + + svg.call(tip); + + var g = svg.selectAll(".arc") + .data(pie(data)) + .enter().append("g") + .attr("class", "arc") + .on('mouseover', tip.show) + .on('mouseout', tip.hide); + + g.append("path").transition() + .delay(500) + .attr("d", arc) + .style("fill", function(d) { return color( d.data["_id"][graph_details["row"]["name"]]); }); + + // g.append("text") + // // .attr("transform", function(d) { return "translate(" + arc.centriod(d) + ")"; }) + // .attr("transform", function(d) { + // var c = arc.centroid(d), + // x = c[0], + // y = c[1], + // // pythagorean theorem for hypotenuse + // h = Math.sqrt(x*x + y*y); + // return "translate(" + (x/h * radius) + ',' + + // (y/h * radius) + ")"; + // }) + // .attr("dy", ".35em") + // .text(function(d) { return d["data"]["_id"][graph_details["row"]["name"]]}).attr("font-size",12); + // //}); + + // legend = svg.selectAll(".legend") + // .data(d[graph_details["measure"]["primary"]["function"]["argument"]].slice().reverse()) + // .enter().append("g") + // .attr("class", "legend") + // .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + // + // legend.append("rect") + // .attr("x", width - 18) + // .attr("width", 18) + // .attr("height", 18) + // .style("fill", color); + // + // legend.append("text") + // .attr("x", width - 24) + // .attr("y", 9) + // .attr("dy", ".35em") + // .style("text-anchor", "end") + // .text(function(d) { return d; }); + + + function type(d) { + d.recommendCount = +d.recommendCount; + return d; + } +} + +function plot_multibar_graph(data,graph_details){ + console.log("plot_multibar",data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + var margin = {top: 20, right: 60, bottom: 80, left: 60}, + width = (0.89*parseInt(element.clientWidth)) - margin.left - margin.right, + height = 470 - margin.top - margin.bottom; + + var x0 = d3.scale.ordinal() + .rangeRoundBands([0, width], .1); + + var x1 = d3.scale.ordinal(); + + var y = d3.scale.linear() + .range([height, 0]); + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + var xAxis = d3.svg.axis() + .scale(x0) + .orient("bottom"); + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left") + .innerTickSize(-width); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return " " +graph_details["measure"]["primary"]["displayName"]+" "+ d.name + " : " + (d.value) +""; + }) + + var grouped_data=graph_details["columns"][0]["name"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + svg.call(tip); + + //if (error) throw error; + + var ageNames = d3.keys(data[0]).filter(function(key) { return (key !== "x_dim")&&(key !== "ages")&&(key !== "total"); }); + console.log("agenames"+ageNames); + + data.forEach(function(d) { + d.ages = ageNames.map(function(name) { return {name: name, value: +d[name]}; }); + }); + + x0.domain(data.map(function(d) { return d["x_dim"]; })); + x1.domain(ageNames).rangeRoundBands([0, x0.rangeBand()]); + y.domain([0, d3.max(data, function(d) { return d3.max(d.ages, function(d) { return d.value; }); })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis) + .selectAll('text') + .attr("font-size",15); + + svg.append("text") + .attr("font-size",15) + .attr("x",width-70) + .attr("y",height+75) + .attr("fill", "#aaa") + .style("text-anchor", "end") + .text(graph_details["row"]["displayName"]); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("font-size",15) + .attr("transform", "rotate(-90)") + .attr("y", -60) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text(graph_details["measure"]["primary"]["displayName"]); + + var state = svg.selectAll(".state") + .data(data) + .enter().append("g") + .attr("class", "state") + .attr("transform", function(d) { return "translate(" + x0(d["x_dim"]) + ",0)"; }); + + state.selectAll("rect") + .data(function(d) { return d.ages; }) + .enter().append("rect") + .attr("class","bar") + .on('mouseover', tip.show) + .on('mouseout', tip.hide) + .transition() + .delay(500) + .attr("width", x1.rangeBand()) + .attr("x", function(d) { return x1(d.name); }) + .attr("y", function(d) { return y(d.value); }) + .attr("height", function(d) { return height - y(d.value); }) + .style("fill", function(d) { return color(d.name); }); + + // var legend = svg.selectAll(".legend") + // .data(ageNames.slice().reverse()) + // .enter().append("g") + // .attr("class", "legend") + // .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + // + // legend.append("rect") + // .attr("x", width - 18) + // .attr("width", 18) + // .attr("height", 18) + // .style("fill", color); + // + // legend.append("text") + // .attr("x", width - 24) + // .attr("y", 9) + // .attr("dy", ".35em") + // .style("text-anchor", "end") + // .text(function(d) { return d; }); + +} diff --git a/public/modules/graphs/gitOtherGraphs_REMOTE_4867.js b/public/modules/graphs/gitOtherGraphs_REMOTE_4867.js new file mode 100644 index 0000000..2b814a2 --- /dev/null +++ b/public/modules/graphs/gitOtherGraphs_REMOTE_4867.js @@ -0,0 +1,227 @@ +function plot_pie_chart(data,graph_details){ + console.log("we are inside the plotting the pie chart"); + console.log(data); + console.log("graph_details",graph_details) + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + + var width = (0.85*parseInt(element.clientWidth)) , + height = 470, + radius = Math.min(width, height) / 2; + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + + var arc = d3.svg.arc() + .outerRadius(radius - 10) + .innerRadius(radius - radius); + + var pie = d3.layout.pie() + .sort(null) + .value(function(d) { return d[graph_details["measure"]["primary"]["function"]["argument"]]; }); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return ""+"No of Commits in"+" "+ d.data["_id"][graph_details["row"]["name"]] +" :"+" " + d.data[graph_details["measure"]["primary"]["function"]["argument"]] + ""; + }) + + var grouped_data=graph_details["columns"][0]["values"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width) + .attr("height", height) + .append("g") + .attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); + + svg.call(tip); + + color.domain(grouped_data); + + data.forEach(function(d) { + var y0 = 0; + d.ages = color.domain().map(function(name) { return {name: name, y0: y0, y1: y0 += +d[name]}; }); + d.total = d.ages[d.ages.length - 1].y1; + }); + + + var g = svg.selectAll(".arc") + .data(pie(data)) + .enter().append("g") + .attr("class", "arc") + .on('mouseover', tip.show) + .on('mouseout', tip.hide); + + g.append("path").transition() + .delay(500) + .attr("d", arc) + .style("fill", function(d) { return color( d.data["_id"][graph_details["row"]["name"]]); }); + + // g.append("text") + // // .attr("transform", function(d) { return "translate(" + arc.centriod(d) + ")"; }) + // .attr("transform", function(d) { + // var c = arc.centroid(d), + // x = c[0], + // y = c[1], + // // pythagorean theorem for hypotenuse + // h = Math.sqrt(x*x + y*y); + // return "translate(" + (x/h * radius) + ',' + + // (y/h * radius) + ")"; + // }) + // .attr("dy", ".35em") + // .text(function(d) { return d["data"]["_id"][graph_details["row"]["name"]]}).attr("font-size",12); + // //}); + + legend = svg.selectAll(".legend") + .data(color.domain().slice().reverse()) + .enter().append("g") + .attr("class", "legend") + .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + + legend.append("rect") + .attr("x", width - 18) + .attr("width", 18) + .attr("height", 18) + .style("fill", color); + + legend.append("text") + .attr("x", width - 24) + .attr("y", 9) + .attr("dy", ".35em") + .style("text-anchor", "end") + .text(function(d) { return d; }); + + + function type(d) { + d.recommendCount = +d.recommendCount; + return d; + } +} + +function plot_multibar_graph(data,graph_details){ + console.log("plot_multibar",data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + var margin = {top: 20, right: 60, bottom: 80, left: 60}, + width = (0.85*parseInt(element.clientWidth)) - margin.left - margin.right, + height = 370 - margin.top - margin.bottom; + + var x0 = d3.scale.ordinal() + .rangeRoundBands([0, width], .1); + + var x1 = d3.scale.ordinal(); + + var y = d3.scale.linear() + .range([height, 0]); + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + var xAxis = d3.svg.axis() + .scale(x0) + .orient("bottom"); + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left") + .innerTickSize(-width); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return " " +graph_details["measure"]["primary"]["displayName"]+" "+ d.name + " : " + (d.value) +""; + }) + + var grouped_data=graph_details["columns"][0]["name"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + svg.call(tip); + + //if (error) throw error; + + var ageNames = d3.keys(data[0]).filter(function(key) { return (key !== "x_dim")&&(key !== "ages")&&(key !== "total"); }); + console.log("agenames"+ageNames); + + data.forEach(function(d) { + d.ages = ageNames.map(function(name) { return {name: name, value: +d[name]}; }); + }); + + x0.domain(data.map(function(d) { return d["x_dim"]; })); + x1.domain(ageNames).rangeRoundBands([0, x0.rangeBand()]); + y.domain([0, d3.max(data, function(d) { return d3.max(d.ages, function(d) { return d.value; }); })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis) + .selectAll('text') + .attr("font-size",15); + + svg.append("text") + .attr("font-size",18) + .attr("y", height+20) + .attr("x",width+40) + .style("text-anchor", "end") + .text(graph_details["row"]["displayName"]); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("font-size",15) + .attr("transform", "rotate(-90)") + .attr("y", -60) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text(graph_details["measure"]["primary"]["displayName"]); + + var state = svg.selectAll(".state") + .data(data) + .enter().append("g") + .attr("class", "state") + .attr("transform", function(d) { return "translate(" + x0(d["x_dim"]) + ",0)"; }); + + state.selectAll("rect") + .data(function(d) { return d.ages; }) + .enter().append("rect") + .attr("class","bar") + .on('mouseover', tip.show) + .on('mouseout', tip.hide) + .transition() + .delay(500) + .attr("width", x1.rangeBand()) + .attr("x", function(d) { return x1(d.name); }) + .attr("y", function(d) { return y(d.value); }) + .attr("height", function(d) { return height - y(d.value); }) + .style("fill", function(d) { return color(d.name); }); + + var legend = svg.selectAll(".legend") + .data(ageNames.slice().reverse()) + .enter().append("g") + .attr("class", "legend") + .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + + legend.append("rect") + .attr("x", width - 18) + .attr("width", 18) + .attr("height", 18) + .style("fill", color); + + legend.append("text") + .attr("x", width - 24) + .attr("y", 9) + .attr("dy", ".35em") + .style("text-anchor", "end") + .text(function(d) { return d; }); + +} diff --git a/public/modules/graphs/gitOtherGraphs_REMOTE_4973.js b/public/modules/graphs/gitOtherGraphs_REMOTE_4973.js new file mode 100644 index 0000000..2b814a2 --- /dev/null +++ b/public/modules/graphs/gitOtherGraphs_REMOTE_4973.js @@ -0,0 +1,227 @@ +function plot_pie_chart(data,graph_details){ + console.log("we are inside the plotting the pie chart"); + console.log(data); + console.log("graph_details",graph_details) + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + + var width = (0.85*parseInt(element.clientWidth)) , + height = 470, + radius = Math.min(width, height) / 2; + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + + var arc = d3.svg.arc() + .outerRadius(radius - 10) + .innerRadius(radius - radius); + + var pie = d3.layout.pie() + .sort(null) + .value(function(d) { return d[graph_details["measure"]["primary"]["function"]["argument"]]; }); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return ""+"No of Commits in"+" "+ d.data["_id"][graph_details["row"]["name"]] +" :"+" " + d.data[graph_details["measure"]["primary"]["function"]["argument"]] + ""; + }) + + var grouped_data=graph_details["columns"][0]["values"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width) + .attr("height", height) + .append("g") + .attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); + + svg.call(tip); + + color.domain(grouped_data); + + data.forEach(function(d) { + var y0 = 0; + d.ages = color.domain().map(function(name) { return {name: name, y0: y0, y1: y0 += +d[name]}; }); + d.total = d.ages[d.ages.length - 1].y1; + }); + + + var g = svg.selectAll(".arc") + .data(pie(data)) + .enter().append("g") + .attr("class", "arc") + .on('mouseover', tip.show) + .on('mouseout', tip.hide); + + g.append("path").transition() + .delay(500) + .attr("d", arc) + .style("fill", function(d) { return color( d.data["_id"][graph_details["row"]["name"]]); }); + + // g.append("text") + // // .attr("transform", function(d) { return "translate(" + arc.centriod(d) + ")"; }) + // .attr("transform", function(d) { + // var c = arc.centroid(d), + // x = c[0], + // y = c[1], + // // pythagorean theorem for hypotenuse + // h = Math.sqrt(x*x + y*y); + // return "translate(" + (x/h * radius) + ',' + + // (y/h * radius) + ")"; + // }) + // .attr("dy", ".35em") + // .text(function(d) { return d["data"]["_id"][graph_details["row"]["name"]]}).attr("font-size",12); + // //}); + + legend = svg.selectAll(".legend") + .data(color.domain().slice().reverse()) + .enter().append("g") + .attr("class", "legend") + .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + + legend.append("rect") + .attr("x", width - 18) + .attr("width", 18) + .attr("height", 18) + .style("fill", color); + + legend.append("text") + .attr("x", width - 24) + .attr("y", 9) + .attr("dy", ".35em") + .style("text-anchor", "end") + .text(function(d) { return d; }); + + + function type(d) { + d.recommendCount = +d.recommendCount; + return d; + } +} + +function plot_multibar_graph(data,graph_details){ + console.log("plot_multibar",data); + var element = document.getElementById("graph-container"); + console.log(element.clientWidth); + var margin = {top: 20, right: 60, bottom: 80, left: 60}, + width = (0.85*parseInt(element.clientWidth)) - margin.left - margin.right, + height = 370 - margin.top - margin.bottom; + + var x0 = d3.scale.ordinal() + .rangeRoundBands([0, width], .1); + + var x1 = d3.scale.ordinal(); + + var y = d3.scale.linear() + .range([height, 0]); + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + var xAxis = d3.svg.axis() + .scale(x0) + .orient("bottom"); + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left") + .innerTickSize(-width); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return " " +graph_details["measure"]["primary"]["displayName"]+" "+ d.name + " : " + (d.value) +""; + }) + + var grouped_data=graph_details["columns"][0]["name"]; + + var svg = d3.select("#graph1").append("svg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + svg.call(tip); + + //if (error) throw error; + + var ageNames = d3.keys(data[0]).filter(function(key) { return (key !== "x_dim")&&(key !== "ages")&&(key !== "total"); }); + console.log("agenames"+ageNames); + + data.forEach(function(d) { + d.ages = ageNames.map(function(name) { return {name: name, value: +d[name]}; }); + }); + + x0.domain(data.map(function(d) { return d["x_dim"]; })); + x1.domain(ageNames).rangeRoundBands([0, x0.rangeBand()]); + y.domain([0, d3.max(data, function(d) { return d3.max(d.ages, function(d) { return d.value; }); })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis) + .selectAll('text') + .attr("font-size",15); + + svg.append("text") + .attr("font-size",18) + .attr("y", height+20) + .attr("x",width+40) + .style("text-anchor", "end") + .text(graph_details["row"]["displayName"]); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("font-size",15) + .attr("transform", "rotate(-90)") + .attr("y", -60) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text(graph_details["measure"]["primary"]["displayName"]); + + var state = svg.selectAll(".state") + .data(data) + .enter().append("g") + .attr("class", "state") + .attr("transform", function(d) { return "translate(" + x0(d["x_dim"]) + ",0)"; }); + + state.selectAll("rect") + .data(function(d) { return d.ages; }) + .enter().append("rect") + .attr("class","bar") + .on('mouseover', tip.show) + .on('mouseout', tip.hide) + .transition() + .delay(500) + .attr("width", x1.rangeBand()) + .attr("x", function(d) { return x1(d.name); }) + .attr("y", function(d) { return y(d.value); }) + .attr("height", function(d) { return height - y(d.value); }) + .style("fill", function(d) { return color(d.name); }); + + var legend = svg.selectAll(".legend") + .data(ageNames.slice().reverse()) + .enter().append("g") + .attr("class", "legend") + .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + + legend.append("rect") + .attr("x", width - 18) + .attr("width", 18) + .attr("height", 18) + .style("fill", color); + + legend.append("text") + .attr("x", width - 24) + .attr("y", 9) + .attr("dy", ".35em") + .style("text-anchor", "end") + .text(function(d) { return d; }); + +} diff --git a/public/modules/graphs/gitplotGraph.js b/public/modules/graphs/gitplotGraph.js new file mode 100644 index 0000000..28d3509 --- /dev/null +++ b/public/modules/graphs/gitplotGraph.js @@ -0,0 +1,351 @@ +function plotting_stacked_graph(data,graph_details){ + //console.log(data); + console.log("graph_details",graph_details); + + var element = document.getElementById("graph-container"); + var margin = {top: 60, right: 60, bottom: 180, left: 80}, + width = (0.89*parseInt(element.clientWidth)) - margin.left - margin.right, + height = 470 - margin.top - margin.bottom; + + var x = d3.scale.ordinal() + .rangeRoundBands([0, width], .1, .3); + + var y = d3.scale.linear() + .rangeRound([height, 0]); + + var color = d3.scale.ordinal() + .range(["#72B01D", "#ADE25D", "#317B22", "#FCEC52", "#a05d56", "#d0743c", "#ff8c00"]); + // .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); + + var xAxis = d3.svg.axis() + .scale(x) + .orient("bottom"); + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left") + .innerTickSize(-width);; + console.log(data); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return " "+graph_details["measure"]["primary"]["displayName"]+" "+ d.name + " : " + (d.y1-d.y0) +""; + }) + + var grouped_data=graph_details["columns"][0]["values"]; + //console.log(sec_grouped_data); + + d3.selectAll("svg").remove(); + var svg = d3.select("#graph").append("svg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + svg.call(tip); + + // d3.json("./data.json", function(error, data) { + //if (error) throw error; + + color.domain(grouped_data); + + data.forEach(function(d) { + var y0 = 0; + d.ages = color.domain().map(function(name) { return {name: name, y0: y0, y1: y0 += +d[name]}; }); + d.total = d.ages[d.ages.length - 1].y1; + }); + + data.sort(function(a, b) { return b.total - a.total; }); + + x.domain(data.map(function(d) { return d["x_dim"]; })); + y.domain([0, d3.max(data, function(d) { return d.total; })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis) + .selectAll('text') + .attr("transform","rotate(-35)") + .attr("x",-50) + .attr("font-size",15) + // .call(wrap, x.rangeBand()); + + svg.append("text") + .attr("font-size",15) + .attr("x",width-70) + .attr("y",height+75) + .attr("fill", "#aaa") + .text(graph_details["row"]["displayName"]); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("font-size",15) + .attr("transform", "rotate(-90)") + .attr("y",-60) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text(graph_details["measure"]["primary"]["displayName"]); + + var country = svg.selectAll(".country") + .data(data) + .enter().append("g") + .attr("class", "g") + .attr("transform", function(d) { return "translate(" + x(d["x_dim"]) + ",0)"; }); + + country.selectAll("rect") + .data(function(d) { return d.ages; }) + .enter().append("rect") + .attr("class","bar") + .attr("width", x.rangeBand()) + .on('mouseover', tip.show) + .on('mouseout', tip.hide) + .transition() + .delay(500) + .attr("y", function(d) { return y(d.y1); }) + .attr("height", function(d) { return y(d.y0) - y(d.y1); }) + .style("fill", function(d) { return color(d.name); }); + + + console.log(" chumma"); + + // var legend = svg.selectAll(".legend") + // .data(color.domain().slice().reverse()) + // .enter().append("g") + // .attr("class", "legend") + // .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + // + // legend.append("rect") + // .attr("x", width - 18) + // .attr("width", 18) + // .attr("height", 18) + // .style("fill", color); + // + // legend.append("text") + // .attr("x", width - 24) + // .attr("y", 9) + // .attr("dy", ".35em") + // .style("text-anchor", "end") + // .text(function(d) { return d; }); + + // }); + } + +function plotting_graph(data,graph_details){ + + console.log(graph_details); + var element = document.getElementById("graph"); + console.log(element.clientWidth); + var margin = {top: 40, right: 60, bottom: 120, left: 60}, + width = (0.89*parseInt(element.clientWidth)) - margin.left - margin.right, + height =470 - margin.top - margin.bottom; + + //var formatPercent = d3.format(".0%"); + + var x = d3.scale.ordinal() + .rangeRoundBands([0, width], .1); + + var y = d3.scale.linear() + .range([height, 0]); + + var xAxis = d3.svg.axis() + .scale(x) + .orient("bottom"); + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left") + .innerTickSize(-width);; + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return ""+graph_details["measure"]["primary"]["function"]["argument"].substring(0,6).concat("s")+" :"+" " + d[graph_details["measure"]["primary"]["function"]["argument"]] + ""; + }) + + d3.selectAll('svg').remove(); + var svg = d3.select("#graph").append("svg") + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + svg.call(tip); + + //d3.json("./test.json", function(error, data) { + console.log(data); + x.domain(data.map(function(d) { return d["_id"][graph_details["row"]["name"]]; })); + y.domain([0, d3.max(data, function(d) { return d[graph_details["measure"]["primary"]["function"]["argument"]]; })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis) + .selectAll('text') + .attr("transform","rotate(-35)") + .attr("x",-60) + .attr("font-size",14); + + svg.append("text") + .attr("font-size",15) + .attr("x",width-70) + .attr("y",height+75) + .attr("fill", "#aaa") + .text(graph_details["row"]["displayName"]); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("transform", "rotate(-90)") + .attr("y",-40) + .attr("x",-50) + .attr("dx", -50) + .attr("dy", ".35em") + //.style("text-anchor", "end") + .text(graph_details["measure"]["primary"]["function"]["argument"].substring(0,6).concat("s")) + .attr("font-size",15); + + + svg.selectAll(".bar") + .data(data) + .enter().append("rect").on('mouseover', tip.show) + .on('mouseout', tip.hide) + .attr("class", "bar") + .transition() + .delay(500) + .attr("x", function(d) { return x(d["_id"][graph_details["row"]["name"]]); }) + .attr("width", x.rangeBand()) + .attr("y", function(d) { return y(d[graph_details["measure"]["primary"]["function"]["argument"]]); }) + .attr("height", function(d) { return height - y(d[graph_details["measure"]["primary"]["function"]["argument"]]); }); + + + //}); +} + + + ///////////////////////////////////////////////////////////////////////////older plotting method +// var margin = {top: 40, right: 20, bottom: 30, left: 40}, +// width = 760 - margin.left - margin.right, +// height = 500 - margin.top - margin.bottom; +// +// var formatPercent = d3.format(".0%"); +// +// var x = d3.scale.ordinal() +// .rangeRoundBands([0, width], .1); +// +// var y = d3.scale.linear() +// .range([height, 0]); +// +// var xAxis = d3.svg.axis() +// .scale(x) +// .orient("bottom"); +// +// var yAxis = d3.svg.axis() +// .scale(y) +// .orient("left"); +// //.tickFormat(formatPercent); +// +// var tip = d3.tip() +// .attr('class', 'd3-tip') +// .offset([-10, 0]) +// .html(function(d) { +// return "Frequency: " + d.recommendCount + ""; +// }) +// d3.selectAll("svg").remove(); +// var svg = d3.select("#graph").append("svg") +// .attr("width", width + margin.left + margin.right) +// .attr("height", height + margin.top + margin.bottom) +// .append("g") +// .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); +// +// svg.call(tip); +// +// x.domain(data.map(function(d) { return d["_id"]; })); +// y.domain([0, d3.max(data, function(d) { return d["recommendCount"]; })]); +// +// svg.append("g") +// .attr("class", "x axis") +// .attr("transform", "translate(0," + height + ")") +// .call(xAxis); +// +// svg.append("g") +// .attr("class", "y axis") +// .call(yAxis) +// .append("text") +// .attr("transform", "rotate(-90)") +// .attr("y", 6) +// .attr("dy", ".71em") +// .style("text-anchor", "end") +// .text("Frequency"); +// +// svg.selectAll(".bar") +// .data(data) +// .enter().append("rect") +// .attr("class", "bar") +// .attr("x", function(d) { return x(d["_id"]); }) +// .attr("width", x.rangeBand()) +// .attr("y", function(d) { return y(d.recommendCount); }) +// .attr("height", function(d) { return height - y(d.recommendCount); }) +// .on('mouseover', tip.show) +// .on('mouseout', tip.hide) +// +// +// function type(d) { +// d.recommendCount = +d.recommendCount; +// return d; +// } +// +// plot_pie_chart(data) +// } +// +// function plot_pie_chart(data){ +// console.log("we are inside the plotting the pie chart"); +// console.log(data); +// var width = 760, +// height = 500, +// radius = Math.min(width, height) / 2; +// +// var color = d3.scale.ordinal() +// .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); +// +// var arc = d3.svg.arc() +// .outerRadius(radius - 10) +// .innerRadius(radius - 70); +// +// var pie = d3.layout.pie() +// .sort(null) +// .value(function(d) { return d.recommendCount; }); +// +// var svg = d3.select("#graph1").append("svg") +// .attr("width", width) +// .attr("height", height) +// .append("g") +// .attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); +// +// // d3.csv("data.csv", type, function(error, data) { +// // if (error) throw error; +// +// var g = svg.selectAll(".arc") +// .data(pie(data)) +// .enter().append("g") +// .attr("class", "arc"); +// +// g.append("path") +// .attr("d", arc) +// .style("fill", function(d) { return color(d.data["_id"]); }); +// +// g.append("text") +// .attr("transform", function(d) { return "translate(" + arc.centroid(d) + ")"; }) +// .attr("dy", ".35em") +// .text(function(d) { return d.data["_id"]; }); +// //}); +// +// function type(d) { +// d.recommendCount = +d.recommendCount; +// return d; +// } diff --git a/public/modules/graphs/rateGraphCode.js b/public/modules/graphs/rateGraphCode.js new file mode 100644 index 0000000..30111b6 --- /dev/null +++ b/public/modules/graphs/rateGraphCode.js @@ -0,0 +1,124 @@ +/*Copyright 2016 Wipro Limited, NIIT Limited + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +This code is written by Ashish Gupta, Tarun Mohandas, Suriya Prakash, Srinivasa Burli, Jishnu Surendran and Bhairavi Balakrishnan*/ + +createGraph = function(data) +{ + d3.select('#somegraph').remove(); + + var margin = {top: 20, right: 100, bottom: 30, left: 80}, + width = 800 - margin.left - margin.right, + height = 400 - margin.top - margin.bottom; + + var x0 = d3.scale.ordinal() + .rangeRoundBands([0, width], .1); + + var x1 = d3.scale.ordinal(); + + var y = d3.scale.linear() + .range([height, 0]); + + var color = d3.scale.category10(); + + var xAxis = d3.svg.axis() + .scale(x0) + .orient("bottom"); + + var yAxis = d3.svg.axis() + .scale(y) + .orient("left"); + + var tip = d3.tip() + .attr('class', 'd3-tip') + .offset([-10, 0]) + .html(function(d) { + return "Size: " + d.value + ""; + }) + + var svg = d3.select("div #main").append("svg") + .attr('id','somegraph') + .attr("width", width + margin.left + margin.right) + .attr("height", height + margin.top + margin.bottom) + .append("g") + .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); + + svg.call(tip); + + var ageNames = d3.keys(data[0]).filter(function(key) { return key !== "period"; }); + + data.forEach(function(d) { + d.ages = ageNames.map(function(name) { return {name: name, value: +d[name]}; }); + }); + + x0.domain(data.map(function(d) { return d.period; })); + x1.domain(ageNames).rangeRoundBands([0, x0.rangeBand()]); + y.domain([0, d3.max(data, function(d) { return d3.max(d.ages, function(d) { return d.value; }); })]); + + svg.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0," + height + ")") + .call(xAxis); + + svg.append("g") + .attr("class", "y axis") + .call(yAxis) + .append("text") + .attr("transform", "rotate(-90)") + .attr("y", 6) + .attr("dy", ".71em") + .style("text-anchor", "end") + .text("Number of Logs"); + + var period = svg.selectAll(".period") + .data(data) + .enter().append("g") + .attr("class", "period") + .attr("transform", function(d) { return "translate(" + x0(d.period) + ",0)"; }); + + period.selectAll("rect") + .data(function(d) { return d.ages; }) + .enter().append("rect") + .attr("width", x1.rangeBand()) + .attr("x", function(d) { return x1(d.name); }) + .attr("y", function(d) { return y(d.value); }) + .attr("height", function(d) { return height - y(d.value); }) + .style("fill", function(d) { return color(d.name); }); + + period.selectAll('rect') + .on('mouseover', tip.show) + .on('mouseout', tip.hide); + + var legend = svg.selectAll(".legend") + .data(ageNames.slice().reverse()) + .enter().append("g") + .attr("class", "legend") + .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); + + legend.append("rect") + .attr("x", width - 18) + .attr("width", 18) + .attr("height", 18) + .style("fill", color) + .attr("transform", "translate(100,-20)"); + + legend.append("text") + .attr("x", width - 24) + .attr("y", 9) + .attr("dy", ".35em") + .style("text-anchor", "end") + .text(function(d) { return d; }) + .attr("transform", "translate(100,-20)"); + +} diff --git a/public/modules/images/filters/aptCache/addParaFilter.js b/public/modules/images/filters/aptCache/addParaFilter.js new file mode 100644 index 0000000..f9eff1c --- /dev/null +++ b/public/modules/images/filters/aptCache/addParaFilter.js @@ -0,0 +1,58 @@ +/*Copyright 2016 Wipro Limited, NIIT Limited + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +This code is written by Ashish Gupta, Tarun Mohandas, Suriya Prakash, Srinivasa Burli, Jishnu Surendran and Bhairavi Balakrishnan*/ + +angular.module('aptLogApp').filter('addPara',function(){ + return function(type,year,month){ + if(type==="logRateData"){ + if(month===""){ + return "This graph shows the number of apt logs grouped by outgoing requests and those cached by the server in all of "+year; + } + else{ + return "This graph shows the number of apt logs grouped by outgoing requests and those cached by the server in all of "+month+" in the year "+year; + } + } + else if(type==="dataRateData"){ + if(month===""){ + return "This graph shows the data size of apt logs grouped by outgoing requests and those cached by the server in all of "+year; + } + else{ + return "This graph shows the data size of apt logs grouped by outgoing requests and those cached by the server in all of "+month+" in the year "+year; + } + } + else if(type==="packageCount"){ + if(month===""){ + return "This table shows the number of apt logs cached by the server organized by package details for all of "+year; + } + else{ + return "This table shows the number of apt logs cached by the server organized by package details for all of "+month+" in the year "+year; + } + } + else if(type==="packageAnalytics"){ + if(month===""){ + return "This table shows the number of apt logs cached by the server organized by package and operating system for all of "+year; + } + else{ + return "This table shows the number of apt logs cached by the server organized by package and operating system for all of "+month+" in the year "+year; + } + } + } +}); + +angular.module('aptLogApp').filter('showLinks',function(){ + return function(tab){ + return angular.lowercase(tab.split(' ').join('')); + } +}); diff --git a/public/modules/images/filters/nginx/logListing/logListingFilters.js b/public/modules/images/filters/nginx/logListing/logListingFilters.js new file mode 100644 index 0000000..b3b7503 --- /dev/null +++ b/public/modules/images/filters/nginx/logListing/logListingFilters.js @@ -0,0 +1,69 @@ +/*Copyright 2016 Wipro Limited, NIIT Limited + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +This code is written by Prateek Reddy Yammanuru, Shiva Manognya Kandikuppa, Uday Kumar Mydam, Nirup TNL, Sandeep Reddy G, Deepak Kumar*/ + +angular.module('logAggregator') +.filter('sizeFilter',function() { + return function(input){ + size=parseInt(input)/8; + if (size>1000 && size<1000000) { + size = parseFloat(size)/1000; + size = (size).toFixed(2)+ " KB" ; + } + else if (size<1000) { + size = size + " B" ; + } + else if (size>1000000) { + size = parseFloat(size)/1000000; + size = (size).toFixed(2)+ " MB" ; + } + return size; + }//close fn input +}) +.filter('agentFilter',function(){ + return function(input){ + temp = input; + title = ""; + if(temp.indexOf("Chrome") != -1) + { + title = "Chrome"; + } + else if (temp.indexOf("Safari") != -1) + { + title = "Safari"; + } + else if (temp.indexOf("Trident") != -1) + { + title = "IE"; + } + else if (temp.indexOf("Vagrant") != -1) + { + title = "Others"; + } + else if (temp.indexOf("Opr") != -1) + { + title = "Opera"; + } + else if (temp.indexOf("-") != -1) + { + title = "Others"; + } + else + { + title = "Mozilla"; + } + return title; + } +}); diff --git a/public/modules/images/log_aggregator_logo.png b/public/modules/images/log_aggregator_logo.png new file mode 100644 index 0000000000000000000000000000000000000000..43f4dd5a6094a15176faff3d61e7d0c3084ed32f GIT binary patch literal 18577 zcmeI4c{tQ<_rQmwu|*=3ElZY+*$rcmCE13t#3*5!8BCbb%-AVA(aMw}(n6(@l(iBS zN<=CmJW55Wq=YEmL5pYVnd`Z(_x)YJe`YSTocrA8ocsRV=bZ2NpRZjw`we2kD}@07 zfS9$Fg%kVRlKln&1=*j=6%-WMUqV4v?hF7xWcloy50G_K7634KOL4(7@mM=Fkrt>+ zAknsxb;AOK*s}ouj7eA!f#^?WDsLtGQm95M!&h&pC{svADsD(D1RG>d_M=!u(8c7p3gGe4}{9*=5tx4tm#Ifl4zj}Eex2`;DHqz8pTLF}?N0O`X}BoG9t4RfVp?u&dJ){r$N1z4HehcJ4r?C4TAz;Cr*}ah1!QdnU%7+YtfDi}>5=1sYAV35d z3JO9Yw(9Gl^bPb3^nUK;4{m-7Wkq4Ivo(A{7PE7CuCqClxBq?gha!M7*P((4bOw30 z{)|+96yVR6_OoNn+RW84nn0ZGZN|je@*tBi;J=OjTGmg??`D+WkMrLlnD@WH{GVfl z`jM&J%4^=$+^m0g!l3yuLkV=UsV_T2{!Qi2d;Pl^r+W-|_F51?`9C-a1|j6XJBEK( zRsYQ~aCE5uzhn57#Y8^>)t5{%2LDLl9|QmH0$i{j|BpitWa}IM_;3#3_0K5f--G>>o{RG9{*PIQf;*W;zzYGyS zg3TE&P<%I>KdJ?{Wpgz+Kgz!8W8ZIrf8KEZR-Qk**#Gj!uO0m_y>j^C1>pd~UF6~7 z&WA(G!^HuFyU4@EoezhWhl>LUcaevSJ0A`$4;Kdz?jjEtcRn0i9xe_b+(jNP?tD13 zJX{<=xQjeo-1%^5dAK-$a2I*FxbxxA@^Eng;V$xUap%LK<>BH0!d>Ly;?9Rd%frP1 zguBSY#hnj_mWPW22zQZ(i#s0fCzN} zASNCF_%g%(ehmNwLjZs`-T(mlFaRJ!OZTc{KSjD!$=bryC9JC{D}2BFtnaLSUCw5xg0GKD=@1oQd53z z69@H{uc@tnqQ6v4mQiOl2$4)*w~5ly*;zUHKGUQi)aYv0!4S8!>o*F|9(ny5HGG}6 zb7x2SW*zskqk{hYWBl*d9qB~!oyup0ZaVZCN2$22p6S{23MBJPeQ>5X(t6DYj_HN=xgYO#!(x;Of{m-D`f!6K_hGN+>5BepmxIb3nXk=mZO$ zzdo6e!jilNDb`7I(U$hu`7QXoL8KUaX6`_<0dCErr0G~bR~@hW{uit5bTjikikiaW z!UHdS?Qt6(XqkEI3B!gLRXiW3O+HyX0G{lN7ym?%oz`2o?18a=jdM*JTyPB`3xB9C z!@+0|B};!Vynkb9Y3a!Ot5>ba3@fc=PE^gzd#mgZ?t))w0n7+S(JgCU(6OS@!rfm^ zA3JvNG2-Rs*MoQq8Vww)l*gLf5^*=M#vyiRjvgfOrgBbBPSjAg_yL>zVjchbbAyBU zJ7XJeG@BS*%W;A2D)48lF6f4-dV92}u1LEya_!R{@@3XqX;zjyI*@j(;bx-9NMKqk z!qG;-#uqj$EhwV3OuGrEEd7X?xPPTJ0%ImG&7bPrcSwX3%g~r;K6+qnv%mkz^72f$ z+j&zye$!ISI#~gDNIu-H=!BE*r><4BX>*3kx0=edOh;GaMI#b!nrQhPz+i#p${ZiL z4Kn-F3R+*c zrt5T+=&-C;+*Kn-*&JWBrT8y;m8)<<48BPj7=^(0k3Mu5I9lre`rS}=yTFz$Iaf+c zpFLfAyg$ADdEq!C`*km?L-UdDt(W2{{_&An+B?nhgJu*j-L$S;I&O#1qwK3OGUVMy z?MggpuP`SQAC~IyL1eqa67K8+s6dOV=j1^g)&GDm?CJ5e!+F!LBFFP7L*_PO~ zT)yi^j_cdq0H$>h+V>eJToYL~gE-uhF!7eLucT$@WkUpfUwo`4Xbi$vybpH3%%!anTvXF4vL- z&+`V_1q}&9**C?kZhTa{l+#n;FJn5xntCMvK`BpB;2o7D3^aHp_HlRQ?((f76J~Vv z5zUj)QZ=F?tM3bt92{s*IxGExo|c_cvRBJECUaqfMMF^kh-emCj7WWrA)8-C$C7k?&4GTn_s`|zpC2;>9<)gu$=eOF z)LQT0AfA(xHj(j^+W%$Pq~ZRj0b=x+lU03RyeaV3=K26nEzPH@v2R@3dlq*CF`i!g zEwz|(qJf8AS9bEfs?Vm%l4Duv1yRdy)e+l9I@2YRMy346@844& z_JDy0#5?4dinH3zR*Zx-BD&&>dtX?qrx>hGAg(xc7^b;*ARR%tB^S-|?|?U}NFHBT zd$U@qdg#Ozw2D*8(hhM?xx%hvp8Fk?@L7Q;aF^;B|udmsuJBLC*%wbA>>P2@G*VR9WpW{C=ZEaKK{9i0zbOgJ&WQU?x(1O# z`Kh1rkH@Hb#7Pk?c*wz*5vRYHhT(wEut2-5IksWPttx=%9yj! zKHi%Y)Fv3U49^#k-Ac5_X>>2aEdLBWu{tYXyUez!)vxikkTY6Fjm|tHD}QXwjj3g^ zbg7A6eCiS%H)y*$Y=8UR{O70a;tTsF6B=b@i0ob*6KSMAC;HD>U2t03i{Co_*dWC8!KvK}JVex&FR6rIea!|jxRH6+^wQX6F zU(jYr-P88Xs?kfqT7Int|EuJhtfb+o*d2W(%g+g?W-TiL8STU7>r5z~dNeUMnm$-~ zv@m*k1!Hvc?nw`7O?$3X=8*f_3bRCw=54Bguh*X8SA^}F41DA0T`l$C+yl>Dy_pWV zWa&!M(boN#Pm>or$86IKLk|b&pIIGe^*+^{dD$QIp-+_0u?D1B9h0JcN=jDGV=}k? zx}jZB*i)aWdsoj0@Li}>d$!AYn(|<3W{;t<(nJI?^g1Q3mS#C@tFb5_lzE#TtvJ=W zwD()_u`fr|d|lQ2$7*V+wHLFbXAHd@n>M@%x!ofWwO05o%E7cuVK4q8l9{w?El@y2 zP#`;EvHz0A3P@A+0!^Rb-r@JYeT$Pf>$=x{jmqjhuAO47QK>9kGrrGo$97`Xw7bQ) zrR{p^=-Y~ZRFaKRCkv*<0x9kcM=6boJ?v$f0fDLq(L-h#s6${l5K;8-$9zoAbQ;WBT6mnYJaH$#1i~{z2hv`&5!Y zDFaIFElJJ)lEB}fdNuxRre=kwZ2y^I+1+vt6u_b{ctv-815BYVvjwXOJ~hLa}Y z$+78maZy>gvk`(RDPDTs`UQ~aClMAw&!Bg!*Q^h98Zi}IdioKruJ36PP5=sQn$+)E z{5n=nxI|H>(B{ygk!8|ZqZtBgz1b6m<=fmR1bt+9I%XL=m@&uOPJ05fWJcqBd8BcKt7NMpt(sYn!pVm(=Gl(S|o* z+~8`p9&{^6?{<8|rDuM9lwhAtXctlBC8wPy+HJK?A~Q$F6y?6Y&Ys%qK5(oQC%Unq zyGnr~TAf^gZfwnWKHoX9L)M{g&#;AL&6VcN&oVLj(4jR$;wCwcnwzJBvGyA(-}u{g zTs@7p$v9E&^a*$qB1SrVvVdjwki@SH+_-(EdE}~Cx!f)i%k(YCHP9@-svy7e>r%T+ z`e)qZ`cLuV2@=j1s?+w=+&&Fck?XjzgOum;B=pLyXua>}PYt!9sz$XW!WLq#YK{Y?jq_{d_Vp^~QXNY>H9cJl zGhf63*6`P&nZT>Y@32~3pR@|gP#s1>Pd`)cs`=4u2$j=T-q#1zZWRfvXgpKZ6Qt62 z()HLnEy?XUMP>52N-DRz7q17JcG6$_-EBQ&+c$YqZtB2+O=QWmMaK@-ymW4L72hr8 zCjFH7Io&m@ZF^&Tca)_YFz6cqYval+>)UrB;+vm?Mv1NZ2d%#IR{hbwaT)a(navDL zSBbT*`_+W3{%2omj}rGfL0rlzgEnfcl_`gL7`ON>-F{)MP}Y{{{cmj1O)&9 literal 0 HcmV?d00001 diff --git a/public/modules/images/logo.png b/public/modules/images/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..c5da11109b628a7dbd0b2c70fa6e746be864e286 GIT binary patch literal 2965 zcmV;G3u^R0W`1r>EyjRjnztVC2~H=Lpe7NmLWa!Ri< z^kL>c-?{HI&$$8Ryni;~B`?2u@Atm%+uLsxTCLWoW&D1Iaf=9A6xK3Y6xK3Y6!tqE z3U6<3ca=)zXKigAee>qcq#;9wX!H*yB_%0Gj~=~PqtUd9kB<+<8MXAz*vH3b2<}*@ zR;vfno{5P`ilwDxbWBW4tb8BND*XKXdK4EI`?qV??o4!abQa!g^>7(aoH%iORaMo< zgoK2xgiGMZ>uv^kCA1K7hwKWS64TTCUDL!EiJt;bm-6&XJ=wiy+kmqsvRq-j-s$P-uim|T7l!jb0uJllP-4c|v150W{mb}h zp$G^F*c%oWc5?FM$vbh;df`Dt%IcD`hJ0d zfnU#?H!l@?wfxTf;K73)=gytml$e-!7i%}n8WLKE4jpXh06$5HYJG*-+S*#@=jR)- z!pcZttuU;ttg>(2y0sbWYMF-v2M&CB{`~pP$;ruwu%4@TM^m`o;{5isw8OglR z8lgI8+qP{7JUl%9N%v%DXWMVyyxBiBHPs#HZSai1{wU)0W3ZT(n>KCod-?KZw<}k! zL`XDP6w<6Mi;q(m>L}PLB0u?I(6#yzJ2?qW50yrINsUh<>jsK(xuBCDC=kJlSQfI975|^ zvu0^8U%ng%;$~qTEP3GnG|=SJ{geyxhR*KYySGncR{lAIan-}SCUol5 zDX}>?WL{|9wQJYM5I89!gJ@^oUSXyU7%J}pva+w(n>1-sGDR*azmhE9k%K^C1vuLd_k6+m z?}I*!7|n$no+bL0zdu<_sZ`P`VaYn7z)}cFLlXjN;4?7m$>HqDhr#d3pIB+C+1qE?gMj%y6h2G-yzPSm1sVO1**dUyTaTOf2l} z?J4B75^^vAYikG@3J==1Ldjkz_E1om8YqTHX?0Y9=wh~|Wub5`W62}59L91{zCNQp zB=b0O4pE_qRI+~k`c&lf%BN4Cj`@fZjOh%WU9eyQS)c|)zxxzP5{&+ygM&jltbIDB zH>NMj=}7V{cX#(Ey?ggg=19<-JgFhN5Cy7efgClW5q^v_GBU=9MV~%>(#RM|4voNS zn8w8@$_@xP6uP8z1^9R+_F!mU25>4uLqog3X}WSB`I?pZ;Xy9vD{3)>_hVM+SsZy( zrIV9WBHY~<3E4sFvp&cV^p4J;V2L6avKlb(oRvMck={s&%4`I@{F%P@q9G;vhwaM;!~Ltz9{h2kkm7h-B^>?cf^5DwZ+^{U9FC@v-oqd{1H%%QKc z5m;(P$bb?6m#v4h7FA)aSfEbWh`MHzAAfQmH@;E(;IRg1#sOa0xJ=P;uAXxpR+*_J+bQ!tgPDSO_>66?fp6F=KXIym)b|zQTa_ zIZFR)I*UPsfbrfRHEPuNfC<42i;0OzN1@S+-lIzW2O=FQxaxDhC8|*UrQ@O?Aaq6? z&VY3VwQt{k5>5IIAtgbdcFUG63r3E~l&rrZI5;>I3AK)VPWsiNqd%A1at{tK!Fw+0*AuJhrCI=PGGZ8lp6>L<+ zfPuRpJRl?_#4jr=Yax1+otz{y2M->60}8#3+(O~2KuWBte*OBr1i@?2RDXqX+#hf| zI4LKi96qsU&z>t>R#!_jWs2Vt9c1NsgaT0B~6Xp!#KvfgNX&J7Z zEvi^5c3Lw{Mod$=9vya=&V08}w3Eb#p;69ZHJ6oU!8AGY)0*$AW*OvgFRIeZtwIj= z4BLTuQm}H$*kJQn@U_gVDSzyBWI5Q0PghJ^KJ!w{a?v)XFeMYOWMb=@Dz({5EqR(r z3aeyzwf-09M&Pu}jDVAcV#+ib@wFE?st-lB<*zG}u*%f_UT?y-`1QFCan zk_GpPa!@lpRT3V3qi@Cd%=r$D1fwqpg9>XIEq`FPjQ`j8w*UhGOxAUMMClcs00000 LNkvXXu0mjfl+URR literal 0 HcmV?d00001 diff --git a/public/routes/logAggregator.routes.js b/public/routes/logAggregator.routes.js new file mode 100755 index 0000000..e15a27c --- /dev/null +++ b/public/routes/logAggregator.routes.js @@ -0,0 +1,153 @@ +/*Copyright 2016 Wipro Limited, NIIT Limited + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +This code is written by Prateek Reddy Yammanuru, Shiva Manognya Kandikuppa, Uday Kumar Mydam, Nirup TNL, Sandeep Reddy G, Deepak Kumar + and updated by Ashish Gupta, Tarun Mohandas, Suriya Prakash, Srinivasa Burli, Jishnu Surendran and Bhairavi Balakrishnan*/ + +angular.module('logAggregator').config(function($stateProvider, $urlRouterProvider){ + $urlRouterProvider.otherwise('/login'); + $stateProvider + .state('login',{ + url: '/login', + templateUrl : 'views/auth/auth.view.html', + controller : 'authController' + }) + .state('serviceConfig',{ + url: '/serviceConfig', + templateUrl : 'views/auth/serviceConfig.view.html', + controller : 'serviceConfigController' + }) + .state('serviceConfig.gittab',{ + url: '/gittab', + templateUrl : 'views/auth/gitServiceConfig.html' + }) + .state('serviceConfig.gittabedit',{ + url: '/gittabedit', + templateUrl : 'views/auth/gitServiceConfigEdit.html' + }) + .state('serviceConfig.gittabdbedit',{ + url: '/gittabdbedit', + templateUrl : 'views/auth/gitServiceConfigDbEdit.html' + }) + .state('serviceConfig.gittabAuthOedit',{ + url: '/gittabAuthOedit', + templateUrl : 'views/auth/gitServiceConfigAuthOEdit.html' + }) + .state('serviceConfig.nginxtab',{ + url: '/nginxtab', + templateUrl : 'views/auth/nginxServiceConfig.html' + }) + .state('serviceConfig.nginxtabedit',{ + url: '/nginxtabedit', + templateUrl : 'views/auth/nginxServiceConfigEdit.html' + }) + .state('serviceConfig.appgittab',{ + url: '/appgittab', + templateUrl : 'views/auth/appgitServiceConfig.html' + }) + .state('serviceConfig.appgittabedit',{ + url: '/appgittabedit', + templateUrl : 'views/auth/appgitServiceConfigEdit.html' + }) + .state('changePassword',{ + url: '/changePassword', + templateUrl : 'views/auth/changePassword.view.html', + controller : 'changePasswordController' + }) + .state('aboutus',{ + url: '/aboutus', + templateUrl : 'views/auth/aboutus.view.html', + controller: 'aboutusController' + }) + .state('errorhandler',{ + url: '/errorhandler', + templateUrl : 'views/auth/error.view.html', + controller : 'errorHandlerController' + }) + .state('NginxLogStatistics',{ + url: '/NginxLogStatistics', + templateUrl: 'views/nginx/NginxLogStatisticsTabs/NginxLogStatisticsTabs.html', + controller : 'NginxLogStatisticsController' + }) + .state('GitLogStatistics',{ + url: '/GitLogStatistics', + templateUrl: 'views/gitLog/mainPage/mainPage.view.html', + controller : 'myController' + }) + .state('dashboardWizard',{ + url: '/dashboardWizard', + templateUrl: 'views/gitLog/dashboardWizard/dashboardWizard.html', + controller : 'wizardController' + }) + .state('profile',{ + url: '/profile', + templateUrl: 'views/gitLog/profile/profile.view.html', + controller : 'profileMain' + }) + .state('profileEdit',{ + url: '/profileEdit', + templateUrl: 'views/gitLog/profileEdit/profileEdit.view.html', + controller : 'profileEdit' + }) + .state('NginxLogStatistics.useragent',{ + url: '/useragent', + templateUrl : 'views/nginx/userAgent/userAgent.view.html', + controller : 'userAgentController' + }) + .state('NginxLogStatistics.loglisting',{ + url: '/loglisting', + templateUrl : 'views/nginx/logListing/logListing.view.html', + controller : 'logController' + }) + .state('NginxLogStatistics.trafficrate',{ + url: '/trafficrate', + templateUrl : 'views/nginx/trafficRate/trafficRate.view.html', + controller : 'trafficRateController' + }) + .state('AptLogStatistics',{ + url: '/AptLogStatistics', + templateUrl: 'views/aptCache/AptLogStatisticsTabs/AptLogStatisticsTabs.html', + controller : 'AptLogStatisticsController' + }) + .state('AptLogStatistics.requestrate',{ + url: '/requestrate', + templateUrl : 'views/aptCache/logRate/allLogs.html', + controller: 'logRateController' + }) + .state('AptLogStatistics.packageanalytics',{ + url: '/packageanalytics', + templateUrl : 'views/aptCache/packageAnalytics/packageAnalytics.html', + controller: 'packageAnalyticsController' + }) + .state('AptLogStatistics.datarate',{ + url: '/datarate', + templateUrl : 'views/aptCache/dataRate/allData.html', + controller: 'dataRateController' + }) + .state('AptLogStatistics.packagerepository',{ + url: '/packagerepository', + templateUrl : 'views/aptCache/packageRepository/packageRepository.html', + controller: 'repositoryController' + }) + .state('AptLogStatistics.packagecount',{ + url: '/packagecount', + templateUrl : 'views/aptCache/packageCount/packageCount.html', + controller: 'packageCountController' + }) + .state('liveQueryWizard',{ + url: '/liveQueryWizard', + templateUrl: 'views/realTimeLogs/queryBuilder/liveQueryWizard.html', + controller : 'liveQueryController' + }); +}); diff --git a/public/services/realTimeLogs/queryBuilder/queryBuilderService b/public/services/realTimeLogs/queryBuilder/queryBuilderService new file mode 100644 index 0000000..e69de29 diff --git a/public/stylesheets/queryBuilder/queryBuilder.css b/public/stylesheets/queryBuilder/queryBuilder.css new file mode 100644 index 0000000..366b629 --- /dev/null +++ b/public/stylesheets/queryBuilder/queryBuilder.css @@ -0,0 +1,25 @@ +.group{ + background-color: #fff; + padding: 15px; + border-radius: 5px; + border: solid 1px #666; +} + +.group-conditions{ + margin-left: 20px; +} +.widcheck{ +} + +.alert-group{ + margin-top: 10px; + margin-bottom: 10px; + border-color: rgb(192, 152, 83); + border-color: rgb(251, 238, 213); + border-color: rgb(220, 200, 150); +} + +.condition, .group{ + margin-top: 15px; + margin-bottom: 15px; +} diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css index 5a3dc1d..d70632b 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -6,7 +6,503 @@ #tabLog { border-collapse: collapse; width: 100%; +<<<<<<< Updated upstream margin-top: 10px; +======= + line-height: 1; + color: rgba(0, 0, 0, 0.8); + content: "\25BC"; + position: absolute; + text-align: center; + } + + /* Style northward tooltips differently */ + .d3-tip.n:after { + margin: -1px 0 0 0; + top: 100%; + left: 0; + } + + a:link{ + text-decoration: none; + } + a:visited{ + text-decoration: none; + } + + + /*.axis path, + .axis line { + fill: none; + stroke: #000; + shape-rendering: crispEdges; + }*/ + + .bar { + fill: #00e600; + } + + .simply{ + margin-top: 40px; + } + + .bar:hover { + fill: #ff0000; + } + +.wrapper{ + margin-top:60px; + margin-left:20px; +} +.dashboardWizardRow{ + margin-top:120px; +} +.liveQueryWizardRow{ + margin-top:120px; +} + .buttom_css{ + height:50px; + width:200px; + } + +html, +body { + min-height: 100%; + background-color: #fff; +} +body::-webkit-scrollbar { + width: 12px; +} +body::-webkit-scrollbar-track { + background-color: #eaeaea; + border-left: 1px solid #ccc; +} +body::-webkit-scrollbar-thumb { + background-color: #ccc; +} +body::-webkit-scrollbar-thumb:hover { + background-color: #aaa; +} +body { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + scrollbar-face-color: #000000; + font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-weight: 400; + overflow-x: hidden; + overflow-y: auto; +} +/* H1 - H6 font */ +h1, +h2, +h3, +h4, +h5, +h6, +.h1, +.h2, +.h3, +.h4, +.h5, +.h6 { + font-family: 'Source Sans Pro', sans-serif; +} + +/*navbar*/ +.navbar-default{ + background-color: #3c8dbc; + color: #ffffff; + border: 0px; +} +.navbar-default .navbar-nav >li>a:hover, .navbar-default .navbar-nav >li>a:active, .navbar-default .navbar-nav >li>a:focus{ + background-color: #337ab7; +} +.navbar-default .navbar-nav >.open>li>a:hover, .navbar-default .navbar-nav >.open>li>a:active, .navbar-default .navbar-nav >.open>li>a:focus{ + background-color: #337ab7; +} +.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover{ + background-color: #337ab7; +} +.navbar-brand,.navbar +{ + padding-left:15px; +} +.navbar-right{ + margin-right: 0px; +} +.navbar-nav li a{ + color: #ffffff !important; +} + +.navbar-nav li.active a{ + background-color: #38474e !important; + color:#fff !important; + } + +.btn-default{ + margin: 10px; + background: #ccc; + border: 0px; + color: #ffffff; +} +.dropdown-menu li a{ + color: #333 !important; +} + +/* Navbar styling end */ +/* About us page */ +div.card { + margin: auto; + width: 80%; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + text-align: center; + margin-top: 150px; +} + +div.header { + background-color: #4CAF50; + color: white; + padding: 5px; + font-size: 25px; +} + +div.aboutusContainer { + padding: 30px; + font-size: 18px; +} +/* About us page styling end */ + +#main-tab{ + margin-top: 100px; +} +#main-tab .tab-content{ + width: 100% !important; + height: 900px; + height: auto; + overflow: hidden; + border:1px solid #e3e3e3; + border-top: none; +} +#main-tab .nav-tabs li { + text-align: center; + width:20%; +} +#main-tab .nav-tabs li a{ + font-size: 16px; + padding-bottom: 15px; + color:#337ab7; +} +.change-pass{ + font-size: 16px; + padding-top: 17px !important; +} +.tab-content { + background-color: #F8F8F8; +} +.tab-pane { + height: 100%; + background-color: #f5f5f5; +} +.tab-pane .criteriaPane { + border-radius: 0px; + border: 0px; + border-bottom: 2px solid lightgrey; + border-left: 1px solid lightgrey; + height: 50px; + font-size: 0.83em; +} +.tab-pane .criteriaGroup { + width: 20%; + height: 100%; +} +.wrap { + width: 80%; + float: right; + height: 100%; + border-left: 1px solid lightgrey; + text-align: center; + background-color: #f5f5f5; +} +.wrap .page-header { + margin: 0px; +} +.wrap .well { + margin: 20px; +} + +.well::-webkit-scrollbar { + width: 12px; + background-color: #F5F5F5; +} + +.well::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3) !important; + border-radius: 8px; +} + +.well::-webkit-scrollbar-thumb { + background-color: darkgrey; + border-radius: 8px; + outline: 1px solid slategrey; +} +.wrap svg{ + display: block; + margin: auto; + margin: 15px auto; +} +.nav li.active a{ + color:#fff !important; + background-color:#555 !important; + padding-bottom: 18px; +} +.filters .dropdown { + display: inline; +} +.AgentProgressIcon{ + margin-top: 13px; +} + +/*tooltip styling*/ +.d3-tip { + line-height: 1; + font-weight: bold; + padding: 12px; + background: rgba(0, 0, 0, 0.8); + color: #fff; + border-radius: 2px; +} +/* Creates a small triangle extender for the tooltip */ +.d3-tip:after { + box-sizing: border-box; + display: inline; + font-size: 10px; + width: 100%; + line-height: 1; + color: rgba(0, 0, 0, 0.8); + content: "\25BC"; + position: absolute; + text-align: center; +} +/* Style northward tooltips differently */ +.d3-tip.n:after { + margin: -1px 0 0 0; + top: 100%; + left: 0; +} +.noBorder { + border-left: 0px !important; +} + +/*--------------------------------------- listing page stylesheet------------------------------------------------*/ +.logButtonStyle{ + border-radius: 0px; + border: 0px; + height: 50px; + width: 100%; + margin-left: 0; + text-align: left; + white-space: normal; + margin-top: -0.5px; + color: grey !important; + background-color: #ffffff !important; + margin: 0px; +} +.buttonClicked{ + color: blue; +} +.logcontainer{ + margin-top: 0px; + font-size: 0.80em; + font-family: sans-serif; + padding: 0; + line-height: 40px; + float: left; + width:28%; + text-align: justify; + overflow-y:scroll; + height:500px; +} +/* scroll bar css */ +.logcontainer::-webkit-scrollbar { + width: 1.2em; + background-color: #F5F5F5; +} + +.logcontainer::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3) !important; + border-radius: 8px; +} + +.logcontainer::-webkit-scrollbar-thumb { + background-color: darkgrey; + border-radius: 8px; + outline: 1px solid slategrey; +} +/* scroll bar css ends*/ + +.logcontainer table{ + border-collapse:inherit; +} + +.PathDataTable{ + margin-top: 0px; + width: 72%; + float: left; + height: 500px; + overflow: scroll; + margin-right: 0px; + text-align: center; + border-top: 1px solid lightgrey; +} + +/* scroll bar css */ +.PathDataTable::-webkit-scrollbar { + width: 1.2em; + background-color: #F5F5F5; +} + +.PathDataTable::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3) !important; + border-radius: 8px; +} + +.PathDataTable::-webkit-scrollbar-thumb { + background-color: darkgrey; + outline: 1px solid slategrey; + border-radius: 8px; +} + +/* scroll bar css ends*/ + +table{ + width: 1000; + border:0px; + width:100%; +} + +.OnMouseEnter { + background-color: lightgrey !important; +} +OnMouseOut{ + background-color: white !important; +} +.clickedbutton{ + border-left-color:blue; + border-left-width: 4px; + border-left-style: solid; +} +.active1 { + color:lightblue; +} +.PathDataTable td{ + font-size: 12px; + width: auto; +} + +.PathDataTable td:nth-child(7){ + min-width: 80px; +} +.PathDataTable td:nth-child(5){ + max-width: 255px; +} +.PathDataTable th{ + text-transform: capitalize; + height: 50px; +} +td, tr, th{ + border: 1px solid #e3e3e3; + text-align: center; +} +.PathDataTable td,th{ + padding: 2px; +} +.pageno{ + color:black; +} +.currentpage{ + color:white; + background-color: #4CAF50; +} +.pos { + display: table-row !important; + opacity: 1 !important; +} + +.page-header { + margin: 0px; + text-align: center; + background-color: #f5f5f5; +} + +.logListingDataHeadings{ + font-weight: bold !important; +} + +/*----------------------------------------------logListing Stylesheet end------------------------------------------------------------*/ + +/* Traffic Page *******************************************************************************************/ +.LogProgressIcon { + margin: auto; + display: block; + margin-top: 220px; +} + +.changeColour{ + color: white; +} +#dropdownMenu2{ + width: 120px; +} +.dropdown.months{ + width: 50px; + margin: auto; + margin-top: 20px; +} +#requestRate { + min-height: 400px; +} + +.tab-pane h2 { + display: inline-block; + padding-left: 3px; +} + +.tab-pane small{ + display: inline-block; + font-size: 22px; + color: #333; +} + +.dropdown.month_text{ + padding-right: 0px; +} +#clear_filters{ + padding: 10px 10px 10px 0px; + color: #333; +} +.btn{ + font-size: 14px !important; + font-weight: normal !important; +} +#browserShare ,#osShare{ + margin-left: 0px; + color: grey ! important; + background-color: white !important; +} + +#browserShare:hover, #osShare:hover { + color: black ! important; + background-color: lightgrey !important; +} + + +#clear_filters:hover{ + color:#660066; + text-decoration: none; +} +.disableClick{ + pointer-events:none; +>>>>>>> Stashed changes } th { diff --git a/public/views/gitLog/dashboardWizard/dashboardWizard.html b/public/views/gitLog/dashboardWizard/dashboardWizard.html new file mode 100644 index 0000000..28c1284 --- /dev/null +++ b/public/views/gitLog/dashboardWizard/dashboardWizard.html @@ -0,0 +1,173 @@ + +
+ + + + +
+ +
+ +
+
+
+
+ × + Success! Dashboard created. +
+
+
Widget Name
+ + + +
+
+
+
Primary Groupby Field
+
    +
  • + + {{dimObj.displayName}} + + + + + + +
  • +
+
+
+
+
+
Aggregators
+
    +
  • + + {{aggregator.displayName}} + + + + +
  • +
+
+
+
Parameter
+ + + +
+
+
+
+
Secondary Groupby Field
+
    +
  • + + {{dimObj.displayName}} + + + + + + +
  • +
+
+
+
+
+
Filters
+
    +
  • + + {{dimObj.displayName}} + + + + + + +
  • +
+
+
+
+
+
Measures
+
    +
  • + + {{dimension.displayName}} + + + + +
  • +
+
+
+ +
+
+
+ +
+ +
+ +
+ diff --git a/public/views/gitLog/mainPage/mainPage.view.html b/public/views/gitLog/mainPage/mainPage.view.html new file mode 100644 index 0000000..0b84a9d --- /dev/null +++ b/public/views/gitLog/mainPage/mainPage.view.html @@ -0,0 +1,228 @@ + + +
+ + + + + + +
+
+ +
+
+
+
+ +
+
+

{{graph_type_details}}

+
+
+
+ {{description_data}}
+ {{groupedby}}
+ {{filteredby}} +
+
+
+
+
+ +
+
+ + + +
+
+
+ +
+
+
+ +
+
+
+ +
+ + +
+ + +
+
+
+
+
+
+ +
+
+ + +
+ diff --git a/public/views/realTimeLogs/queryBuilder/liveQueryWizard.html b/public/views/realTimeLogs/queryBuilder/liveQueryWizard.html new file mode 100644 index 0000000..fd9d909 --- /dev/null +++ b/public/views/realTimeLogs/queryBuilder/liveQueryWizard.html @@ -0,0 +1,129 @@ + + + +
+ + + + +
+
+ +
+
+ +
+

Angular.js Query Builder

+ +
+ Example Output
+ +
+
+ +
+ +
+
+ + + + + +
+
+ + + +
+ + + +
+
+ +
+ +
+ +
+ diff --git a/routes/realTimeLogs/queryBuilder/expressions.js b/routes/realTimeLogs/queryBuilder/expressions.js new file mode 100644 index 0000000..f5e403b --- /dev/null +++ b/routes/realTimeLogs/queryBuilder/expressions.js @@ -0,0 +1,37 @@ +var express = require('express'); +var router = express.Router(); +var Expression=require('mongoose').model('Expression'); + + router.post('/save', function(req, res, next) { + req.body.expressions=JSON.parse(req.body.expressions); + req.body.nestedexpressions=JSON.parse(req.body.nestedexpressions); + + var temp=new Expression(req.body) + Expression.addExp(temp,function(err,doc) { + if (err) { + console.error(err); + } + else{ + res.send(doc); + } + }) +}); + + +router.get('/modify', function(req, res, next) { +var search='select * from somethin'; +if(true) +{ +Expression.searchQuery(search,function(err,doc) { + if (!err) { + res.send(doc); + } +}) +} + + + + +}); + +module.exports = router; diff --git a/test/demo.js b/test/demo.js new file mode 100644 index 0000000..e69de29 diff --git a/ttemp.txt b/ttemp.txt new file mode 100644 index 0000000..e69de29 diff --git a/views/footer_includes.ejs b/views/footer_includes.ejs new file mode 100755 index 0000000..0aa8a64 --- /dev/null +++ b/views/footer_includes.ejs @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +